Fabian Stäber

Results 301 comments of Fabian Stäber
trafficstars

Opened an issue here https://github.com/prometheus/common/issues/319

I renamed `jvm_classes_loaded` to `jvm_classes_currently_loaded`. This will solve the issue. It will be rolled out with the next release. See https://github.com/prometheus/client_java/pull/681

This can be configured in the Prometheus server, not in the `jmx_exporter`. In the Prometheus server configuration, add `metric_relabel_configs` to the job in your `prometheus.yml`. Example: ```yaml scrape_configs: - job_name:...

Adding the prefix to TextFormat certainly works. I don't think there is a better workaround. If you want to solve this with configuration, you can configure rules with `pattern` and...

Hi Stephen, sorry for responding so late. Reading Apache Ignite's documentation I see that they have a JMX bean `Connections` with a list of connections. In that case the size...

This should not happen, as the whole purpose of the 0.16.0 release was to build a version with snakeyaml 1.29. I am not familiar with Trivy. Do you know why...

I removed the `pom.xml` from the binary and released [0.16.1](https://github.com/prometheus/jmx_exporter/releases/tag/parent-0.16.1). For reference: The metadata in `pom.xml` wrongly points to 1.23. That version is in fact not included in the Java...

Thanks for the PR. Did you get these exceptions in a real world scenario? If so, it would be interesting to hear what happened. I'd like to avoid spamming user's...

There's a [TabularMBean](https://github.com/prometheus/jmx_exporter/blob/21fd1bbcd5ae95f9dc331a7a4b02fc5b45248a85/integration_tests/jmx_example_application/src/main/java/io/prometheus/jmx/TabularMBean.java) in the integration tests. The smoke test verifies that the tabular data is successfully exposed: https://github.com/prometheus/jmx_exporter/blob/21fd1bbcd5ae95f9dc331a7a4b02fc5b45248a85/integration_tests/smoke_tests/src/test/java/io/prometheus/jmx/AgentJavaVersionsIT.java#L97-L102 Do you see any difference between your example and the working...

To narrow this down we need to figure out if the root cause is in `jmx_exporter`, in the Artifactory, or in the network connection. Is there any chance that you...