We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9edf9e0 commit 490f64fCopy full SHA for 490f64f
src/audit-specs/fields/field-dictionary.csv
@@ -184,6 +184,7 @@ ppid,numeric decimal,parent process ID,
184
printer,alphanumeric,printer name,
185
prom,numeric decimal,network promiscuity flag,
186
proctitle,encoded,process title and command line parameters,
187
+prog-id,numeric decimal,BPF program ID,
188
proto,numeric decimal,network protocol,
189
qbytes,numeric hexadecimal,ipc objects quantity of bytes,
190
range,alphanumeric,user's SE Linux range,
@@ -225,6 +226,7 @@ type,alphanumeric,the audit record's type,
225
226
uid,numeric decimal,user ID,
227
unit,alphanumeric,systemd unit,
228
uri,alphanumeric,URI pointing to a printer,
229
+uring_op,numeric decimal,IO_URING opcode,
230
user,alphanumeric,account submitted for authentication,
231
uuid,alphanumeric,a UUID,
232
val,alphanumeric,generic value associated with the operation,
src/test.rs
@@ -518,7 +518,6 @@ fn serde_message() {
518
}
519
520
#[test]
521
-#[should_panic]
522
fn parse_uringop() {
523
let msg = parse(include_bytes!("testdata/line-uringop.txt"), false).unwrap();
524
println!("{msg:?}");
@@ -530,7 +529,6 @@ fn parse_uringop() {
530
529
531
532
533
534
fn parse_bpf() {
535
let msg = parse(include_bytes!("testdata/line-bpf.txt"), false).unwrap();
536
0 commit comments