Fabian Stäber
Fabian Stäber
Hey, thanks a lot for the PR. It looks like there is a small typo in `hadoop_namenode.yml`: ``` Caused by: while scanning a double-quoted scalar in 'reader', line 23, column...
Micrometer can export metrics for Prometheus directly, using Micrometer's Prometheus registry. There is no need to convert the metrics to JMX and use the `jmx_exporter`.
Hi, thanks a lot for your analysis. I will certainly look into it as soon as time allows. Meanwhile, if you have a proposal how to reduce the number of...
Just to be clear: The PR mentioned above adds basic HTTP authentication. It does not add SSL support.
See also #664.
I'm not aware of any issues. Please post some context, like how you install it and what errors you are seeing.
I found a similar example in [kafka-connect.yml](https://github.com/prometheus/jmx_exporter/blob/73ad291363297560f613fc7814920d2f6f3ecf39/example_configs/kafka-connect.yml): https://github.com/prometheus/jmx_exporter/blob/73ad291363297560f613fc7814920d2f6f3ecf39/example_configs/kafka-connect.yml#L22-L31 Maybe you can start with this and adapt it? If that doesn't work, please let us know how exactly the JMX bean...
``` java.io.FileNotFoundException: /usr/share/java/config.yml (No such file or directory) ``` Is the config file only available on _node-01_?
`jmx_exporter` takes data from JMX beans and converts them to Prometheus metrics. So the first step is to understand what data from JMX beans you are interested in. In order...
I guess you don't call `PushGateway.pushAdd()` directly, but instead set ``` management.metrics.export.prometheus.pushgateway.enabled=true ``` and have Spring's `PrometheusPushGatewayManager` call `PushGateway.pushAdd()` for you. So your question would be more for the Spring...