-
Notifications
You must be signed in to change notification settings - Fork 410
doc: update export filtering example #3626
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Signed-off-by: Yeongju Kang <[email protected]>
✅ Deploy Preview for tetragon ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@mtardy |
sure, if that can help :) it seems almost all of them are array? |
@mtardy Thank you for the review! How about just embedding permlink of the main branch of filter message like this block? ...
##### List of Process Event Filters
- The type for each filter attribute can be determined by referring to the [events.proto](https://github.com/cilium/tetragon/blob/main/api/v1/tetragon/events.proto#L38) file.
| Filter | Description |
| ------ | ----------- |
| `event_set` | Filter process events by event types. Supported types include: `PROCESS_EXEC`, `PROCESS_EXIT`, `PROCESS_KPROBE`, `PROCESS_UPROBE`, `PROCESS_TRACEPOINT`, `PROCESS_LOADER` |
... |
yep that's an idea! |
Let's merge this fix, please make another patch if you want to add a link to the protobuf in the docs |
Thank you, I will do it immediately. |
Fixes #3570
Description
Filter spec has namespace with string list type as below, but document is written using just string, so submitting this PR to fix document.
tetragon/api/v1/tetragon/events.proto
Line 40 in d595559