HostResourceSwRunMonitor
This monitor tests the running state of one or more processes. It does this via SNMP by inspecting the HOST-RESOURCES-MIB hrSwRunTable. The test matches a given process as hrSwRunName against the numeric value of the hrSwRunState.
This monitor uses SNMP to accomplish its work. Therefore, systems against which you use it must have an SNMP agent supporting the HOST-RESOURCES-MIB installed and configured. Most modern SNMP agents, including most distributions of the Net-SNMP agent and the SNMP service that ship with Microsoft Windows, support this MIB. Out-of-the-box support for HOST-RESOURCES-MIB among commercial Unix operating systems may be somewhat spotty.
Configuration and use
Parameter | Description | Default |
---|---|---|
Required |
||
service-name |
The name of the process to be monitored.
If there is a |
n/a |
Optional |
||
port |
The port of the server’s SNMP agent to test. |
from |
match-all |
If the process name appears multiple times in the |
false |
run-level |
The maximum allowable value of hrSWRunStatus among |
2 |
service-name-oid |
The numeric object identifier (OID) from which process names are queried. Defaults to hrSwRunName. You should never change it under normal circumstances. That said, changing it to hrSwRunParameters (.1.3.6.1.2.1.25.4.2.1.5) is often helpful when dealing with processes running under Java Virtual Machines which all have the same process name java. |
.1.3.6.1.2.1.25.4.2.1.2 |
service-status-oid |
The numeric object identifier (OID) from which run status is queried. Defaults to hrSwRunStatus and should never be changed under normal circumstances. |
.1.3.6.1.2.1.25.4.2.1.7 |
min-services |
If |
n/a |
max-services |
If |
n/a |
This monitor implements the Common Configuration Parameters.
For min-services and max-services , the poller service is up if services_count >= min-services and services_count ⇐ max-services .
If either one is not defined, then only one has to pass.
If neither is defined, the monitor checks all instances to see if they are running.
|
Examples
The following example shows how to monitor the httpd
process running on a server using this monitor.
Note that you must include the monitor
section for each service in your definition.
Define the configuration in poller-configuration.xml
as follows:
<service name="Process-httpd" interval="300000" user-defined="false" status="on">
<parameter key="retry" value="3"/>
<parameter key="timeout" value="3000"/>
<parameter key="service-name" value="~.*httpd.*"/>(1)
<parameter key="run-level" value="3"/>(2)
<parameter key="match-all" value="true"/> (3)
</service>
<monitor service="Process-httpd" class-name="org.opennms.netmgt.poller.monitors.HostResourceSwRunMonitor"/>
1 | Name of the process on the system. |
2 | Test if the process is in a valid state (in other words, have a run-level no higher than notRunnable(3) . |
3 | If the httpd process runs multiple times, the test is done for each instance of the process. |