mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 11:57:07 +02:00
Corrected metric for task queue total size
This commit is contained in:
parent
3d93efc6aa
commit
eeb33b913c
3 changed files with 9 additions and 4 deletions
|
@ -68,9 +68,9 @@ lazy_static! {
|
|||
"Meilisearch Task Queue Latency in Seconds",
|
||||
)
|
||||
.expect("Can't create a metric");
|
||||
pub static ref MEILISEARCH_TASK_QUEUE_TOTAL_SIZE: IntGauge = register_int_gauge!(opts!(
|
||||
"meilisearch_task_queue_total_size",
|
||||
"Meilisearch Task Queue Total Size",
|
||||
pub static ref MEILISEARCH_TASK_QUEUE_MAX_SIZE: IntGauge = register_int_gauge!(opts!(
|
||||
"meilisearch_task_queue_max_size",
|
||||
"Meilisearch Task Queue Max Size",
|
||||
))
|
||||
.expect("Can't create a metric");
|
||||
pub static ref MEILISEARCH_TASK_QUEUE_USED_SIZE: IntGauge = register_int_gauge!(opts!(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue