Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: aquasecurity/tracee
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d90fe4ea5e3fc418df9a4086b0e10b12e3f67525
Choose a base ref
..
head repository: aquasecurity/tracee
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3a29a8c1f239d1a8aad4d5d3fc813ca2f69e14dc
Choose a head ref
Showing with 2 additions and 0 deletions.
  1. +2 −0 pkg/ebpf/tracee.go
2 changes: 2 additions & 0 deletions pkg/ebpf/tracee.go
Original file line number Diff line number Diff line change
@@ -1518,6 +1518,7 @@ func (t *Tracee) invokeInitEvents(out chan *trace.Event) {
systemInfoEvent := events.InitNamespacesEvent()
setMatchedPolicies(&systemInfoEvent, matchedPolicies, t.config.Policies)
out <- &systemInfoEvent
_ = t.stats.EventCount.Increment()
}

// Initial existing containers events (1 event per container)
@@ -1529,6 +1530,7 @@ func (t *Tracee) invokeInitEvents(out chan *trace.Event) {
event := &(existingContainerEvents[i])
setMatchedPolicies(event, matchedPolicies, t.config.Policies)
out <- event
_ = t.stats.EventCount.Increment()
}
}