How are the metrics calculated in agentless server monitoring?
SNMP server monitoring
Metrics such as CPU, Memory, and Disk utilization are collected via SNMP using the OIDs given below:
Attribute | OID |
CPU | .1.3.6.1.2.1.25.3.3.1.2 |
Memory | .1.3.6.1.2.1.25.5.1.1.2 |
Disk | .1.3.6.1.2.1.25.2.3.1.6 |
Free Disk Space (MB) | (.1.3.6.1.2.1.25.2.3.1.4.1*(.1.3.6.1.2.1.25.2.3.1.5.1-.1.3.6.1.2.1.25.2.3.1.6.1))/(1048576) |
Used Disk Space (MB) | (.1.3.6.1.2.1.25.2.3.1.4.1*.1.3.6.1.2.1.25.2.3.1.6.1)/(1048576) |
Disk Partition | (.1.3.6.1.2.1.25.2.3.1.6.1*100/.1.3.6.1.2.1.25.2.3.1.5.1) |
If you do not see the metrics being displayed in the web client, please check if the server responds to SNMP GET requests for the above mentioned OIDs as described here. WMI server monitoring
CPU, Memory, and Disk metrics are collected using the queries given below:
Metric | WMI Query |
CPU Metrics | SELECT LoadPercentage, DeviceID FROM Win32_Processor |
Memory Metrics | SELECT FreePhysicalMemory,TotalVisibleMemorySize FROM Win32_OperatingSystem |
Disk Metrics | Select * from Win32_LogicalDisk where DriveType=3 or DriveType=4 |
You can execute WMI queries as described
here.
Individual disk metrics:
Individual disk metrics are collected by executing the Visual Basic Script available in the following path:
{Site24x7 On-Premise Poller installed directory}/NetworkPlus/conf/OpManager/application/scripts/disk.vbs
To test the above, execute the file in the Command Prompt (as Administrator) as follows:
disk.vbs <Target IP/Host Name> <UserName> <Password>
Related Articles
Security for Site24x7 Agentless Server Monitoring
How is performance data sent from the user environment to the Site24x7 Data Center? The On-Premise Poller uses a HTTPS connection to send performance data from the user environment to the Site24x7 Data Center. Do I need to whitelist any ...
How do I configure a non-administrative user for windows management instrumentation (WMI) access?
If you're a user with administrator privileges on the server to be monitored, then you'll be able to connect to windows management instrumentation (WMI) by default. However, if you're a user with standard privileges, you must configure the user for ...
Checking WMI reachability
To check WMI reachability From your On-Premise Poller installed Windows machine, go to Start > Run > wbemtest.exe and run it as an administrator. In the Windows Management Instrumentation Tester screen, click Connect. Enter the following in the ...
Comparison between Site24x7 VMware Monitoring and VM monitoring using Site24x7 server agent
Site24x7 VMware Monitoring capabilities Site24x7 VMware monitoring is agentless. An On-Premise Poller acts as a probe to collect data and sends it to Site24x7. With Site24x7 VMware Monitoring, you will be able to: Monitor vCenter Monitor VMware ...
How to check the SNMP reachability of network devices
Site24x7's On-Premise Poller uses SNMP to monitor and collect performance metrics from monitored devices. You can check if a network device or a server is reachable through SNMP from the On-Premise Poller using: Site24x7's MIB browser The MIB browser ...