use of org.opennms.protocols.nsclient.NsclientCheckParams in project opennms by OpenNMS.
the class NsclientMonitor method poll.
/**
* {@inheritDoc}
*
* Poll the specified address for service availability. During the poll an
* attempt is made to connect on the specified port. If the connection
* request is successful, the parameters are parsed and turned into
* <code>NsclientCheckParams</code> and a check is performed against the
* remote NSClient service. If the <code>NsclientManager</code> responds
* with a <code>NsclientPacket</code> containing a result code of
* <code>NsclientPacket.RES_STATE_OK</code> then we have determined that
* we are talking to a valid service and we set the service status to
* SERVICE_AVAILABLE and return.
*/
@Override
public PollStatus poll(MonitoredService svc, Map<String, Object> parameters) {
// Holds the response reason.
String reason = null;
// Used to exit the retry loop early, if possible.
int serviceStatus = PollStatus.SERVICE_UNRESPONSIVE;
// This will hold the data the server sends back.
NsclientPacket response = null;
// Used to track how long the request took.
Double responseTime = null;
// NSClient related parameters.
String command = ParameterMap.getKeyedString(parameters, "command", NsclientManager.convertTypeToString(NsclientManager.CHECK_CLIENTVERSION));
int port = ParameterMap.getKeyedInteger(parameters, "port", NsclientManager.DEFAULT_PORT);
String password = ParameterMap.getKeyedString(parameters, "password", NSClientAgentConfig.DEFAULT_PASSWORD);
String params = ParameterMap.getKeyedString(parameters, "parameter", null);
int critPerc = ParameterMap.getKeyedInteger(parameters, "criticalPercent", 0);
int warnPerc = ParameterMap.getKeyedInteger(parameters, "warningPercent", 0);
TimeoutTracker tracker = new TimeoutTracker(parameters, DEFAULT_RETRY, DEFAULT_TIMEOUT);
// Get the address we're going to poll.
InetAddress ipAddr = svc.getAddress();
for (tracker.reset(); tracker.shouldRetry() && serviceStatus != PollStatus.SERVICE_AVAILABLE; tracker.nextAttempt()) {
try {
tracker.startAttempt();
// Create a client, set up details and connect.
NsclientManager client = new NsclientManager(InetAddressUtils.str(ipAddr), port, password);
client.setTimeout(tracker.getSoTimeout());
client.setPassword(password);
client.init();
// Set up the parameters the client will use to validate the
// response.
NsclientCheckParams clientParams = new NsclientCheckParams(critPerc, warnPerc, params);
// Send the request to the server and receive the response.
response = client.processCheckCommand(NsclientManager.convertStringToType(command), clientParams);
// Now save the time it took to process the check command.
responseTime = tracker.elapsedTimeInMillis();
if (response == null) {
continue;
}
if (response.getResultCode() == NsclientPacket.RES_STATE_OK) {
serviceStatus = PollStatus.SERVICE_AVAILABLE;
reason = response.getResponse();
} else if (response.getResultCode() == NsclientPacket.RES_STATE_CRIT) {
serviceStatus = PollStatus.SERVICE_UNAVAILABLE;
reason = response.getResponse();
// set this to null so we don't try to save data when the node is down
responseTime = null;
}
} catch (NsclientException e) {
LOG.debug("Nsclient Poller received exception from client", e);
reason = "NsclientException: " + e.getMessage();
}
}
// end for(;;)
return PollStatus.get(serviceStatus, reason, responseTime);
}
use of org.opennms.protocols.nsclient.NsclientCheckParams in project opennms by OpenNMS.
the class NSClientCollector method collect.
/** {@inheritDoc} */
@Override
public CollectionSet collect(CollectionAgent agent, Map<String, Object> parameters) {
CollectionSetBuilder builder = new CollectionSetBuilder(agent);
builder.withStatus(CollectionStatus.FAILED);
// Find attributes to collect - check groups in configuration. For each,
// check scheduled nodes to see if that group should be collected
NsclientCollection collection = (NsclientCollection) parameters.get(NSCLIENT_COLLECTION_KEY);
NSClientAgentConfig agentConfig = (NSClientAgentConfig) parameters.get(NSCLIENT_AGENT_CONFIG_KEY);
NSClientAgentState agentState = new NSClientAgentState(agent.getAddress(), parameters, agentConfig);
if (collection.getWpms().getWpm().size() < 1) {
LOG.info("No groups to collect.");
builder.withStatus(CollectionStatus.SUCCEEDED);
return builder.build();
}
// All node resources for NSClient; nothing of interface or "indexed resource" type
NodeLevelResource nodeResource = new NodeLevelResource(agent.getNodeId());
for (Wpm wpm : collection.getWpms().getWpm()) {
// A wpm consists of a list of attributes, identified by name
if (agentState.shouldCheckAvailability(wpm.getName(), wpm.getRecheckInterval())) {
LOG.debug("Checking availability of group {}", wpm.getName());
NsclientManager manager = null;
try {
manager = agentState.getManager();
manager.init();
NsclientCheckParams params = new NsclientCheckParams(wpm.getKeyvalue());
NsclientPacket result = manager.processCheckCommand(NsclientManager.CHECK_COUNTER, params);
manager.close();
boolean isAvailable = (result.getResultCode() == NsclientPacket.RES_STATE_OK);
agentState.setGroupIsAvailable(wpm.getName(), isAvailable);
LOG.debug("Group {} is {}available ", wpm.getName(), (isAvailable ? "" : "not"));
} catch (NsclientException e) {
LOG.error("Error checking group ({}) availability", wpm.getName(), e);
agentState.setGroupIsAvailable(wpm.getName(), false);
} finally {
if (manager != null) {
manager.close();
}
}
}
if (agentState.groupIsAvailable(wpm.getName())) {
// Collect the data
try {
NsclientManager manager = agentState.getManager();
// Open the connection, then do each
manager.init();
for (Attrib attrib : wpm.getAttrib()) {
NsclientPacket result = null;
try {
NsclientCheckParams params = new NsclientCheckParams(attrib.getName());
result = manager.processCheckCommand(NsclientManager.CHECK_COUNTER, params);
} catch (NsclientException e) {
LOG.info("unable to collect params for attribute '{}'", attrib.getName(), e);
}
if (result != null) {
if (result.getResultCode() != NsclientPacket.RES_STATE_OK) {
LOG.info("not writing parameters for attribute '{}', state is not 'OK'", attrib.getName());
} else {
// Only numeric data comes back from NSClient in data collection
builder.withNumericAttribute(nodeResource, wpm.getName(), attrib.getAlias(), NumericAttributeUtils.parseNumericValue(result.getResponse()), attrib.getType());
}
}
}
builder.withStatus(CollectionStatus.SUCCEEDED);
// Only close once all the attribs have
manager.close();
// been done (optimizing as much as
// possible with NSClient)
} catch (NsclientException e) {
LOG.error("Error collecting data", e);
}
}
}
return builder.build();
}
Aggregations