Welcome to Pandora FMS Community › Forums › Community support › Multiple WMI columns in 1 graph
-
Multiple WMI columns in 1 graph
Posted by PhoenixWeasel on February 8, 2010 at 08:54Can I put multiple WMI columns in 1 graph?
For instance, I want to do disk reads/writes in the same graph:
SELECT DiskReadsPerSec,DiskWritesPerSec FROM Win32_PerfRawData_PerfDisk_PhysicalDisk WHERE Name=’_Total’
I tried a comma in the wmicolumn line:
module_wmicolumn DiskReadsPerSec,DiskWritesPerSec
That didn’t work. I tried 2 separate lines and it only picked up the first one.
Thanks for any help!
aitor replied 14 years, 6 months ago 3 Members · 3 Replies -
3 Replies
-
-
::
Would I still be able to add the WMI queries to the agent conf file or do I have to add them through the pandora web interface? I was unable to get WMI to work through the web interface, but they work fine from the local agent.
I can query remote servers with wmic, so I’m not sure why it doesn’t work.
-
::
i have the same problem.
but i don`t want to do a graph, i only want to have the information in one line. i want to have the windows version, service pack version and R2 in one line. is this posible?
#Version de Windows
module_begin
module_name Version Windows
module_type generic_data_string
module_wmiquery SELECT Caption,OtherTypeDescription,ServicePackMajorVersion FROM Win32_OperatingSystem
module_wmicolumn Caption, OtherTypeDescription, ServicePackMajorVersion
module_end