python application insights azure

Solutions on MaxInterview for python application insights azure by the best coders in the world

showing results for - "python application insights azure"
Jana
21 Apr 2018
1pip install applicationinsights
2from applicationinsights import TelemetryClient
3tc = TelemetryClient('<YOUR INSTRUMENTATION KEY GOES HERE>')
4tc.track_event("Test event")
5tc.flush()
6