Fabian Stäber
Fabian Stäber
Thanks for the detailed report. As you have whitelisted `java.lang:type=OperatingSystem` it would be good to know: * What operating system are you using? Maybe there's something unexpected in your OS...
In general I think IPv6 should work. In the Exception above I see ``` Connection refused to host: 127.0.0.1 ``` Is there a configuration issue where `jmx_exporter` tries to connect...
I guess there is a misunderstanding how `jmx_exporter` accesses JMX beans. There are two ways to run `jmx_exporter`: * As a Java agent. You attach it to a JVM at...
Thanks a lot! I started working on a new config file format (no worries, `jmx_exporter` will still be able to read the old config for backwards compatibility). It would be...
Hi, I'm happy to help, but I need some more information on your usage of `jmx_exporter` and the connect task. Is your connect task a Java program using `jmx_exporter` as...
Here's a status update: :heavy_check_mark: first implementation of a new config file format is done, it's in the `new-config` branch. This format will allow to configure SSL for scraping via...
Sorry for the delay. As @dhoard mentioned, there is a branch for a new YAML config file format that we are working on. It was originally started for extended SSL...
The first step would be to figure out why the `jmx_exporter` agent is unresponsive. Could you create a thread dump? This can be done by sending the -3 signal to...
Hmm, I don't see why standard configuration wouldn't work. The `JmxScraper` creates a straightforward `MBeanServerConnection`: https://github.com/prometheus/jmx_exporter/blob/master/collector/src/main/java/io/prometheus/jmx/JmxScraper.java#L95-L96
I'm currently playing around with a new config format, my current sketch looks like this: **2021-12-16: Updated with the current contents of my sketch file** ```yaml startDelaySeconds: 0 collector: hostPort:...