2

我有一个 Azure Application Insight 组件和单独的 Log Analytics 组件,它们从 App Insight 中提取数据。在 Log Analytics 门户中,使用 Log Analytics 查询语言(电源查询),我可以获得 Application Insight 跟踪和自定义事件。

过去 24 小时的自定义事件

自定义事件 | 其中时间戳 >= 以前(24 小时)| 按时间戳顺序排序

过去 24 小时内的痕迹

痕迹 | 其中时间戳 >= 以前(24 小时)| 按时间戳顺序排序

但我无法读取我创建的自定义指标。我不是查询语言专家。谁能告诉我,请问有什么方法可以查询吗?

4

1 回答 1

0

如果自定义指标与事件/跟踪一起发送(例如trackEvent(name, properties, metrics),它们将在or表的customMeasurements属性中。customEventstraces

customEvents | where timestamp >= ago(24h) 
| project timestamp, name, customMeasurements
| order by timestamp desc 

如果自定义指标作为它们自己的“事件”通过 发送trackMetric(name, value, properties),那么您将查看customMetrics表格

customMetrics | where timestamp >= ago(24h) | order by timestamp desc`
于 2018-01-05T20:08:55.380 回答