我想将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])
我该如何实现?