将prometheus采集的数据远程存储到influxdb中

Posted aguncn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将prometheus采集的数据远程存储到influxdb中相关的知识,希望对你有一定的参考价值。

这个比较简单,

https://docs.influxdata.com/influxdb/v1.7/supported_protocols/prometheus

只需要更改prometheus.yaml配置 文件。

    global:
      # 抓取的间隔时间
      scrape_interval: 20s
      # How long until a scrape request times out.
      scrape_timeout: 10s
      # 计算告警触发条件的周期
      evaluation_interval: 20s
    # 告警规则文件
    rule_files:
      - ‘/etc/prometheus-rules/*.rules‘
    remote_write:
      - url: "http://xxxx:8086/api/v1/prom/write?db=prometheus"

    # remote_read:
    #   - url: "http://xxxx:8086/api/v1/prom/read?db=prometheus"

 

以上是关于将prometheus采集的数据远程存储到influxdb中的主要内容,如果未能解决你的问题,请参考以下文章

prometheus备份容器监控的数据

prometheus-存储

Prometheus 通过 Telegraf 将数据远程写入 InfluxDB 2.x 存储(InfluxDB 2.x 不同于 1.x)

Prometheus 通过 Telegraf 将数据远程写入 InfluxDB 2.x 存储(InfluxDB 2.x 不同于 1.x)

MySQL: 9 为数据库部署Prometheus+Grafana监控系统

prometheus 服务发现原理