Answers for "logging exceptions into app insights from console application"

0

logging exceptions into app insights from console application

// you may use different options to create configuration as shown later in this article
TelemetryConfiguration configuration = TelemetryConfiguration.CreateDefault();
configuration.InstrumentationKey = " *your key* ";
var telemetryClient = new TelemetryClient(configuration);
telemetryClient.TrackTrace("Hello World!");
Posted by: Guest on September-29-2020

Code answers related to "logging exceptions into app insights from console application"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language