Skip to content

Commit

Permalink
move request to optional
Browse files Browse the repository at this point in the history
  • Loading branch information
torcolvin committed Jul 23, 2024
1 parent b68e070 commit 0022a18
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions base/audit_events.go
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,9 @@ var AuditEvents = events{
mandatoryFieldGroups: []fieldGroup{
fieldGroupAuthenticated,
fieldGroupKeyspace,
fieldGroupRequest,
},
optionalFieldGroups: []fieldGroup{
fieldGroupRequest, // this is not present on ISGR or import,
},
EnabledByDefault: false,
FilteringPermitted: true,
Expand Down Expand Up @@ -1105,7 +1107,9 @@ var AuditEvents = events{
mandatoryFieldGroups: []fieldGroup{
fieldGroupAuthenticated,
fieldGroupKeyspace,
fieldGroupRequest,
},
optionalFieldGroups: []fieldGroup{
fieldGroupRequest, // this will be present everywhere except ISGR
},
EnabledByDefault: false,
FilteringPermitted: true,
Expand All @@ -1122,7 +1126,9 @@ var AuditEvents = events{
mandatoryFieldGroups: []fieldGroup{
fieldGroupAuthenticated,
fieldGroupKeyspace,
fieldGroupRequest,
},
optionalFieldGroups: []fieldGroup{
fieldGroupRequest, // this will be present everywhere except tests and ISGR
},
EnabledByDefault: false,
FilteringPermitted: true,
Expand All @@ -1139,7 +1145,9 @@ var AuditEvents = events{
mandatoryFieldGroups: []fieldGroup{
fieldGroupAuthenticated,
fieldGroupKeyspace,
fieldGroupRequest,
},
optionalFieldGroups: []fieldGroup{
fieldGroupRequest, // this will be present everywhere except tests and ISGR
},
EnabledByDefault: false,
FilteringPermitted: true,
Expand Down

0 comments on commit 0022a18

Please sign in to comment.