Merge branch 'ms-to-seconds-histogram' into 'main'

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

See merge request soapbox-pub/ditto!401
This commit is contained in:
Alex Gleason 2024-06-27 17:40:32 +00:00
commit bdd3b2224e

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',
}); });