See https://functiontrace.com/ for end user instructions and demos.
Functiontrace is implemented as two components: 1. A server, written in Rust, which aggregates trace information from running processes 2. A python module, written in C and Python, which hooks in to the various traced events.
With Nix, we use devenv
to have a standard test and development environment.
The standard development loop is to setup that environemt using devenv shell
.
You can test small changes inside an existing devenv shell
, including working
with most of our supported Python variants. To rebuild the Python module, you
need to convince Nix to rebuild this (by running just generate-nix
), then
restarting your devenv shell
.
$ cargo build --release
``` $ cd py-functiontrace $ python setup.py build $ python setup.py bdist_wheel --dist-dir ./dist
$ pip install py-functiontrace/dist/*.whl ```
You must have functiontrace
installed, and have functiontrace-server
in
your $PATH
. The Nix development path should do this for you.
```
$ python integration_tests.py ```