我想通过Azure Application Insights SDK将自定义性能计数器和性能计数器数据插入云服务,虚拟机性能计数器。
我们如何使用Application Insights SDK将性能计数器数据添加到虚拟机的性能计数器中。我们可以使用Application Insights吗?
答案 0 :(得分:0)
见Customize performance counter collection。
例如,对于JMX PC,您可以使用:)更新ApplicatonInsights.xml:
<PerformanceCounters>
<Windows>
<Add displayName="Process User Time" categoryName="Process" counterName="%User Time" instanceName="__SELF__" />
</Windows>
</PerformanceCounters>
例如,对于Windows PC,您可以使用以下内容更新ApplicatonInsights.xml:
{{1}}
您可以阅读文章中的参数说明。