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) |
| |
| |
| Static Services with fixed ports |
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 |
| Select * from Win32_Process |
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
How to uninstall the Site24x7 Windows Server Monitoring Agent
Method 1: To uninstall the Site24x7 Windows Server Monitoring Agent, click the link below: https://staticdownloads.site24x7.com/server/Site24x7WindowsAgentUninstall.zip Unzip and execute the Uninstall.bat file in the Command Prompt as an ...
Troubleshooting false positive alerts in monitoring
Problem False positive alerts are being generated. Possible cause The monitoring system is down in some locations. The Website monitor might be configured for one location, such as Seattle, but may appear down when accessed from another location, ...
No data for service and process in Windows server monitor
If you see "No Data" for process and service metrics (such as CPU or memory usage of monitored services) in the Site24x7 Windows server monitor user interface, follow the troubleshooting steps below. Run PowerShell Commands Open PowerShell as ...
Response time in Website monitoring
In website monitoring, response time is calculated as the total time taken to resolve the DNS, complete the TCP hand-shake, negotiate an SSL handshake (for HTTPS) and download the full HTML output from the server. However, it does not include getting ...
Monitors that require On-Premise Pollers in Site24x7
Certain monitor types in Site24x7 require the use of On-Premise Pollers for data collection, especially when monitoring internal, firewall-restricted, or private resources. Depending on the type of monitoring, additional modules like the Network ...