Thomas
Thomas

Reputation: 12117

asp.net core - Application Insights : Live metric stream

According to the azure site, in order to do live metric stream you need to install the following package: Microsoft.ApplicationInsights.Web

But this is not a .net core package, but it has dependencies on 4.x; Is there a .net core package somewhere?

From Azure's site: enter image description here

But ther package listed is .Net 4.x and I can't find a .net core version.

Upvotes: 2

Views: 1409

Answers (1)

ZakiMa
ZakiMa

Reputation: 6281

The instructions are a bit out-of-date, thank you for pointing to it!

Latest asp.net core AI SDK (2.2.0-beta3) has Live Metrics by default (https://www.nuget.org/packages/Microsoft.ApplicationInsights.AspNetCore/2.2.0-beta3). We're planning to ship stable version soon.

Upvotes: 5

Related Questions