Microsoft Azure Application Insights integration for Flask.
Project description
flask_applicationinsights
Flask extension for Microsoft Azure Application Insights.
Make your Flask application able to send tracking information to an Application Insights Azure component.
Dependencies
- flask>=1.0.2
- applicationinsights==0.11.6
If you are encountering locale issues with application insights, please check this hack: https://github.com/Azure/azure-cli-shell/issues/63
Usage
Retrieve package from pypi:
pip install flask_applicationinsights
Instrumentation key can be provided programmatically as well as by environment variable or flask configuration key. Key name is
APPINSIGHTS_INSTRUMENTATION_KEY
.
Basic
Will track all requests (succeeded or failed) to your application insight referenced by its instrumentation key.
from flask import Flask
from flask_applicationinsights import ApplicationInsights
app = Flask(__name__)
insight = ApplicationInsights(instrumentation_key='<yours>')
insight.init_app(app)
@app.route('/')
def index():
return 'HIT'
app.run()
Advanced
You can also add custom properties or measurements to each tracked request by using special decorators.
...
insight = ApplicationInsights(...)
...
@insight.properties
def custom_properties(req: Request, resp: Response):
return {
'req_pragma': req.headers.get('Pragma'),
'resp_charset': resp.charset
}
Contribution
Not open yet due to initial WIP.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file Flask-ApplicationInsights-0.2.6.tar.gz
.
File metadata
- Download URL: Flask-ApplicationInsights-0.2.6.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1ef0cba5e72c9962e2c425322235648c1cd0612dae5c72d3d95dd584a403dbe |
|
MD5 | d934f5a26293b9c3e21ce328d53c3e7d |
|
BLAKE2b-256 | 8ea1dd536ff2ec4f1bc2f577cf5fda800e7279b5ba157aa1f1d723276588134b |