作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道 Azure Application Insights 可以在 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>
如何实际将“可用磁盘空间”和“可用磁盘空间 %”性能计数器添加到此文件?
另外,旁注,我希望 Application Insights 已经收集了这个,有点令人惊讶的是我们必须花这么长时间来添加它。
非常感谢任何有关此问题的帮助!
最佳答案
请尝试在 ApplicationInsights.config 中进行以下设置:
<Counters>
<Add PerformanceCounter="\LogicalDisk(_total)\% Free Space" ReportAs="the space perc"/>
<Add PerformanceCounter="\LogicalDisk(_total)\Free Megabytes" ReportAs="the space left"/>
</Counters>
关于c# - 如何将磁盘可用空间性能计数器添加到 Azure Application Insights?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52460892/
我是一名优秀的程序员,十分优秀!