We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e309201 commit 0b3bbffCopy full SHA for 0b3bbff
2 files changed
agent/crates/trace-utils/src/error.rs
@@ -37,6 +37,14 @@ pub enum Error {
37
InvalidPointer(u64),
38
#[error("Invalid or corrupted data")]
39
InvalidData,
40
+ #[error("Kernel symbol not found: {0}")]
41
+ KernelSymbolNotFound(String),
42
+ #[error("BTF parsing failed: {0}")]
43
+ BtfParseError(String),
44
+ #[error("Architecture not supported: {0}")]
45
+ UnsupportedArch(String),
46
+ #[error("Permission denied: {0}")]
47
+ PermissionDenied(String),
48
#[error("{0}")]
49
Msg(String),
50
}
0 commit comments