Use built-in Flask-DebugToolbar panels
mainFlask-DebugToolbar includes several built-in panels that provide debugging information via the toolbar interface. These panels are automatically available when the toolbar is configured.
Key built-in panels include:
- Versions: Shows the installed Flask version and all installed packages/versions via
setuptools. - Time: Shows request processing time, including CPU time (user/system), wall clock time, and context switches.
- HTTP Headers: Displays HTTP headers for the current request.
- Request Vars: Displays view function parameters, cookies, session variables, and GET/POST variables.
- Config: Shows the contents of
app.config. - Templates: Shows rendered templates and their provided parameters.
- SQLAlchemy: Shows SQL queries executed during the request.
- Logging: Displays log messages recorded during the request.
- Route List: Displays Flask URL routing rules.
- Profiler: Reports profiling data for the request (disabled by default).