Azure Monitor Distro for OpenTelemetry Python
Перейти к файлу
Jakub Oleksy 2eee6a34c3 Removing instructions for adding an instrumentation key which were moved to the Home wiki. 2014-11-20 17:02:47 -08:00
applicationinsights Initial module commit. 2014-11-20 16:21:18 -08:00
tests Initial module commit. 2014-11-20 16:21:18 -08:00
.gitignore Initial module commit. 2014-11-20 16:21:18 -08:00
DESCRIPTION.rst Initial module commit. 2014-11-20 16:21:18 -08:00
LICENSE.txt Initial module commit. 2014-11-20 16:21:18 -08:00
MANIFEST.in Initial module commit. 2014-11-20 16:21:18 -08:00
Microsoft.ApplicationInsights.pyproj Initial module commit. 2014-11-20 16:21:18 -08:00
Microsoft.ApplicationInsights.sln Initial module commit. 2014-11-20 16:21:18 -08:00
README.md Removing instructions for adding an instrumentation key which were moved to the Home wiki. 2014-11-20 17:02:47 -08:00
setup.cfg Initial module commit. 2014-11-20 16:21:18 -08:00
setup.py Initial module commit. 2014-11-20 16:21:18 -08:00

README.md

Application Insights for Python

Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python's elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting and rapid application development in many areas on most platforms. -- The Python Tutorial - Introduction

This project extends the Application Insights API surface to support Python. Application Insights is a service that allows developers to keep their application available, performing and succeeding. This Python module will allow you to send telemetry of various kinds (event, trace, exception, etc.) to the Application Insights service where they can be visualized in the Azure Portal.

Requirements

Python 2.7 and Python 3.4 are currently supported by this module.

For opening the project in Microsoft Visual Studio you will need Python Tools for Visual Studio.

Installation

To install the latest release you can use pip.

$ pip install applicationinsights

Usage

Once installed, you can send telemetry to Application Insights. Here are a few samples.

Note: before you can send data to you will need an instrumentation key. Please see the Getting an Application Insights Instrumentation Key section for more information.

Sending a simple event telemetry item

from applicationinsights import TelemetryClient
tc = TelemetryClient()
tc.context.instrumentationKey = "<YOUR INSTRUMENTATION KEY GOES HERE>"
tc.trackEvent("Test event")

Sending an event telemetry item with custom properties and measurements

from applicationinsights import TelemetryClient
tc = TelemetryClient()
tc.context.instrumentationKey = "<YOUR INSTRUMENTATION KEY GOES HERE>"
tc.trackEvent("Test event", { "foo": "bar" }, { "baz": 42 })

Sending a trace telemetry item with custom properties

from applicationinsights import TelemetryClient
tc = TelemetryClient()
tc.context.instrumentationKey = "<YOUR INSTRUMENTATION KEY GOES HERE>"
tc.trackTrace("Test trace", { "foo": "bar" })

Sending a metric telemetry item

from applicationinsights import TelemetryClient
tc = TelemetryClient()
tc.context.instrumentationKey = "<YOUR INSTRUMENTATION KEY GOES HERE>"
tc.trackMetric("My Metric", 42)

Sending an exception telemetry item with custom properties and measurements

from applicationinsights import TelemetryClient
tc = TelemetryClient()
tc.context.instrumentationKey = "<YOUR INSTRUMENTATION KEY GOES HERE>"
try:
    raise Exception("blah")
except Exception as e:
    tc.trackException(e, { "foo": "bar" }, { "x": 42 })

Configuring context for a telemetry client instance

from applicationinsights import TelemetryClient
tc = TelemetryClient()
tc.context.instrumentationKey = "<YOUR INSTRUMENTATION KEY GOES HERE>"
tc.context.application.id = "My application"
tc.context.application.ver = "1.2.3"
tc.context.device.id = "My current device"
tc.context.device.oemName = "Asus"
tc.context.device.model = "X31A"
tc.context.device.type = "Other"
tc.context.user.id = "santa@northpole.net"
tc.trackTrace("My trace with context")

Configuring channel related properties

from applicationinsights import TelemetryClient
tc = TelemetryClient()
# flush telemetry every 30 seconds (assuming we don't hit maxQueueItemCount first)
tc.channel.sender.sendIntervalInMilliseconds = 30 * 1000
# flush telemetry if we have 10 or more telemetry items in our queue
tc.channel.sender.maxQueueItemCount = 10