File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM gradle:9.2.0-jdk21 as builder
22COPY . .
33RUN gradle shadowJar
44
5- FROM flink:2.1.0 -java21
5+ FROM flink:2.1.1 -java21
66RUN echo "metrics.reporters: prom" >> "$FLINK_HOME/conf/config.yaml" ; \
77 echo "metrics.reporter.prom.factory.class: org.apache.flink.metrics.prometheus.PrometheusReporterFactory" >> "$FLINK_HOME/conf/config.yaml"
88COPY --from=builder /home/gradle/build/libs/*.jar $FLINK_HOME/usrlib/
Original file line number Diff line number Diff line change 11[ ![ Actions Status] ( https://github.com/mbode/flink-prometheus-example/workflows/Gradle/badge.svg )] ( https://github.com/mbode/flink-prometheus-example/actions )
22[ ![ codecov] ( https://codecov.io/gh/mbode/flink-prometheus-example/branch/master/graph/badge.svg )] ( https://codecov.io/gh/mbode/flink-prometheus-example )
3- [ ![ Flink v2.1.0 ] ( https://img.shields.io/badge/flink-v2.1.0 -blue.svg )] ( https://github.com/apache/flink/releases/tag/release-2.1.0 )
3+ [ ![ Flink v2.1.1 ] ( https://img.shields.io/badge/flink-v2.1.1 -blue.svg )] ( https://github.com/apache/flink/releases/tag/release-2.1.1 )
44[ ![ Prometheus v3.6.0] ( https://img.shields.io/badge/prometheus-v3.6.0-blue.svg )] ( https://github.com/prometheus/prometheus/releases/tag/v3.6.0 )
55
66This repository contains the live demo to my talk _ Monitoring Flink with Prometheus_ , which I have given at:
Original file line number Diff line number Diff line change 1818
1919repositories { mavenCentral() }
2020
21- val flinkVersion = " 2.1.0 "
21+ val flinkVersion = " 2.1.1 "
2222
2323dependencies {
2424 compileOnly(" org.apache.flink:flink-streaming-java:$flinkVersion " )
You can’t perform that action at this time.
0 commit comments