1

我正在尝试使用 REST API 来检索 AppInsights 自定义指标并在查询中使用过滤器。

创建指标的代码:

var telemetry = new MetricTelemetry();
telemetry.Context.InstrumentationKey = instrumentationKey;
telemetry.Name = FacebookFupMetricName;
telemetry.Value = amount;
telemetry.Timestamp = DateTime.Now;
telemetry.Properties["agencyCode"] = agencyCode;
telemetry.Properties["accountCode"] = accountCode;
telemetry.Properties["category"] = category;
telemetry.Properties["action"] = action;
var client = new TelemetryClient();
client.TrackMetric(telemetry);
client.Flush();

运行此代码时,会在 Azure 中创建指标。

现在我想使用 REST API 来检索指标并在查询中使用过滤器。当我使用过滤器时

category eq 'cat001'

查询以错误结束

以下维度在此指标的过滤子句中无效:类别

查询网址为:

https://dev.applicationinsights.io/apiexplorer/metrics?appId=<appId>&apiKey=<apiKey>&metricId=customMetrics%2FFacebookFupAction&timespan=P1D&aggregation=sum&filter=category%20eq%20%27cat001%27

问题是,是否可以使用维度过滤自定义指标?

4

1 回答 1

4

在过滤器字段中,您应该使用customDimensions/category eq 'cat001'.

生成的 url 格式如下:

`https://dev.applicationinsights.io/apiexplorer/metrics?appId=<appId>&apiKey=<apiKey>&metricId=customMetrics%2FFacebookFupMetricName&aggregation=sum&filter=customDimensions%2Fcategory%20eq%20'cat001'`

截图如下:

在此处输入图像描述

于 2019-10-17T02:33:42.003 回答