Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我cadvisor用来收集我的码头工人的指标(在核心操作系统上运行)。prometheus用作监控服务器。
cadvisor
prometheus
我看到普罗米修斯正在收集很多我不需要的指标。我试图找到一种方法来只收集一些指标。
在文档中没有找到任何允许我这样做的东西。
最好把这些东西丢给出口商,但我不相信 cadvisor 对此有支持。您可以使用metric_relabel_configs:
metric_relabel_configs
metric_relabel_configs: - source_labels: [ __name__ ] regex: 'my_too_large_metric' action: drop
Prometheus 非常高效,因此只有在导致性能/资源问题时才应删除指标。