Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix units for tx manager poll metrics #6817

Merged
merged 1 commit into from Feb 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/net/network/src/transactions/mod.rs
Expand Up @@ -365,7 +365,7 @@ where
} = poll_durations;

// update metrics for whole poll function
metrics.duration_poll_tx_manager.set(start.elapsed());
metrics.duration_poll_tx_manager.set(start.elapsed().as_secs_f64());
// update poll metrics for nested streams
metrics.acc_duration_poll_network_events.set(acc_network_events.as_secs_f64());
metrics.acc_duration_poll_pending_pool_imports.set(acc_pending_imports.as_secs_f64());
Expand Down