head lag instead of head block
This commit is contained in:
parent
e6ca8a5253
commit
a54e33f598
@ -50,6 +50,7 @@ impl PopularityContestSubCommand {
|
||||
let mut by_tier = BTreeMap::<u64, Vec<_>>::new();
|
||||
let mut tier_requests = BTreeMap::<u64, u64>::new();
|
||||
let mut total_requests = 0;
|
||||
let mut highest_block = 0;
|
||||
|
||||
for conn in conns {
|
||||
let conn = conn.as_object().unwrap();
|
||||
@ -80,6 +81,8 @@ impl PopularityContestSubCommand {
|
||||
.map(|x| x.as_u64())
|
||||
.unwrap_or_default();
|
||||
|
||||
highest_block = highest_block.max(head_block);
|
||||
|
||||
let head_latency = conn.get("head_latency").unwrap().as_f64().unwrap();
|
||||
|
||||
let request_latency = conn
|
||||
@ -117,7 +120,7 @@ impl PopularityContestSubCommand {
|
||||
"rpc_requests",
|
||||
"tier_request_pct",
|
||||
"total_pct",
|
||||
"head_block",
|
||||
"head_lag",
|
||||
"head_latency",
|
||||
"request_latency",
|
||||
]);
|
||||
@ -148,7 +151,7 @@ impl PopularityContestSubCommand {
|
||||
rpc.requests,
|
||||
tier_request_pct,
|
||||
total_request_pct,
|
||||
rpc.head_block,
|
||||
highest_block - rpc.head_block,
|
||||
format!("{:.3}", rpc.head_latency),
|
||||
format!("{:.3}", rpc.request_latency),
|
||||
]);
|
||||
|
Loading…
Reference in New Issue
Block a user