Nuget

Join the chat at https://gitter.im/Tuatan/ApplicationInsights.Diagnostics

ApplicationInsights.Diagnostics

ApplicationInsights.Diagnostics allows yu to get a list of all the Application Insights verbose traces.

In LINQPad you would do the following:

  • Run LINQpad as administartor
  • Create new query in LINQpad
  • Add ApplicationInsights.Diagnostics nuget package (or just open this linq file if you do not have premium features enabled)
  • Add namespaces: System.Reactive.Linq, ApplicationInsights.Diagnostics.
  • Write the following query:
DiagnosticObservable.Create().Select(i => i.FormattedMessage)

You could find more information how to use it here.