Reputation: 47
I am trying to integrate activemq with datadog. I have modified /Users//.datadog-agent/conf.d/activemq_58.yaml.
Changes are:
instances: - host: localhost port: 8161 user: admin password: admin
activemq is running in localhost at default port with jmx enabled.
Restarted datadog agent I could see error after running info command. Error is
activemq_58
- initialize check class [ERROR]: 'mapping values are not allowed in >this context\n in "<byte string>", line 4, column 10'
Can anybody suggest that why I am getting this error?
Upvotes: 0
Views: 451
Reputation: 2269
is your activemq_58.yaml
all in one line like that? You probably want it to be more like this:
instances:
- host: localhost
port: 8161
user: admin
password: admin
Upvotes: 0