Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pyroscope extension #231

Merged
merged 3 commits into from
Dec 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions extensions/pyroscope/description.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
extension:
name: pyroscope
description: DuckDB Pyroscope Extension for Continuous Profiling
version: 0.0.1
language: Rust
build: cmake
license: MIT
excluded_platforms: "windows_amd64_rtools;windows_amd64;wasm_threads;wasm_eh;wasm_mvp"
requires_toolchains: "rust;python3"
maintainers:
- lmangani
- akvlad

repo:
github: quackscience/duckdb-extension-pyroscope
ref: 5b727e408b78cd725e6312f1bb8fd2aa84e7f8f8

docs:
hello_world: |
---- Start the tracer, requires backend URL
D SELECT * FROM trace_start('https://pyroscope:4000');

---- Stop the tracer
D SELECT * FROM trace_stop();

extended_description: |
The Pyroscope Extension is experimental, use at your own risk!
Loading