Crates.io | tide-trace |
lib.rs | tide-trace |
version | 0.5.0 |
source | src |
created_at | 2020-06-28 13:59:15.799755 |
updated_at | 2021-01-31 21:59:40.931094 |
description | Minimum overhead USDT middleware to dynamically trace tide with BPF or DTrace |
homepage | https://github.com/no9/tide-trace |
repository | |
max_upload_size | |
id | 259099 |
size | 66,283 |
Minimum overhead USDT middleware to dynamically trace tide with BPF or DTrace.
$ cargo run --example histogram
$ sudo bpftrace -p $(pgrep histogram) tools/route-histogram.bt
Attaching 2 probes...
$ curl http://localhost:8080/route1 && curl http://localhost:8080/route2
^C
@us[GET, /favicon.ico]:
[32, 64) 1 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@|
@us[GET, /route1]:
[32, 64) 2 |@@@@@@@@@@@@@@@@@ |
[64, 128) 6 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@|
[128, 256) 2 |@@@@@@@@@@@@@@@@@ |
@us[GET, /route2]:
[32, 64) 2 |@@@@@@@@@@@@@@@@@@@@ |
[64, 128) 5 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@|
[128, 256) 4 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ |
$ sudo apt-get install systemtap-sdt-dev bpftrace
$ sudo dnf install systemtap-sdt-devel bpftrace
This middleware is intended to work on mac but has not been fully tested
$ brew install make
For a prebuilt applications see examples folder
Make a project
$ cargo init sample-project
Cargo.toml
tide = "0.16"
async-std = { version = "1.8.0", features = ["attributes"] }
tide-trace = { version = "0.4.0" }
main.rs
#[async_std::main]
async fn main() -> Result<(), std::io::Error> {
tide::log::start();
let mut app = tide::new();
app.middleware(tide_trace::USDTMiddleware::new(0));
app.at("/").get(|_| async { Ok("Hello, world!") });
app.listen("127.0.0.1:8080").await?;
Ok(())
}
$ sudo bpftrace -p $(pgrep sample-project) tools/routes.bt
$ curl http://localhost:8080/
$ cargo build --examples
$ sudo ./tests/test-all.sh