Skip to main content

Lightweight Application Performance Monitoring middleware that measures and reports performance data to HowFast APM.

Project description

Light instrumentation of your Python server for reporting performance data to HowFast APM.

Install

To install / update the module:

pip install howfast-apm[flask]

Usage

Only the Flask middleware is currently available.

from howfast_apm import HowFastMiddleware

# Create your Flask app
app = Flask(__name__, ...)

# Instanciate all your other middlewares first

# Setup the APM middleware last, so that it can track the time spent inside other middlewares
HowFastMiddleware(app, app_id=HOWFAST_APM_DSN)

Configuration

You can configure the APM through environment variables. If they are defined, those variables will be used. Parameters passed to the HowFastMiddleware constructor take precedence over environment variables.

Only one variable is available for now:

  • HOWFAST_APM_DSN: The DSN (application identifier) that you can find on your APM dashboard. Can also be passed to the constructor as app_id.

If the environment variable is defined you can then use:

# Install the middleware
HowFastMiddleware(app)

You can also choose to exclude some URLs from reporting:

# Do not report performance data for some URLs
HowFastMiddleware(
    app,
    endpoints_blacklist=['/some/internal/url/'],
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

howfast-apm-0.2.0.tar.gz (6.0 kB view hashes)

Uploaded Source

Built Distribution

howfast_apm-0.2.0-py3-none-any.whl (6.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page