如何仅在InfluxDb中存储Prometheus的特定指标

时间:2020-06-26 16:06:22

标签: prometheus influxdb

我想将Prometheus指标写入InfluxDb,我发现这段代码将所有指标存储在influxDb中

 remote_write:
         - url: "http://localhost:8086/api/v1/prom/write?db=prometheus&u=username&p=password"

 remote_read:
     - url: "http://localhost:8086/api/v1/prom/read?db=prometheus&u=username&p=password"

但是我只想存储特定的指标,例如函数持续时间:

rate(gateway_functions_seconds_sum[20s]) / rate(gateway_functions_seconds_count[20s])

我该如何实现?

0 个答案:

没有答案