You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Default JMX metrics are not sent because of this logs:
INFO | (pkg/jmxfetch/jmxfetch.go:304 in func1) | 2020-11-21 18:24:56 UTC | JMX | WARN | JmxAttribute | Unable to get metrics from JMImplementation:type=MBeanServerDelegate - MBeanServerId: java.lang.NumberFormatException: For input string: "9b6c307b23cf_1605982746024"
INFO | (pkg/jmxfetch/jmxfetch.go:304 in func1) | 2020-11-21 18:24:56 UTC | JMX | WARN | JmxAttribute | Unable to get metrics from JMImplementation:type=MBeanServerDelegate - SpecificationName: java.lang.NumberFormatException: For input string: "Java Management Extensions"
INFO | (pkg/jmxfetch/jmxfetch.go:304 in func1) | 2020-11-21 18:24:56 UTC | JMX | WARN | JmxAttribute | Unable to get metrics from JMImplementation:type=MBeanServerDelegate - SpecificationVendor: java.lang.NumberFormatException: For input string: "Oracle Corporation"
INFO | (pkg/jmxfetch/jmxfetch.go:304 in func1) | 2020-11-21 18:24:56 UTC | JMX | WARN | JmxAttribute | Unable to get metrics from JMImplementation:type=MBeanServerDelegate - ImplementationName: java.lang.NumberFormatException: For input string: "JMX"
INFO | (pkg/jmxfetch/jmxfetch.go:304 in func1) | 2020-11-21 18:24:56 UTC | JMX | WARN | JmxAttribute | Unable to get metrics from JMImplementation:type=MBeanServerDelegate - ImplementationVersion: java.lang.NumberFormatException: multiple points
INFO | (pkg/jmxfetch/jmxfetch.go:304 in func1) | 2020-11-21 18:24:56 UTC | JMX | WARN | JmxAttribute | Unable to get metrics from JMImplementation:type=MBeanServerDelegate - ImplementationVendor: java.lang.NumberFormatException: For input string: "Oracle Corporation"
INFO | (pkg/jmxfetch/jmxfetch.go:304 in func1) | 2020-11-21 18:24:56 UTC | JMX | WARN | JmxAttribute | Unable to get metrics from java.lang:type=Runtime - SpecName: java.lang.NumberFormatException: For input string: "Java Virtual Machine Specification"
If I remove bean and restart agent default metrics start to send. What is wrong?
The text was updated successfully, but these errors were encountered:
Unable to get metrics from is just a warning meaning that JMXFetch does not support directly the type String and you can safely ignore these warnings.
Can you try running datadog-agent jmx list collected and datadog-agent jmx list everything? There are also other debugging commands for JMX that can help understanding your issue.
List attributes matched by JMXFetch.
Usage:
datadog-agent jmx list [command]
Available Commands:
collected List attributes that will actually be collected by your current instances configuration.
everything List every attributes available that has a type supported by JMXFetch.
limited List attributes that do match one of your instances configuration but that are not being collected because it would exceed the number of metrics that can be collected.
matching List attributes that match at least one of your instances configuration.
not-matching List attributes that don’t match any of your instances configuration.
with-metrics List attributes and metrics data that match at least one of your instances configuration.
with-rate-metrics List attributes and metrics data that match at least one of your instances configuration, including rates and counters.
Datadog docker agent version: datadog/agent:latest-jmx
Configuration before adding bean conf.d/jmx.d/conf.yaml:
Configuration above works fine. But after adding bean below:
Default JMX metrics are not sent because of this logs:
If I remove bean and restart agent default metrics start to send. What is wrong?
The text was updated successfully, but these errors were encountered: