有没有一种方法可以使用度量/标签值从pushgateway中删除



我只知道如何使用'curl-X delete从pushgateway中删除http://localhost:9091/metrics/job/some_job/instance/some_instance',但我想删除包含特定标签值的度量,我该怎么做?

更新:我使用python编写脚本,prometheus有一个用于python的客户端,其函数为"delete_from_pushgateway((">

这可以在以下位置找到:https://github.com/prometheus/client_python

根据普罗米修斯网关自述

  • 删除组中由{job="some_job",instance="some_instance"}标识的所有度量:

    卷曲-X删除http://pushgateway.example.org:9091/metrics/job/some_job/instance/some_instance

  • 删除由{job="some_job"}标识的组中的所有度量(注意,这不包括前一示例中{job="some_ job",instance="some_instance"}组中的度量,即使这些度量具有相同的作业标签(:

    卷曲-X删除http://pushgateway.example.org:9091/metrics/job/some_job

相关内容

  • 没有找到相关文章

最新更新