pyroscope 2.0.0

Pyroscope Profiler Agent for continuous profiling of Rust, Python and Ruby applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
from setuptools import setup
from setuptools_rust import Binding, RustExtension

setup(
    rust_extensions=[
        RustExtension(
            "pyroscope_python_extension.pyroscope_python_extension",
            path="pyroscope_ffi/python/rust/Cargo.toml",
            binding=Binding.NoBinding,
            cargo_manifest_args=["--locked"],
        )
    ],
)