Fixed
Details
Assignee
Alejandro GalueAlejandro GalueReporter
Alejandro GalueAlejandro GalueComponents
Fix versions
Affects versions
Priority
Minor
Details
Details
Assignee
Alejandro Galue
Alejandro GalueReporter
Alejandro Galue
Alejandro GalueComponents
Fix versions
Affects versions
Priority
PagerDuty
PagerDuty
PagerDuty
Created February 28, 2012 at 8:53 AM
Updated January 27, 2017 at 4:21 PM
Resolved February 28, 2012 at 8:57 AM
It will be very useful to be able to split the content of jmx-datacllection-config.xml into several files on a similar way as we currently do with the XML Collector.
The idea is to keep the current configuration files unmodified, but be able to modify it in the future by just adding an import statement, for example:
<jmx-datacollection-config rrdRepository="/opt/opennms/rrd/snmp/">
<jmx-collection name="jboss">
<rrd step="300">
<rra>RRA:AVERAGE:0.5:1:8928</rra>
<rra>RRA:AVERAGE:0.5:12:8784</rra>
<rra>RRA:MIN:0.5:12:8784</rra>
<rra>RRA:MAX:0.5:12:8784</rra>
</rrd>
<import-mbeans>mbeans/mbeans-system.xml</import-mbeans>
</jmx-collection>
<jmx-collection name="jsr160">
<rrd step="300">
<rra>RRA:AVERAGE:0.5:1:8928</rra>
<rra>RRA:AVERAGE:0.5:12:8784</rra>
<rra>RRA:MIN:0.5:12:8784</rra>
<rra>RRA:MAX:0.5:12:8784</rra>
</rrd>
<import-mbeans>mbeans/mbeans-basic.xml</import-mbeans>
</jmx-collection>
</jmx-datacollection-config>
The above config assumes that the following files exist on the filesystem:
/opt/opennms/etc/mbeans/mbeans-system.xml
/opt/opennms/etc/mbeans/mbeans-basic.xml
The content of mbeans-system.xml and mbeans-basic.xml will be the same content as we actually put inside the collections from the tag <mbeans>