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