Skip to content

Commit

Permalink
update name
Browse files Browse the repository at this point in the history
  • Loading branch information
vovkman committed Aug 29, 2024
1 parent 2a77d4d commit 94252ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rpc/src/rpc_pubsub_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ async fn handle_connection(
sender.send_text(&*json).await?;
}
let send_time = time.elapsed().as_micros();
datapoint_info!("rpc-pubsub-broadcast-receive-send-us", ("time", send_time, i64));
datapoint_info!("rpc-pubsub-broadcast-receive-send-us", ("send_time", send_time, i64));
},
_ = &mut tripwire => {
warn!("disconnecting websocket client: shutting down");
Expand Down
2 changes: 1 addition & 1 deletion rpc/src/rpc_subscriptions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ impl RpcNotifier {
let send_time = time.elapsed().as_micros();
datapoint_info!(
"rpc-pubsub-broadcast-send-time-us",
("time", send_time, i64)
("send_time", send_time, i64)
);

inc_new_counter_info!("rpc-pubsub-messages", 1);
Expand Down

0 comments on commit 94252ee

Please sign in to comment.