fix(dbQueryTimeHistogram): change name to milliseconds ms instead of seconds

This commit is contained in:
P. Reis 2024-06-27 13:32:23 -03:00
parent eba0605e32
commit 7f7efd12b8

View file

@ -69,6 +69,6 @@ export const dbAvailableConnectionsGauge = new Gauge({
}); });
export const dbQueryTimeHistogram = new Histogram({ export const dbQueryTimeHistogram = new Histogram({
name: 'db_query_duration_seconds', name: 'db_query_duration_ms',
help: 'Duration of database queries', help: 'Duration of database queries',
}); });