1.relabel_configs 和 metric_relabel_configs
relabel_configs:发生在抓取前选择目标和做label配置
metric_relabel_configs:发生在抓取后落tsdb库之前,最后修改metrics内容
elabel_config 发生在抓取之前,metric_relabel_configs 发生在抓取之后
2.其他配置
- source_labels: [__meta_kubernetes_service_name] #这个标签可以在prom中查看详细的值
separator: ;
regex: (.*) #正则匹配
target_label: k8s_svc
replacement: $1
action: replace
replace: 替换。
keep: 保留。如果只想发现某个与source_labels匹配的target,可以用这个keep
drop: 丢弃。可以根据source_labels丢弃某个匹配的target
参考连接:
https://blog.csdn.net/qq_43684922/article/details/131155357
https://prometheus.io/docs/prometheus/latest/configuration/configuration/
标签:labels,metric,配置,relabel,抓取,prometheus,configs From: https://www.cnblogs.com/wdgde/p/18323899