XmlCollector
The XmlCollector collects and extracts metrics from XML and JSON documents.
Collector facts
Class Name |
|
Package |
core |
Supported on Minion |
Yes (see limitations) |
Configuration Files |
${OPENNMS_HOME}/etc/xml-datacollection-config.xml |
Configuration and use
Parameter | Description | Default |
---|---|---|
Required |
||
collection |
The name of the XML Collection to use. |
n/a |
Optional |
||
handler-class |
Class that performs the collection. |
org.opennms.protocols.xml.collector.DefaultXmlCollectionHandler |
The available handlers include:
-
org.opennms.protocols.xml.collector.DefaultXmlCollectionHandler
-
org.opennms.protocols.xml.collector.Sftp3gppXmlCollectionHandler
-
org.opennms.protocols.xml.vtdxml.DefaultVTDXmlCollectionHandler
-
org.opennms.protocols.xml.vtdxml.Sftp3gppVTDXmlCollectionHandler
-
org.opennms.protocols.json.collector.DefaultJsonCollectionHandler
-
org.opennms.protocols.http.collector.HttpCollectionHandler
XML collection configuration
Understanding resource types helps when editing collector-specific configuration files.
XML collections are defined in ${OPENNMS_HOME}/etc/xml-datacollection-config.xml
and groups are defined in ${OPENNMS_HOME}/etc/xml-datacollection/
.
xml-opennms-nodes
<xml-collection name="xml-opennms-nodes">
<rrd step="300">
<rra>RRA:AVERAGE:0.5:1:2016</rra>
<rra>RRA:AVERAGE:0.5:12:1488</rra>
<rra>RRA:AVERAGE:0.5:288:366</rra>
<rra>RRA:MAX:0.5:288:366</rra>
<rra>RRA:MIN:0.5:288:366</rra>
</rrd>
<xml-source url="http://admin:admin@{ipaddr}:8980/opennms/rest/nodes">
<import-groups>xml-datacollection/opennms-nodes.xml</import-groups>
</xml-source>
</xml-collection>
The url
attribute of the <xml-source>
supports node and IpInterface field placeholders, though it does not support metadata tokens.
opennms-nodes.xml
file<xml-groups>
<xml-group name="nodes" resource-type="node" resource-xpath="/nodes">
<xml-object name="totalCount" type="GAUGE" xpath="@totalCount"/>
</xml-group>
</xml-groups>
Customize the source request
If you need to customize the request to pull raw data, you can add a <request>
element within the <xml-source>
block.
<xml-source url="http://admin:admin@{ipaddr}:8980/opennms/rest/nodes">
<request method="GET">
<parameter name="disable-ssl-verification" value="true"/>
<parameter name="use-system-proxy" value="true"/>
</request>
<import-groups>xml-datacollection/opennms-nodes.xml</import-groups>
</xml-source>
The request element can have the following optional child <parameter>
elements:
Parameter | Description | Default |
---|---|---|
timeout |
The connection and socket timeout in milliseconds. |
n/a |
retries |
How often to repeat the request in case of an error. |
0 |
disable-ssl-verification |
Do not attempt to verify the name on the SSL certificate against the |
false |
use-system-proxy |
Should the system-wide proxy settings be used? Configure the system proxy settings via system properties. |
false |
xslt-source-file |
Full path to XSLT file to transform XML data before processing to collection definitions. |
n/a |
HTTP headers
If the endpoint being collected requires additional headers, you can add them as part of the <request>
object.
<xml-source url="https://{nodelabel}/api/path/to/endpoint">
<request method="GET">
<header name="Authorization" value="Bearer static_token_here" />
<header name="X-Api-Key" value="api-key-here" />
</request>
<import-groups>xml-datacollection/file.xml</import-groups>
</xml-source>
Retrieve data from a POST request
If your XML data needs to be retrieved via a POST instead of a GET, you can specify the body content of the request.
application/form-urlencoded
<xml-source url="http://{ipaddr}/post-example">
<request method="POST">
<content type='application/x-www-form-urlencoded'><![CDATA[
<form-fields>
<form-field name='firstName'>John</form-field>
<form-field name='lastName'>Doe</form-field>
</form-fields>
]]></content>
</request>
<import-groups>xml-datacollection/my-groups.xml</import-groups>
</xml-source>
application/xml
<xml-source url="http://{ipaddr}/post-example">
<request method="POST">
<content type='application/xml'><![CDATA[
<person>
<firstName>John</firstName>
<lastName>Doe</lastName>
</person>
]]></content>
</request>
<import-groups>xml-datacollection/my-groups.xml</import-groups>
</xml-source>
application/json
<xml-source url="http://{ipaddr}/post-example">
<request method="POST">
<content type='application/json'><![CDATA[
{
person: {
firstName: 'John',
lastName: 'Doe'
}
}
]]></content>
</request>
<import-groups>xml-datacollection/my-groups.xml</import-groups>
</xml-source>
Mapping values
Sometimes data is represented as string values. These values are normally not persisted as time-series data; this means changes are not visible over time. To circumvent this, we allow mappings defined between input values and values to be persisted.
Let’s assume we have the following data input:
<records>
<record>
<input>aaa</input>
<read>123</read>
</record>
<record>
<input>bbb</input>
<read>456</read>
</record>
<record>
<input>ccc</input>
<read>789</read>
</record>
</records>
The following group configuration allows you to persist the input
values as integer values over time:
<xml-group name="xml-mapping" resource-type="input" resource-xpath="/records/record" key-xpath="input">
<xml-object name="input" type="GAUGE" xpath="input"> (1)
<xml-mapping from="aaa" to="10" /> (2)
<xml-mapping from="bbb" to="20" />
<xml-mapping to="1000" /> (3)
</xml-object>
<xml-object name="read" type="GAUGE" xpath="read" />
</xml-group>
1 | The data-type is altered in the xml-object element from STRING to GAUGE . |
2 | In this example we associate aaa to 10 and bbb to 20 . |
3 | Define a default value by omitting the from attribute in a xml-mapping definition.
In this example ccc will be associated with the default value of 1000 . |