如何使用`group_left`语句执行`count_over_time`?

时间:2018-10-05 13:48:16

标签: prometheus promql

我想知道基于特定标签在Kubernetes中创建的作业数量。以下是我想出的。由于某些时间间隔之间存在间隙,因此我希望随时间进行计数。

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

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

1 个答案:

答案 0 :(得分:0)

我认为您想要的是:

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])
)