Application Insights not tracking sql queries

后端 未结 3 1416
无人及你
无人及你 2020-12-15 01:36

I\'m trying to configure my own environment to send data to App Insight with Status Monitor and works fine except sql queries.

I have one environment on Azure VM wit

3条回答
  •  时光说笑
    2020-12-15 01:54

    You should verify Status Monitor-collected data is making its way to Application Insights.

    In Analytics try the query:

    dependencies | where timestamp > ago(1d) | summarize count() by cloud_RoleInstance, sdkVersion
    

    If you see sdkVersion results prefixed with rddf instead of rddp, the SDK is sending data without the enhancements from Status Monitor (like SQL query content). If this is the case, check your installation of Status Monitor to ensure it's active for your application.

提交回复
热议问题