Apache Flink 的自定义 Prometheus 接收器?

问题描述 投票:0回答:2

我有一个由Apache Flink处理的时间序列日志,我想绘制grafana的数据,首先将其导出到Prometheus。 java中有没有任何例子或方法可以做到这一点?就像在 flink 中编写一个自定义接收器,它将不断地将数据接收到 prometheus 中。

java time-series apache-flink grafana prometheus
2个回答
0
投票

我认为您可能正在寻找当前版本的 Flink 中提供的 Flink Metrics 报告器。它允许向 Prometheus 报告。

https://ci.apache.org/projects/flink/flink-docs-stable/deployment/metric_reporters.html


0
投票

这里唯一的其他答案建议使用 Flink Metrics 报告器,但这是为了向 Prometheus 报告 Flinks 内部指标。您应该使用 Prometheus 接收器:https://nightlies.apache.org/flink/flink-docs-master/docs/connectors/datastream/prometheus/

© www.soinside.com 2019 - 2024. All rights reserved.