How does Site24x7 detect the network interface status of a Linux server?
Site24x7's Linux server monitoring agent checks the network interface status of your server using the below command:
/bin/cat /sys/class/net/<interface_name>/operstate
This command has three possible outputs:
- Up - Indicates that data transfer is happening through this interface.
- Down - Indicates that data transfer is not happening through this interface.
- Unknown - Some drivers do not report link state, usually due to hardware limitations. In these cases, the state is shown as Unknown.
It is important to note that Site24x7 does not use the ifconfig command (example: ifconfig -a ). This is because the ifconfig command only states whether the network interface has a connection or not and doesn't state whether there is any data transfer happening through that interface.
Related Articles
How to configure the NGINX status page for monitoring NGINX performance
The NGINX plugin uses the NGINX status page to pull the performance metrics of the NGINX server. You may encounter the following errors while installing the NGINX plugin integration: Error_code : HTTP Error 404: This error usually indicates that the ...
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 ...
Monitor and validate DNS IP changes using regex
DNS administrators often monitor their DNS servers to detect changes in domain resolution and ensure IP mappings remain secure and accurate. Problem When your organization adds or modifies an IP address for your domain name, it’s critical to: Be ...
Possible reasons for website unavailability
Site24x7 monitors the availability of your website by sending an HTTP request to the webserver and checks the status code of the returned response. A 200 OK success response indicates that the website is available. We will consider a website ...