Skip to content

Pyramid tween to generate a callgraph image for every request

License

Notifications You must be signed in to change notification settings

disko/pyramid_pycallgraph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyramid_pycallgraph

This package provides a Pyramid tween to generate a callgraph image for every request.

It uses the Python Call Graph package for tracing and graph generation. See its documentation for example images.

Usage

Add pyramid_pycallgraph to the pyramid.includes in your application's .ini file:

pyramid.includes =
    pyramid_pycallgraph

Configuration

The default options of the pycallgraph.config.Config object can be overridden in your application's .ini file.

Example:

pycallgraph.include_stdlib = True
pycallgraph.max_depth = 10000

pycallgraph.trace_filter.exclude =
pycallgraph.trace_filter.include =
    sqlalchemy.*
    pyramid.*
    myapp.*

Development

Status

Currently pyramid_pycallgraph is in alpha / development state and should be considered no more than a proof of concept. There are no tests at all and it might or might not work for you.

Contributions

Contributions are highly welcome. Just clone the Github repository and start hacking. If you think your work might be generally useful, feel free to open a pull request.

About

Pyramid tween to generate a callgraph image for every request

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages