Rename metrics to conventions

master
Edward Shen 2021-07-15 02:13:31 -04:00
parent b2650da556
commit 1c00c993bf
Signed by: edward
GPG Key ID: 19182661E818369F
1 changed files with 5 additions and 5 deletions

View File

@ -20,13 +20,13 @@ init_counters!(
(
CACHE_HIT_COUNTER,
IntCounter,
"cache_hit",
"cache_hit_total",
"The number of cache hits."
),
(
CACHE_MISS_COUNTER,
IntCounter,
"cache_miss",
"cache_miss_total",
"The number of cache misses."
),
(
@ -38,19 +38,19 @@ init_counters!(
(
REQUESTS_DATA_COUNTER,
IntCounter,
"requests_data",
"requests_data_total",
"The number of requests served from the /data endpoint."
),
(
REQUESTS_DATA_SAVER_COUNTER,
IntCounter,
"requests_data_saver",
"requests_data_saver_total",
"The number of requests served from the /data-saver endpoint."
),
(
REQUESTS_OTHER_COUNTER,
IntCounter,
"requests_other",
"requests_other_total",
"The total number of request not served by primary endpoints."
),
);