-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Supports generic metrics for rpc (#298)
- Loading branch information
Showing
4 changed files
with
57 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
use std::{collections::HashMap, sync::Arc, time::Instant}; | ||
|
||
use jsonrpsee::core::middleware::Middleware; | ||
use metrics::{register_meter_with_group, Histogram, Meter, Sample}; | ||
use parking_lot::RwLock; | ||
|
||
struct RpcMetric { | ||
qps: Arc<dyn Meter>, | ||
latency: Arc<dyn Histogram>, | ||
} | ||
|
||
impl RpcMetric { | ||
fn new(method_name: &String) -> Self { | ||
let group = format!("rpc_{}", method_name); | ||
|
||
Self { | ||
qps: register_meter_with_group(group.as_str(), "qps"), | ||
latency: Sample::ExpDecay(0.015).register_with_group(group.as_str(), "latency", 1024), | ||
} | ||
} | ||
} | ||
|
||
#[derive(Clone, Default)] | ||
pub struct Metrics { | ||
metrics_by_method: Arc<RwLock<HashMap<String, RpcMetric>>>, | ||
} | ||
|
||
impl Middleware for Metrics { | ||
type Instant = Instant; | ||
|
||
fn on_request(&self) -> Self::Instant { | ||
Instant::now() | ||
} | ||
|
||
fn on_call(&self, name: &str) { | ||
let mut metrics_by_method = self.metrics_by_method.write(); | ||
let entry = metrics_by_method | ||
.entry(name.to_string()) | ||
.or_insert_with_key(RpcMetric::new); | ||
entry.qps.mark(1); | ||
} | ||
|
||
fn on_result(&self, name: &str, _success: bool, started_at: Self::Instant) { | ||
let mut metrics_by_method = self.metrics_by_method.write(); | ||
let entry = metrics_by_method | ||
.entry(name.to_string()) | ||
.or_insert_with_key(RpcMetric::new); | ||
entry.latency.update_since(started_at); | ||
} | ||
} |