Skip to content

Commit

Permalink
Add process.thread.capabilities to ECS fields
Browse files Browse the repository at this point in the history
These fields are only present in ECS 8.10, it seems beats is still tracking ECS
8.0, is this the right way to do until we track 8.10+?

It's enough for `mage integTest` to pass, otherwise it will complain about
undocumented new fields
  • Loading branch information
haesbaert committed Dec 18, 2023
1 parent 335bc8a commit c058cf1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions x-pack/auditbeat/module/system/_meta/fields.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
- key: ecs
fields:
- name: process.thread.capabilities.effective
type: keyword
description: >
This is the set of capabilities used by the kernel to perform permission checks for the thread.
example: ["CAP_BPF", "CAP_SYS_ADMIN"]
- name: process.thread.capabilities.permitted
type: keyword
description: >
This is a limiting superset for the effective capabilities that the thread may assume.
example: ["CAP_BPF", "CAP_SYS_ADMIN"]

- key: system
title: "System"
description: >
Expand Down
2 changes: 1 addition & 1 deletion x-pack/auditbeat/module/system/fields.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c058cf1

Please sign in to comment.