1

我想知道基于特定标签在 Kubernetes 中创建的作业数量。以下是我想出的。由于某些间隔之间存在差距,我想随着时间的推移进行计数。

kube_job_created * on(job_name)
  group_left (label_cronjob_name)
  kube_job_labels{label_cronjob_name="sf-synch-abn"}

我在哪里放置范围矢量选择器?

4

1 回答 1

1

我想你想要的是:

count(
    count_over_time(kube_job_created[1h]) 
  * on(job_name) group_left (label_cronjob_name)
    count_over_time(kube_job_labels{label_cronjob_name="sf-synch-abn"}[1h])
)
于 2018-10-05T14:53:04.140 回答