Network File System not getting detected

Copper Contributor

Hi Guys,

I have forwarded the on-premises Linux servers performance metrics to my azure log analytics work space using OMS Agent. I can see all the disks on my azure workspace for that Linux servers except NFS disks ("Network File System" ) drives of that servers. Does anyone has any clue on this?

1 Reply

@roopesh_shetty 

 

Log Analytics has both Logical and Physical disk counters for Linux, but not suggested ones for NFS.  Sorry I don't know how you add them to Linux.  This would show your Linux servers and counters 

Perf
| project CounterName , CounterValue , Computer 
// Gte Linuc servers only
| join (
    Heartbeat
    | where OSType == "Linux"
) on Computer 
| summarize count() by Computer, CounterName, CounterValue  
| sort by CounterValue desc 

Doc: https://docs.microsoft.com/en-us/azure/azure-monitor/platform/data-sources-performance-counters