I have a NAGIOS check that monitors virtual memory on a windows machine, this check returns all the virtual memory used (physical+ max size of the pagefile).
This is not what I want, I have tried to search for some checks that only monitor the pagefile usage on a windows machine but I didn't find anything intersting.
Are you aware of any SNMP check that monitor if the pagefile is used or not by windows?
WMI
You can access WMI parameters directly with WMI client installed on Linux machine:
Compile and install wmi-client package manually or use compiled packages from www.orvant.com it seem to work with newer versions of Ubuntu as well (14.04 64bit).
Here is an example of wmic usage from command line:
Now create Nagios Plugin. Examples of using wmic is here. Here is the guide how to create your own Nagios plugin, change it for work with wmic. You'll have something like this:
You can access WMI via Python from Linux.
SNMP
If you prefer SNMP you need to install WMI-to-SNMP gateway like SNMP Informant - Advanced on your Windows machine to be able to collect system information including memory and swap. Essentially, this tool provides SNMP MIBs for the system-level WMI instrumentation, which in turn allows the WMI data to be queried by any SNMP management station. It is supported on Windows XP/Vista/2000/2003 and 2008 Servers and allows you to access data from all (over 2000) of the counters.
NSClient
Use NSClient++ on Windows to monitor pagefile.sys size. You need to install NSClient++ as a service. With this plugin for Windows machines you can monitor all other parameters as well. For example you can monitor free memory. There is no need for mayor adaptations in the NSC.ini config file on Windows machine.
Check the size of the pagefile.sys and make sure it stays above 1 gigabyte. Sample Command:
Nagios Configuration:
From Commandline (with NRPE):
Or with check_paging_file plugin on host side with NSClient++.
Yeah, sadly, I think you're going to end up installing nsclient++.
My first thought was to just write a vbscript or powershell script to check the size of the page file, but my first attempts returned null results because Windows is managing my pagefile. Apparently, this is a common thing.
However, this plugin appears to work. It's also a lot more comprehensive than the quick scribble I attempted. Perhaps this will solve your problem.
You don't state which plugin you're using, but there's no reason you can't use SNMP to check the "Virtual Memory" usage. For example, when you walk this tree (
1.3.6.1.2.1.25.2
) against a Windows 2008 server with SNMP, you'll see output that includes something like this:It seems that perhaps the plugin you're using is combining both the
physical memory
and thevirtual memory
value into a single check?Maybe you just need a different SNMP plugin. There's an entire Memory category on Nagios Exchange, including some that explicitly list Windows usage. Shop around.
If you can't find an SNMP plugin that does what you want, there are other options...
Since you state that using a Nagios agent (nsclient++) isn't possible, a better method would be to use WMI. Microsoft only implements the bare minimum of SNMP support, but you can check literally everything about a Windows server via WMI. They have an entire WMI object for pagefile usage, for example.
There are lots of WMI checks available on Nagios Exchange (or Monitoring Exchange), like checkwmiplus, check_wmic, or (if you're dealing with many Windows boxes) perhaps nagios-wsc.
And here is some information about setting up WMI correctly for remote access.
You might want to give this question a read; it seems that the numbers you get from SNMP might not be accurate in this case.
Is this okay for you?
Command:
Service:
NSClient++ 0.4.3 has a built in check_pagefile which can be used to monitors page file utilization.