Skip to main content

Logs tracing information on a per-request basis

Project description

Flask-Tracy

Flask-Tracy is an extension to Flask that logs tracing information per request.

Time, url, client IP, client name, transaction ID, and request duration are logged as informational to the tracy logger.

Configuration:
  • TRACY_REQURE_CLIENT: (OPTIONAL) configuration boolean used to return a 400 when no client name header (defaults to Trace-ID) is present.

Example:

from flask import Flask
from flask.ext.tracy import Tracy

app = Flask(__name__)
appp.config.from_object('some_file.ini')

Tracy(app)
# To exclude routes from being traced.
#Tracy(app, excluded_routes=['/test/'])


@app.route('/')
def index()
    return "Hello World"

Example Log:

2015-09-17 18:15:16,252 200 http://localhost:5000/ 192.168.100.1 APP_1 0be9d830-5d68-11e5-82d5-0242ac11000e 0.000363

get Flask-Tracy

Install flask

pip install Flask-Tracy

Download the latest release from Python Package Index or clone the repository

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

Flask-Tracy-0.1.3.tar.gz (7.6 kB view hashes)

Uploaded Source

Built Distribution

Flask_Tracy-0.1.3-py3-none-any.whl (12.7 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