Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

Naptor

Current Version
1.0.0
Last Release Date
2017-08-24
Compatible With
  • Nagios 1.x
  • Nagios 2.x
  • Nagios 3.x
  • Nagios 4.x
License
GPL
Hits
69217
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
Naptor
Naptor is Nagios Application Monitor, for help you monitoring your backend application process. You can use this application only on same server (your application and nagios server must be in same server).
Naptor is Nagios Application Monitor, for help you monitoring your backend application process. You can use this application only on same server (your application and nagios server must be in same server). To remote monitoring under developing.

You can embed naptor to your application at folder class, after installing you add class, like (php, c, c++, etc still need help to develop for other programming language)

HOW TO USE

Using Terminal/Console, you can point your application to exec naptor

naptor -a "AppName" -i "Info state" -s [stateid]

naptor -a "Firefox" -i "Updating patch 20/250 - 9%" -s 0

a : application name

i : your application information state

s : state id (Nagios state id 0: ok, 1: Warning, 2: Critical)

Using class inside class folder, for example when using php:

require_once("class.naptor.php");

$naptor = new phpnaptor();

$naptor->start("Rezero"); //add new service application name

$naptor->write(0, "Rezero begin to extracting files 1002235/82931874 "); //state id =0 and information state

$naptor->write(2, "Rezero autocrawling fail ");

After you add naptor to your application, you can check via web to monitoring your application state using browser http://localhost/nagiosmain/ and then select Services in left menu. New application service will be added at your nagios service list.