- Solutions
- Backup/synchronization
- Git
- Log files
- Nagios ® World
- Nagwin - Nagios for Windows
- winrpe - Nagios NRPE for Windows
- Nagios NRPE Plugins for Windows
- Security
- Tools
- Online services
- Support
- Store
- Login
Nagwin - Nagios for Windows
Nagwin is a Nagios implementation for Windows systems. It is a packaging of Nagios Core and many other related tools to make it a complete and ready-to-use solution for system monitoring. You can use Nagwin to monitor your IT-infrastructure Nagios-way from Windows.
Nagios is a powerful monitoring system that enables organizations to identify and resolve IT infrastructure problems before they affect critical business processes. Nagios monitors your entire IT infrastructure to ensure systems, applications, services, and business processes are functioning properly. In the event of a failure, Nagios can alert technical staff of the problem, allowing them to begin remediation processes before outages affect business processes, end-users, or customers. Cygwin is a Linux-like environment for Windows. It consists of a DLL (cygwin1.dll), which emulates substantial Linux API functionality, and a collection of tools. Following tools are also a part of Nagwin: Lighttpd, Php, Perl, Net-SNMP, Pnp4Nagios, RRDTool and Blat.
Nagwin free 4.0.0 (20 hosts, 100 services)
Release date:
30/12/2020
component name | component version | component license | component source |
---|---|---|---|
Nagwin free (20 hosts, 100 services) | 4.0.0 |
Nagwin product 4.0.0 (unlimited)
Release date:
30/12/2020
component name | component version | component license | component source |
---|---|---|---|
Nagwin product | 4.0.0 |
Supported platforms : Vista/2008(R2)/7/8/2012(R2)/10/2016/2019
Nagwin comes as a ZIP file containing an installer. Simply unzip your downloaded copy and run the package :
- Accept License agreement.
- (Product edition only) Enter your license key
- Specify an installation location.
- Installation starts to copy files and set up services.
- Enter a password for the nagiosadmin user.
At the end of the installation, it will be possible to start the services and the web interface.
Nagwin contains standard Nagios Core and should be able to monitor any device as long as you have monitoring plugins for it. Nagwin has already a small set of plugins ready to use in the /plugins directory, and there are a large number of plugins available at Nagios Exchange. However, due to Nagwin's limited environment and Windows, there may be a limited support. You need to try and find out yourself.
By default, Nagwin is configured to monitor your local machine. See following pages for some basic examples. Nagios configuration files are located at etc\nagios directory. Main configuration file nagios.cfg is configured to accept all configuration files in the subdirectory nagwin. Consult available Nagios documentation to move forward and extend your implementation. Nagwin FAQs available here can also help.
For notification purposes, you can use blat, which is installed as a part of the package (see Nagios.cfg for examples).
How to monitor Nagwin itself ?
As you use Nagwin to monitor other hosts, you may wonder how the Nagwin itself can be monitored. This can be achieved by checking status.dat file age and existence of key processes. Here is a recipe to establish an out-of-band monitoring of Nagwin:
- Make sure that your Nagwin installation is configured to send notifications. See FAQ for instructions.
- Create bin/check_nagwin.sh script with the content below (Unix-format):
#!/bin/bash
# customize - start
from=from@email.address
server=smtp.server
# customize - end
instroot=$(cygpath -m /)
logdir=/var/log/check_nagwin
mkdir -p $logdir
logfile=$logdir/$(date +"%d").log
echo "***" `date` >> $logfile
# Function to report failure, message body as argument
CheckFail ()
{
printf "$1" | /bin/blat - -to $to -f $from -subject "Nagwin is not operational" -server $server >> $logfile
exit 1
}
# Function to check a process, process name and expected number of instances as arguments
CheckProcess ()
{
/plugins/check_winprocess --filter "imagename eq $1.exe" --compare lt --critical $2 >> $logfile
if (($? > 0)); then
CheckFail "Must be at least $2 $1 process(es) running."
fi
}
# check status.dat age
/plugins/check_winfile --target "$instroot/var/opt/nagios/status.dat" --filter "age lt -15 minutes" --critical 1 --compare eq >> $logfile
if (($? > 0)); then
CheckFail "Nagios status.dat getting old."
fi
# check processes CheckProcess nagios 4
CheckProcess lighttpd 1
printf "\n" >> $logfile
|
You need to customize mail configuration (red) according to your setup. The script above checks if status.dat is updated within the last 15 minutes and if key processes are running with an expected number of intances. It will send an e-mail if any of the criteria are not met. Results from checks will be logged in /var/log/check_nagwin directory in a rotating manner for days of a month.
- Create a Windows scheduled task by using the following command:
schtasks /create /sc minute /mo 15 /tn check-nagwin /tr "nagwin-inst-dir\bin\bash.exe -c /bin/check_nagwin.sh"
This command will create the scheduled task check-nagwin running the script above each 15 minutes.
How can I get notified by e-mail in Nagwin ?
Nagwin has blat smtp mailer included. The first step is to let blat save your smtp server settings for later use:
bin/blat -SaveSettings -f from-address -server your.smtp.server -u login -pw password
- You need also to specify your e-mail address for the contact nagiosadmin in etc/nagios/nagwin/contacts.cfg:
define contact{ |
- As a last step, You need to update smtp server information in two notification commands etc/nagios/nagwin/commands.cfg:
# 'notify-host-by-email' command definition # 'notify-service-by-email' command definition |
Replace smtp.server by name/ip of your smtp server (your Exchange server for example). Make sure that your smtp server is configured to accept smtp requests from Nagwin machine.
- Restart the Nagwin_Nagios service to apply changes.
You can issue the command below to test if your mail notification works:
echo "Test message" | bin\blat - -to mail@address -f from@address -subject "Test mail" -server smtp.server
How can I change the password of nagiosadmin user?
- Open a DOS command prompt
- Change working directory to the Nagwin installation directory\bin
- Run the following command to update the password:
htpasswd2 -b /etc/lighttpd/htpasswd nagiosadmin new-password