AppInsights相当于规格

时间:2018-04-10 09:36:35

标签: azure azure-functions azure-application-insights

Azure Application Insights是否有相当于StatsD的度量标准类型?

我正在使用TelemetryClient的TrackMetric方法定期检查和报告Azure功能中的指标。

我希望在Metrics Explorer中看到连续的行而不是像跷跷板一样的图表(如果发送的值为0或者没有发送值,则很难理解)

1 个答案:

答案 0 :(得分:1)

我使用了@ peter-bons的建议,并设置了一个类似于此的Google Analytics查询:

customMetrics
| where name == "my_metric_count" 
| where timestamp > ago(4h)
| summarize sum(value) by bin(timestamp, 15m)