Skip to main content

MongoDB panel for the Flask Debug Toolbar

Project description

Info:

An extension panel for Matt Good’s Flask-DebugToolbar that adds MongoDB debugging information

Author:

Bruno Carlin (http://github.com/bcarlin, http://twitter.com/brunocarlin)

History

This is a port of the MongoDB addon to the Django Debug Toolbar written by Harry Marr (http://github.com/hmarr, http://twitter.com/harrymarr).

There existed another port (https://github.com/cenkalti/flask-debug-toolbar-mongo) that was neither up-to-date nor operational (there are still imports from django).

Here is a clean port that I intend to maintain current with Harry Marr’s original work, and occasionnally augment with new features if needed.

All the thanks go to Harry!

Setup

First, you need to get the package. Install it with pip:

pip install flask-debugtoolbar-mongo

Somewhere after you’ve set app.debug = True and before app.run, you need to specify the flask_debugtoolbar panels that you want to use and include 'flask_debugtoolbar_mongo.panels.MongoDebugPanel' in that list.

For example, here’s a small flask app with the panel installed and with line profiling enabled for the hello_world:

from flask import Flask
app = Flask(__name__)

import flask_debugtoolbar

@app.route('/')
def hello_world():
    return 'Hello World')

if __name__ == '__main__':
    app.debug = True

    # Specify the debug panels you want
    app.config['DEBUG_TB_PANELS'] = [
        'flask_debugtoolbar.panels.versions.VersionDebugPanel',
        'flask_debugtoolbar.panels.timer.TimerDebugPanel',
        'flask_debugtoolbar.panels.headers.HeaderDebugPanel',
        'flask_debugtoolbar.panels.request_vars.RequestVarsDebugPanel',
        'flask_debugtoolbar.panels.template.TemplateDebugPanel',
        'flask_debugtoolbar.panels.sqlalchemy.SQLAlchemyDebugPanel',
        'flask_debugtoolbar.panels.logger.LoggingPanel',
        'flask_debugtoolbar.panels.profiler.ProfilerDebugPanel',
        # Add the MongoDB panel
        'flask_debugtoolbar_mongo.panel.MongoDebugPanel',
    ]
    toolbar = flask_debugtoolbar.DebugToolbarExtension(app)

    app.run()

Flask-debugtoolbar-mongo accepts the following configration options:

app.config['DEBUG_TB_MONGO'] = {
  'SHOW_STACKTRACES' = True
  'HIDE_FLASK_FROM_STACKTRACES' = True
}
SHOW_STACKTRACES

Obtaining stack traces can slow down queries significantly. You can turn them off by setting this option to False.

HIDE_FLASK_FROM_STACKTRACES

Hides Flask calls from the stacktrace.

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

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

Source Distribution

Flask-DebugToolbar-Mongo-0.1.tar.gz (8.7 kB view details)

Uploaded Source

File details

Details for the file Flask-DebugToolbar-Mongo-0.1.tar.gz.

File metadata

File hashes

Hashes for Flask-DebugToolbar-Mongo-0.1.tar.gz
Algorithm Hash digest
SHA256 a680d5042444fb10a2f511ea5613f00932f51f0c899c5cfe91a3b473658cb1a4
MD5 faa55c528337a3f4db59069e540993f6
BLAKE2b-256 5dea77abd58676ad76ee41ff881597f6e8e88796944940ec06eb22d0c9033a4b

See more details on using hashes here.

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