我有一个复制因子为 3 的 pod。该应用程序将指标放在 port 上9001
。我希望普罗米修斯运营商抓取指标。values.yaml
使用 stable/prometheus-operator helm 图表时,我有以下内容。
prometheus:
prometheusSpec:
additionalScrapeConfigs:
- job_name: 'akka-metrics'
scrape_interval: 15s
kubernetes_sd_configs:
- role: pod
namespaces:
names:
- default
relabel_configs:
- source_labels: [__meta_kubernetes_pod_container_name]
action: keep
regex: 'my_pod_name.*'
使用上面的设置,我可以看到 pod,/target
但它正在尝试从端口2551
和8558
. 我想将这些端口中的一个更改为9001
(我的应用程序吐出指标的实际端口)。我想知道我该怎么做?