栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

prometheus operator servicemonitor 添加 label

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

prometheus operator servicemonitor 添加 label

serviceMonitorSepc.[]endpoint.relabelconfig

https://github.com/prometheus-operator/prometheus-operator/blob/main/documentation/api.md#servicemonitorspechttps://github.com/prometheus-operator/prometheus-operator/blob/main/documentation/api.md#servicemonitorspec​​​​​​https://github.com/prometheus-operator/prometheus-operator/blob/main/documentation/api.md#endpointhttps://github.com/prometheus-operator/prometheus-operator/blob/main/documentation/api.md#endpointhttps://github.com/prometheus-operator/prometheus-operator/blob/main/documentation/api.md#relabelconfighttps://github.com/prometheus-operator/prometheus-operator/blob/main/documentation/api.md#relabelconfig

来个 example

apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
  labels:
    app.kubernetes.io/component: exporter
    app.kubernetes.io/name: node-exporter
    app.kubernetes.io/part-of: kube-prometheus
    app.kubernetes.io/version: 1.1.2
  name: node-exporter
  namespace: monitoring
spec:
  endpoints:
  - bearerTokenFile: /var/run/secrets/kubernetes.io/serviceaccount/token
    interval: 15s
    port: https
    relabelings:
    # 这就是添加的新的 label k8scluster=cluster-172.30.3.222
    - replacement: cluster-172.30.3.222
      targetLabel: k8scluster
    - action: replace
      regex: (.*)
      replacement: $1
      sourceLabels:
      - __meta_kubernetes_pod_node_name
      targetLabel: instance
    scheme: https
    tlsConfig:
      insecureSkipVerify: true
  jobLabel: app.kubernetes.io/name
  selector:
    matchLabels:
      app.kubernetes.io/component: exporter
      app.kubernetes.io/name: node-exporter
      app.kubernetes.io/part-of: kube-prometheus

因对 prometheus 不熟悉,才这般记录。。。。哎。。。羞羞。。。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/741175.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号