How to Setup spring data flow task monitoring using Prometheus Micrometer

11/4/2019

I would like to setup Task Monitoring in the Spring Cloud Data flow using Prometheus. Added below dependency in the Application code and installed Prometheus, Grafana , SCDF etc in the Kubernetes. But Task monitoring is not working. Can someone guide me?

    <dependency>
        <groupId>io.micrometer.prometheus</groupId>
        <artifactId>prometheus-rsocket-spring</artifactId>
        <version>0.9.0</version>
    </dependency>
    <dependency>
        <groupId>io.micrometer.prometheus</groupId>
        <artifactId>prometheus-rsocket-client</artifactId>
        <version>0.9.0</version>
    </dependency>
-- Mohan
kubernetes
prometheus
spring

0 Answers