Use f32s
for metrics so that we can do aggregation math on honeycomb
This commit is contained in:
parent
6734793069
commit
14b078dc0c
1 changed files with 3 additions and 3 deletions
|
@ -1097,9 +1097,9 @@ impl<'a> Drop for StoreWriteGuard<'a> {
|
||||||
|
|
||||||
let metrics = self.metrics();
|
let metrics = self.metrics();
|
||||||
tracing::info!(
|
tracing::info!(
|
||||||
connections = metrics.connections,
|
connections = metrics.connections as f32,
|
||||||
registered_projects = metrics.registered_projects,
|
registered_projects = metrics.registered_projects as f32,
|
||||||
shared_projects = metrics.shared_projects,
|
shared_projects = metrics.shared_projects as f32,
|
||||||
collaborators_per_project = metrics.collaborators_per_project,
|
collaborators_per_project = metrics.collaborators_per_project,
|
||||||
"metrics"
|
"metrics"
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue