// s[] = [date, TZ], ID, Client-IP, Client-Port, Server-IP, Server-Port
String[] s = sections[ModSecurity.SECTION_AUDIT_LOG_HEADER].trim()
.split(" ");
if (s.length < 7)
throw new ParseException("Error while parsing AuditLog-Header: "
+ sections[ModSecurity.SECTION_AUDIT_LOG_HEADER]);
eventId = Long.toHexString(createdAt.getTime());
AuditEventParser.addValue(collections, ModSecurity.TX_ID, s[2]);