Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gukoff/dynamicprobes
USDT probes in .NET on Linux
https://github.com/gukoff/dynamicprobes
dotnet dynamic-tracing ebpf linux usdt
Last synced: 24 days ago
JSON representation
USDT probes in .NET on Linux
- Host: GitHub
- URL: https://github.com/gukoff/dynamicprobes
- Owner: gukoff
- License: mit
- Created: 2024-08-22T12:40:21.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-03T16:10:49.000Z (about 1 month ago)
- Last Synced: 2024-10-12T19:03:50.537Z (24 days ago)
- Topics: dotnet, dynamic-tracing, ebpf, linux, usdt
- Language: C#
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DynamicProbes
🚧 **Work in progress** 🚧 [[task board]](https://github.com/users/gukoff/projects/2)
Create USDT probes and instrument your .NET application on Linux.
## How it works
This library is a wrapper around the C library [linux-usdt/libstapsdt](https://github.com/linux-usdt/libstapsdt).
It lets you create USDT probes in runtime and fire them with the int or string arguments.
The resulting probes will be traceable by any USDT tracer, e.g. [bpftrace](https://github.com/bpftrace/bpftrace).
Start with `dotnet run` and follow the instructions :)
## Prerequisites
[Install libstapsdt](https://github.com/linux-usdt/libstapsdt?tab=readme-ov-file#install).
While this will require building the library from source, the process is very straightforward.