Fabian Stäber

Results 301 comments of Fabian Stäber
trafficstars

I updated the yaml config sketch above. I'm not sure about the pluggable authenticator. That would mean that the `jmx_exporter` has to load a JAR file with the authenticator implementation...

I did a bit of monkey work and created a `Config` class for the config file format above: https://github.com/prometheus/jmx_exporter/blob/new-config/collector/src/main/java/io/prometheus/jmx/Config.java It can also read the old format for backwards compatibility. I...

If you say you are running the `jmx_exporter`, do you mean you attach it as an agent to an existing VM, or are you running it in standalone mode and...

This could be an issue with an outdated Java version in bitnami's Docker image. By default, Java uses 1/4 of the available memory as the maximum heap space. For example,...

The `HTTPServer` is limited to 5 threads by default. If all 5 threads are busy, you still can create new TCP connections but these connections need to wait for available...

There are two ways to use `jmx_exporter`: 1. The javaagent attaches directly to a JVM (for example to a JVM running tomcat in your case), and it will get the...

Hi, please let me know your `exporter_exporter` configuration, the `jmx_exporter` configuration, and the command line you used to start your Java application. I'll have a look and try to figure...

The error in `jmx_errors.log` says: > Verification for module 'jmx' failed: Failed to decode metrics from proxied server: text format parsing error in line 34: second TYPE line for metric...

Stupid question, but I want to make sure that we are looking at the same thing: Are you talking about [https://github.com/QubitProducts/exporter_exporter](https://github.com/QubitProducts/exporter_exporter)? I'm wondering because the config you posted above (with...

I'm still struggling to reproduce this. Here are the commands I used trying to set this up: Download, unpack, create config: ``` #!/bin/bash curl -OL http://archive.apache.org/dist/activemq/5.16.2/apache-activemq-5.16.2-bin.tar.gz curl -OL https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.16.1/jmx_prometheus_javaagent-0.16.1.jar curl...