Я не могу отключить некоторые метрики для стекового драйвера от Прометея.
Я попытался изменить прометей yaml в configmap, как показано ниже.
remote_write:
- url: "https://monitoring.googleapis.com:443/"
queue_config:
# Capacity should be 2*max_samples_per_send.
capacity: 400
max_samples_per_send: 200
max_shards: 10000
write_relabel_configs:
# These labels are generally redundant with the Stackdriver monitored resource labels.
- source_labels: [__name__]
regex: etcd_network(.+)
# "etcd_network*"
# "(etcd_network.+)"
action: drop
Я ожидаю, что не будет получать такие метрики, как "сеть etcd ...", но она по-прежнему отображается на информационной панели StackDriver.
Наконец-то нашел, нужно отредактировать работу ...:
- job_name: 'kubernetes-pods-containers'
metric_relabel_configs:
- source_labels: [__name__]
regex: "etcd_grpc.+"
action: drop