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
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 ...
Exclude the selective SSH algorithms in On-Premise Poller during SFTP Transfer monitoring
By excluding SSH algorithms, you can restrict Site24x7 SSH Client from using the excluded algorithm while connecting to the SSH server during SFTP Transfer monitoring. Follow the steps mentioned below for SSH algorithm exclusion in On-Premise Poller ...
Executables and scripts to allow for Windows server monitoring
One of the reasons you could not enable Site24x7 server monitoring could be your organization's group policy denying access to the executables, scripts, and batch files associated with Site24x7 server monitoring. Mark the following executables, ...