-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upcoming changes to JMX metrics gatherer #34825
Comments
Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
For example for the items 2) and 3), we already know the following: The current JMX gatherer (contrib) implementation also includes some pre-defined sets of metrics which are selected through the One of the goals is being able to re-implement the current set of metrics with the YAML configuration instead of the groovy definitions, so ideally it could be a drop-in replacement for people relying on it. In practice though, end-users are also allowed to provide their own groovy metrics definitions with In other terms, for those pre-defined metrics, do we have any idea if using the |
From a cursory glance at the code, I don't think
So if |
It's not ... it was actually specifically taken out due to security concerns (it basically allows the collector to run an arbitrary groovy script -> essentially arbitrary code execution) This proposed code change would allow customers of the collector to change what's queried, an in general be a huge usability increase |
Not directly related to the collector or the receiver, but we have to still assume that existing users are launching the jar file through some other mechanism, in which case it's still "breaking" to them. Just sayin'. |
Why implement the JMX scraper in Java, thereby requiring to bundle java within the otelcol image? Why not implement the scraper in Go directly (using something like gojmx), removing any Java dependency? We could remove one layer of complexity here. |
On a high level, the JMX Scraper has the following goals:
Using something from I would be happy to be proven wrong on this last aspect, and maybe it could also be interesting to create another otel collector extension that relies on |
Thanks @SylvainJuge for your very detailed answer to my naive question. I'm not familiar with the whole complexity you just described. I guess it makes sense then. |
Component(s)
receiver/jmx
Describe the issue you're reporting
Hi collector folks! Greetings from the Java instrumentation group.
We have a java contrib component commonly called the JMX Metrics Gatherer which allows users to choose from a set of preconfigured out-of-the-box frameworks and/or provide custom configurations for their own JMX MBeans. This component runs as a stand-alone jar file, connects to a JVM, and exports metrics. We believe it is bundled or otherwise launched from the jmxreceiver in this repository.
For some time, we (otel java sig) have had a confusing and limiting situation which involves two components with similar goals but notably different implementations and configuration: jmx auto-instrumentation via the agent, and the above-mentioned jmx-metrics gatherer.
We want to begin unifying these separate implementations into something more cohesive. Furthermore, the jmx-metrics gatherer is written in and configured with groovy, and there is little interest in maintaining that going forward. So, the approach we discussed today in the Java SIG meeting today is this -- we will create a new module in java-contrib (name is tbd) that will essentially be a new version of the jmx-metrics gatherer. This will be written in Java and will use the same yaml based configuration as the java agent instrumentation. Once that module is published and we think it is ready to be used widely, we will remove the existing
jmx-metrics
module and stop publishing updates to it.So this issue is really to:
Thanks!
The text was updated successfully, but these errors were encountered: