Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
6b294ab
[#186]: added trace_cpu_frequency and trace_cpu_idle tracepoints in m…
LorenzoTettamanti Jun 14, 2026
936b5d8
[#186]: added cpu frequency tracer user space functions to read the d…
LorenzoTettamanti Jun 14, 2026
f240ff9
[#186]: updated metrics.yaml kubernetes manifest. Added tracefs path …
LorenzoTettamanti Jun 14, 2026
9802b0d
(feat): added memory tracing in kernel space using sys_enter_mmap tr…
LorenzoTettamanti Jun 20, 2026
ce341e5
(feat: #186): added cpu_bytes_alloc_events_total, cpy_bytes_alloc mem…
LorenzoTettamanti Jun 20, 2026
12ae5b5
(feat : #186): added userspace consumer for memory allocation events.…
LorenzoTettamanti Jun 20, 2026
fc158c8
(feat: #186) : Added scheduler tracing metrics (sched_stat_wait,sched…
LorenzoTettamanti Jun 21, 2026
84ca27f
(feat: #186) : added userspace consumer for scheduler metrics
LorenzoTettamanti Jun 21, 2026
c8141f4
(example): added grafana dashboard example
LorenzoTettamanti Jun 22, 2026
85b2884
[#186]: Added cpu idle metrics in kernel space
LorenzoTettamanti Jun 22, 2026
86c88ef
[#186]: added userspace consumer for the cpu idle events
LorenzoTettamanti Jun 22, 2026
f244487
(example): Added docker example(only metrics). improved dashboard tem…
LorenzoTettamanti Jul 3, 2026
46cdb15
[#186]: fixed typo in cpu.rs
LorenzoTettamanti Jul 3, 2026
845c5c4
(chores): updated metrics image
LorenzoTettamanti Jul 3, 2026
fabdc00
(fix): fixed grafana version
LorenzoTettamanti Jul 10, 2026
7dda5d6
(refactor): refactored network tracing using a network.rs module
LorenzoTettamanti Jul 11, 2026
46f33b8
(refactor): changed NetworkMetrics data structure name to PacketLossM…
LorenzoTettamanti Jul 11, 2026
02222ae
(fix): fixed subtle bug occurring. changed way to return pid and tgid…
LorenzoTettamanti Jul 11, 2026
0d30ead
(refactor): updated consumer userspace API with the latest kernel sp…
LorenzoTettamanti Jul 11, 2026
47708df
(refactor): updated metrics/main.rs with the latest metrics_tracer ch…
LorenzoTettamanti Jul 11, 2026
dfe2d33
(metrics): updated metrics semantics to better represent the metrics …
LorenzoTettamanti Jul 11, 2026
6c84220
Merge branch '0.1.5' into metrics-patch
LorenzoTettamanti Jul 11, 2026
09dea56
(fix): fixed typo in build-local-metrics
LorenzoTettamanti Jul 12, 2026
b91f832
(fix): fixed typos introduced during the merge
LorenzoTettamanti Jul 12, 2026
97ddf52
[#201]: added semantic.rs
LorenzoTettamanti Jul 13, 2026
bb373a6
(cleaning): removed deprecated code. Fixed uppercase enum variant wit…
LorenzoTettamanti Jul 15, 2026
353d991
[#186]: Histogram<u64> distributions for sched_stat_wait and sched_st…
LorenzoTettamanti Jul 16, 2026
f56d53c
[#119]: moved read packet functions to dedicated consumer.rs module
LorenzoTettamanti Jul 20, 2026
9f9aa59
(#150): added service_discovery.rs module in the core library
LorenzoTettamanti Jul 20, 2026
7a997b8
[#202]: added metadata.rs module to enrich the eBPF context with cont…
LorenzoTettamanti Jul 20, 2026
acb9d48
[#202]: updated consumer API with enriched Metadata
LorenzoTettamanti Jul 20, 2026
2e333bf
added new modules (metadata and consumer) in the common crate
LorenzoTettamanti Jul 20, 2026
b4efecb
(feature): added SSL tracing using uprobes and uretprobes (SSL_read/S…
LorenzoTettamanti Jul 26, 2026
21a2ecd
(feature): added SslEvents structure in userspace. Added SSL events c…
LorenzoTettamanti Jul 26, 2026
fae39ba
(feature): added support for uprobes and uretprobes to attach the pro…
LorenzoTettamanti Jul 26, 2026
1451eb3
(feature): attached new ssl uprobes in metrics/main.rs. Added events …
LorenzoTettamanti Jul 26, 2026
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
9 changes: 2 additions & 7 deletions core/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion core/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ bytemuck = "1.25.0"
bytes = "1.11.0"
bytemuck_derive = "1.10.2"
tokio = "1.49.0"
opentelemetry-semantic-conventions = "0.32.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

[features]
map-handlers = []
Expand Down
Loading