mirror of
https://github.com/opinkerfi/nagios-plugins.git
synced 2024-11-05 01:53:44 +01:00
Added performance counter for mode check_disks
mode check_disks will output performance data "| 'Good Disks'=60" It just counts all disks with operationalstate == good
This commit is contained in:
parent
553a182dd1
commit
3f44b6bf01
@ -497,6 +497,7 @@ def check_generic(command="ls disk full", namefield="objectname", perfdata_field
|
||||
usedstoragespacegb = 0
|
||||
occupancyalarmlvel = 0
|
||||
warninggb = 0
|
||||
gooddisks = 0
|
||||
for i in objects:
|
||||
systemname = i['systemname']
|
||||
# Some versions of commandview use "objectname" instead of namefield
|
||||
@ -528,6 +529,12 @@ def check_generic(command="ls disk full", namefield="objectname", perfdata_field
|
||||
add_perfdata("'%s%s'=%s " %
|
||||
(identifier, field, i.get(field, None)))
|
||||
|
||||
# Count disks with operationalstate good
|
||||
if command == "ls disk full":
|
||||
if i['operationalstate'] == 'good':
|
||||
gooddisks += 1
|
||||
perfdata = "'Good Disks'=" + str(gooddisks)
|
||||
|
||||
# Disk group gets a special perfdata treatment
|
||||
if command == "ls disk_group full":
|
||||
totalstoragespacegb = float(i['totalstoragespacegb'])
|
||||
|
Loading…
Reference in New Issue
Block a user