我开发了一个java应用程序,它将自定义指标数据作为
发送到Azure Application InsightsTelemetryClient azureNbClient = new TelemetryClient();
MetricTelemetry metric = new MetricTelemetry();
metric.metric.setName("name");
metric.setValue("value");
azureNbClient.trackMetric(metric);
但是数据未在Azure中上传。 将数据发送到Azure所需的设置是什么。执行它时我也没有得到任何例外。
您能告诉我所需的配置吗?根据Azure提供的文档,以下端口需要打开。我们究竟需要为此设置做些什么? 确保您的防火墙允许您的应用程序将遥测发送到这些端口:
答案 0 :(得分:2)
关于向Application Insights发送遥测所需的设置,this article详细介绍了所需的设置和配置信息。
假设您已完成文章中的步骤,但仍无法在Application Insights中查看遥测,请尝试以下操作:
希望这有帮助,
Harel的