Intermapper probe

I managed to get a custom Intermapper probe worked up! This will check the available cache-buffers for a netware server, and set a warning/alarm threshold for it. Nifty! Not much production use quite yet since it is new, but it does seem to work as advertised.

<header>
type = "custom-snmp"
package = "edu.wwu.ts.netware.cb"
probe_name = "snmp.custom.netware.cachememory"
human_name = "Netware cache-memory monitoring"
version = 0.3
address_type = "IP,AT"
port_number = "161"
</header>

<parameters>
"CBCacheWarn" = "128000"
"CBCacheAlert" = "64000"
</parameters>


<snmp-device-variables>
memCacheMemoryFree, 1.3.6.1.4.1.23.2.79.1.3.0, INTEGER, "Available cache buffers"
</snmp-device-variables>

<snmp-device-thresholds>
alarm: ${memCacheMemoryFree} < ${CBCacheAlert} "Cache Buffers critically short"
warning: ${memCacheMemoryFree} < ${CBCacheWarn} "Cache Buffers getting short"
</snmp-device-thresholds>

<snmp-device-display>

\B5\NetWare Memory Thresholds\OP \4\Memory in Cache Buffers:\O\ ${memCacheMemoryFree} 4kb buffers

</snmp-device-display>