我有一个应用程序洞察组件,它从我的应用程序中收集一些自定义指标并发送指标警报。 我想自定义度量标准警报消息以包括自定义维度..等。 有没有办法做到这一点?
例如,以下示例显示了我如何创建自定义指标。我希望在警报中显示属性(message,customdata)。
MetricTelemetry metricLogEntry = new MetricTelemetry("logEntry", 0, 10, 0, 0, 0);
metricLogEntry.Properties.Add("message", string.Format("INFO - started fireLogEntryTwo"));
metricLogEntry.Properties.Add("customData", string.Format("id: {0}, methodName: {1}", id, methodName));
tClient.TrackMetric(metricLogEntry);
答案 0 :(得分:0)
目前,无法在度量标准值上自定义内置警报的内容。
您可以使用Microsoft Flow和Application Insights连接器或其他类似工具来生成所需的内容。