我有一个 Prometheus pod 和我的 Kube-State-Metrics (KSM) pod 一起运行。 KSM 从集群中所有命名空间的所有 Pod 收集所有指标。 Prometheus 只是从 KSM 中抓取指标——这样 Prometheus 不需要抓取单个 pod。

部署 pod 时,它们的部署具有某些与 pod 相关的标签,如下所示。他们有两个重要的标签: APP TEAM :

apiVersion: apps/v1
kind: Deployment
metadata:
  labels:
    APP: AppABC
    TEAM: TeamABC
...

在 Prometheus 中,我的抓取配置如下所示:
scrape_configs:
  - job_name: 'pod monitoring'
    honor_labels: true
    kubernetes_sd_configs:
    - role: pod
    relabel_configs:
    - action: labelmap
      regex: __meta_kubernetes_pod_label_(.+)
...

问题是,当 Prometheus 从 kube-state-metrics 抓取信息时,它会用 APP 覆盖 kube-state-metrics 。例如下面的这个指标实际上是针对名为 "AppABC" 的应用程序的,但 Prometheus 将 app 标签覆盖为 kube-state-metrics
kube_pod_container_status_restarts_total{
    app="kube-state-metrics",
    container="appabccontainer",
    job="pod monitoring",
    namespace="test-namespace",
    pod="appabc-766cbcb68d-29smr"
}

无论如何,我是否可以从 kube-state-metrics 中抓取指标但将 APP TEAM 标签保持在一起而不覆盖它们?

编辑 - 我想通了

我的问题: 我的部署和 pod 定义了某些标签(APP、TEAM)。 Kube-state-metrics 从 K8 API 获取这些。当 Prometheus 从 kube-state-metrics 中抓取时,它没有这些标签。

我的目标: 将这些标签暴露给 Prometheus。

我的解决方案: 使用 PromQL 您可以进行分组。所以在我的 prometheus-rules.yaml 中,我改变了这个:
expr: kube_pod_status_phase{phase="Failed"} > 0

对此:
expr: kube_pod_status_phase{phase="Failed"} * on (pod,namespace) group_right kube_pod_labels > 0

所以我的新警报规则如下所示:
- name: Pod_Failed
  rules:
  - alert: pod_failed
    expr: kube_pod_status_phase{phase="Failed"} * on (pod,namespace) group_right kube_pod_labels > 0
    labels:
      appname: '{{ $labels.label_APP }}' # This is what I wanted to capture
      teamname: '{{ $labels.label_TEAM }}' # This is what I wanted to capture
    annotations:
      summary: 'Pod: {{ $labels.pod }} is down'
      description: 'Pod: {{ $labels.pod }} is down in {{ $labels.namespace }} namespace.'

最佳答案

解决方案: 使用 PromQL 您可以进行分组。所以在我的 prometheus-rules.yaml 中,我改变了这个:

expr: kube_pod_status_phase{phase="Failed"} > 0

对此:
expr: kube_pod_status_phase{phase="Failed"} * on (pod,namespace) group_right kube_pod_labels > 0

所以我的新警报规则如下所示:
- name: Pod_Failed
  rules:
  - alert: pod_failed
    expr: kube_pod_status_phase{phase="Failed"} * on (pod,namespace) group_right kube_pod_labels > 0
    labels:
      appname: '{{ $labels.label_APP }}' # This is what I wanted to capture
      teamname: '{{ $labels.label_TEAM }}' # This is what I wanted to capture
    annotations:
      summary: 'Pod: {{ $labels.pod }} is down'
      description: 'Pod: {{ $labels.pod }} is down in {{ $labels.namespace }} namespace.'

关于kubernetes - 从 Kube State Metrics 中提取指标时如何在 Prometheus 中获取 Pod 的标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52994392/

10-15 23:52