Hi! I was using auditbeat to connect to the audit kernel module and get filesystem operations events from it. However, as I discussed in another thread, it seems that the audit events kernel queue is buggy in kernel 3.1, the kernel version available on CentOS 7. This means that if auditbeat crashes for any reason, I'll start losing FS events. In order to make my event detection more resilient, I decided to move the critical point of failure from auditbeat to auditd: I'll let auditd write a log file and write a fluentd parser to read from that log file. Writing that auditd log parser, I reached a question: how to group audit records in a FS event (for instance, there are SYSCALL, CWD and PATHs audit events for a single file creation, deletion or renaming). Can I assume that *all* records of an event will always appear sequentially in the log file with the same timestamp/event ID or records from different filesystem operations can be interleaved? Ex: simultaneous fsop 1 and fsop 2 could show up like: TYPE:SYSCALL msg=audit(167111.123:1) (...) TYPE:CWD msg=audit(167111.123:1) (...) TYPE:SYSCALL msg=audit(167112.123:2) (...) TYPE:PATH msg=audit(167111.123:1) (...) TYPE:PATH msg=audit(167111.123:1) (...) TYPE:CWD msg=audit(167112.123:1) (...) TYPE:PATH msg=audit(167112.123:1) (...) ? Thanks in advance!