2

我试图将 prometheus 与 Presto jmx 连接,我找到了这个导出器https://github.com/yahoojapan/presto_exporter但似乎提到的二进制文件不存在。我的问题是如何从头开始创建 presto 导出器?如果已经存在 jmx_exporter 可以提供帮助以及如何提供帮助?

非常感谢。

4

2 回答 2

1

#1 从源代码构建

您需要自己构建go代码

#2 Docker(推荐)

例如, whereip使用内部网络 ip 以便 docker 容器可以访问它。

# docker run --rm yahoojapan/presto-exporter:master --help
# for more infomation
docker run --rm -p 9483:9483 yahoojapan/presto-exporter:master --web.url="http://<ip>:8080/v1/cluster"

然后在Prometheus

scrape_configs:

  # other configurations...

  - job_name: 'presto_exporter'
    static_configs:
      - targets: ['<server_ip_that_run_docker_command>:9483']

重新开始Prometheus

查询presto_*或导入此仪表板:https ://grafana.com/grafana/dashboards/10866


更新

还有更多不是以 开头的指标presto_,请参阅:http://<server_ip_that_run_docker_command>:9483/metrics

在此处输入图像描述

于 2019-09-16T06:23:00.130 回答
0

没有 Docker,没有 presto-exporter docker 容器

也可以启用 Prometheus 监控,在 presto jvm.config 文件中提供 JMX 选项

-server
-Xmx3G
-XX:+UseG1GC
-XX:G1HeapRegionSize=32M
-XX:+UseGCOverheadLimit
-XX:+ExplicitGCInvokesConcurrent
-XX:+HeapDumpOnOutOfMemoryError
-XX:+ExitOnOutOfMemoryError
-Dcom.sun.management.jmxremote=true
-Dcom.sun.management.jmxremote.port=9015
-Dcom.sun.management.jmxremote.local.only=false
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.ssl=false
-javaagent:/opt/java_metrics/jmx_prometheus_javaagent-0.3.0.jar=9483:/opt/java_metrics/config.yml

prometheus.yml在文件中为 presto 添加 Prometheus 抓取点

scrape_configs:

   - job_name: presto
     static_configs:
      - targets: ['<presto_ip>:9483']
  • Presto 指标将在http://<presto_ip>:9483/metrics
于 2021-05-24T16:36:45.647 回答