Check manual page of mem.winMay 02. 2012
mem.winAuthor: Mathias Kettner License: GPL Distribution: official part of Check_MK Supported Agents: Windows This check measures the current usage of physical RAM and
of the Windows page file.
ItemNone
Check parameters
Performance dataTwo variables: memory: the current memory usage in MB, pagefile: the
current page file usage in MB.
Inventorymem.win creates one check for each host that provides
data about the page file. If that information is missing,
a Unix-like system is assumed and the check mem.used is
being used instead.
Configuration variables
Examplesmain.mk
# Set the default levels
memory_win_default_levels = {
"memory" : (80.0, 90.0), # alert at 80%/90% usage
"pagefile" : (2048, 1024), # alert, if less then 2/1 GB free
}
# Disable memory levels for all hosts with the tag "test"
check_parameters += [
( { "memory" : (101.0, 101.0) },
[ "test" ], ALL_HOSTS, [ "Memory and pagefile" ] ),
]
|
| ||||||||||||||||||||||||