How is the disk utilization calculated for a Linux server monitor?
 
  Disk utilization (both total disk utilization and partition disk utilization) is calculated by executing the following command:
 
 
   
    
     df -l -T
    
  
  
  
 
  Consider the following sample output:
 
  
   
    disk_used_percent = (used_disk/total_disk) * 100
    
 
 
 
  where,
 
 
  used_disk = sum of the used spaces of all disk partitions
 
 
  total_disk = sum of the used and available spaces of all disk partitions (Used + Available)
 
 
 
 Note: The resulting value will be rounded off to two floating point values.
 
 
 
 
- Related Articles
- 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 ... 
- Amendments to Site24x7 Monitor Names- We've recently renamed a few of our Monitors to help keep in sync with the current IT and DevOps trends. The new monitor names are designed to correctly resonate with the IT & DevOps crowd. We've made necessary changes in the Web client, Help ... 
- How is the basic and advanced monitor count calculated in the Site24x7 web client?- Site24x7 licensing and pricing works based on the type of monitor. Monitors are classified as basic and advanced monitors. The Super Admins can view a detailed breakdown of license usage with License Usage Summary. The monitors in your Site24x7 ... 
- Monitor count- Monitor count refers to the number of websites or servers you add for monitoring. If you add ESX servers, Site24x7 automatically discovers all the available VMs on each ESX server and count it as a separate VM monitor, thus increasing your total ... 
- Resolving huge disk space issues with the On-Premise Poller and Network Module- Often huge disk space results from the heap dump files in the NetworkPlus/bin directory of the On-Premise Poller.  What are HPROF files? HPROF files are used to store Java virtual machine (JVM) memory dumps. When a JVM runs out of memory (OOM), it ...