Doug Hoard
Doug Hoard
@hariohmprasath sure, that method is a workaround if the parts are already split. In my scenario, I am reading a complex/quoted command line from a file. Ideally, I should be...
@REslim30 Thanks for the insight. I can see where non-POSIX commands could be a probably. I currently have a workaround in place, so it's not blocking me.
I feel that a better approach than `withPosixCommand` and `withWindowsCommand` would be something like the following... ``` public SELF withCommand(String cmd, Function cmdProcessor) { withCommand(cmdProcessor.apply(cmd)); return this; } ``` ```...
@uberspot You can also try to run the `JMXScraper` code manually https://github.com/prometheus/jmx_exporter/blob/5c2c9216622342116b0068d4cc47f71a37093d3a/collector/src/main/java/io/prometheus/jmx/JmxScraper.java#L334 to try to see if a specific MBean is hanging the collection.
Can you elaborate on why you feel this would be more secure?
@daviddetorres I agree that storing authentication secrets in the `config.yaml` is not ideal for K8s. For K8s, I feel a cleaner solution would be to use an init container and...
Aggregation of metrics from the applications is a concern of the monitoring tool (Prometheus, etc.) In general, if you are running a Java application, you should use `jmx_exporter` as an...
@killua202 a JVM on listens to a single port JMX access. Curious as to how this would be useful? What problem are you trying to solve with a range?
After looking at the PR a few thoughts/opinions... 1. We should not introduce a command-line argument to enable TLS. This should be part of the `config.yaml` file. (See proposed example...
@fstab any update on this feature?