'# Windows disk usage monitorization plugin for Pandora FMS agent '# Author: Manuel A. GulĂ­n Bejarano '# Version: 1.0 '# Date: 22/04/2013 '# '# This program is free software: you can redistribute it and/or modify '# it under the terms of the GNU General Public License as published by '# the Free Software Foundation, either version 3 of the License, or '# (at your option) any later version. '# '# This program is distributed in the hope that it will be useful, '# but WITHOUT ANY WARRANTY; without even the implied warranty of '# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the '# GNU General Public License for more details. '# '# You should have received a copy of the GNU General Public License '# along with this program. If not, see . '# '# '# Load with: '# module_plugin cscript.exe //B "%ProgramFiles%\pandora_agent\util\diskusage_plugin.vbs" Option Explicit On Error Resume Next ' Variables Dim objWMIService, objItem, colItems, argc, argv, i, Percent ' Parse command line parameters argc = Wscript.Arguments.Count Set argv = CreateObject("Scripting.Dictionary") For i = 0 To argc - 1 argv.Add Wscript.Arguments(i), i Next ' Get drive information Set objWMIService = GetObject ("winmgmts:\\.\root\cimv2") Set colItems = objWMIService.ExecQuery ("Select * from Win32_LogicalDisk") For Each objItem in colItems If argc = 0 Or argv.Exists(objItem.Name) Then ' Include only harddrivers (type 3) If (objItem.FreeSpace <> "") AND (objItem.DriveType =3) Then '# Module to get the total size of a disk in megabytes Wscript.StdOut.WriteLine "" Wscript.StdOut.WriteLine " " Wscript.StdOut.WriteLine " " Wscript.StdOut.WriteLine " generic_data" Wscript.StdOut.WriteLine " MB" Wscript.StdOut.WriteLine " 0" Wscript.StdOut.WriteLine " " Wscript.StdOut.WriteLine "" Wscript.StdOut.flush '# Module to get the used size of a disk in megabytes Wscript.StdOut.WriteLine "" Wscript.StdOut.WriteLine " " Wscript.StdOut.WriteLine " " Wscript.StdOut.WriteLine " generic_data" Wscript.StdOut.WriteLine " MB" Wscript.StdOut.WriteLine " 0" Wscript.StdOut.WriteLine " " Wscript.StdOut.WriteLine "" Wscript.StdOut.flush '# Module to get the percentage of size used Percent = round (100 - (objItem.FreeSpace / objItem.Size) * 100, 2) Wscript.StdOut.WriteLine "" Wscript.StdOut.WriteLine " " Wscript.StdOut.WriteLine " " Wscript.StdOut.WriteLine " generic_data" Wscript.StdOut.WriteLine " MB" Wscript.StdOut.WriteLine " 85" Wscript.StdOut.WriteLine " 89.9" Wscript.StdOut.WriteLine " 90" Wscript.StdOut.WriteLine " 100" Wscript.StdOut.WriteLine " 0" Wscript.StdOut.WriteLine " " Wscript.StdOut.WriteLine "" Wscript.StdOut.flush End If End If Next