We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b9c3d8 commit 3996f23Copy full SHA for 3996f23
README.md
@@ -3,7 +3,10 @@
3
Minimum overhead USDT middleware to dynamically trace tide with BPF or Dtrace.
4
5
```
6
-$ sudo bpftrace -p $(pgrep histogram) tools/route-histogram.bt
+$ cargo run --examples histogram
7
+$ sudo bpftrace -p $(pgrep histogram) tools/route-histogram.bt
8
+$ curl http://localhost:8080/route1 && curl http://localhost:8080/route2
9
+
10
Attaching 2 probes...
11
^C
12
@us[GET, /favicon.ico]:
tests/probe.sh
@@ -9,6 +9,7 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then
trace=$!
else
echo "${$OSTYPE} : unsupported OS"
+ exit
13
fi
14
15
sleep 2
0 commit comments