Tracee v0.15.0 Released! #3213
josedonizetti
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
🚀 What's new? 🚀
⎈ Kubernetes experience 🤖
The user experience in Kubernetes environment has been enhanced. You can now configure Tracee using Kubernetes-native ConfigMaps:
tracee-config
ConfigMap which configures general setup of Tracee.tracee-policies
ConfigMap which selects which signatures to load. You can edit this CM to add/remove events to trace.eg:
⚡️ New Policy Actions 📩
webhook
action lets you send the event to a webhook of your choiceforward
action lets you send the event to a fluentbit collector using the native "forward" protocoleg:
🛢️ Event Data Sources (Experimental) 🗄️
Introduced a new mechanism, data sources, for exposing external data in signature events.
Currently only tracee can register data sources to be exposed in signatures but we may add the capability plugin data sources in the future.
As of this release tracee only exposes a data source for querying currently running container's information.
Usage examples are given in feature's instrumentation test and in the docs.
📸 Capture read 📖
--capture read
flag.type
: Filters the type of I/O operation (pipe, socket, regular file).fd
: Filters the file descriptor of the I/O operation (stdin, stdout, stderr).--capture <read/write>=<path>
. Additionally, you can now use the specificformat
--capture <read/write>:path=<path>
for path filtering.Example usage:
tracee --capture write:path=/tmp --capture write:type=regular --capture fd=stdout
📩 Events 🔔
bpf_attach
event now fires when attaching toraw_tracepoint
.🔨 Fixes 👷
Beta Was this translation helpful? Give feedback.
All reactions