I know that Azure Application Insights can collect additional performance counters using this syntax in ApplicationInsights.config:
<Counters>
<Add PerformanceCounter="\Process(??APP_WIN32_PROC??)\Handle Count" ReportAs="Process handle count" />
...
</Counters>
PerformanceCounter must be either \CategoryName(InstanceName)\CounterName or \CategoryName\CounterName
-->
</Add>
How do I actually add "Free Disk Space" and "Free Disk Space %" performance counters to this file?
Also, side note, I wish that Application Insights just already collected this, kind of surprising we have to go to these lengths to add it.
Any help with this is greatly appreciated!