content large_stringlengths 3 20.5k | url large_stringlengths 54 193 | branch large_stringclasses 4 values | source large_stringclasses 42 values | embeddings listlengths 384 384 | score float64 -0.21 0.65 |
|---|---|---|---|---|---|
"type": "object", "required": [ "option" ], "description": "PrCtlEventSerializer serializes a prctl event" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `option` | PrCtl Option | | `new\_name` | New name of the process | | `is\_name\_truncated` | Name truncated | ## `Process` {{< code-block lang="json" collapsible="true" >}} { "properties": { "pid": { "type": "integer", "description": "Process ID" }, "ppid": { "type": "integer", "description": "Parent Process ID" }, "tid": { "type": "integer", "description": "Thread ID" }, "uid": { "type": "integer", "description": "User ID" }, "gid": { "type": "integer", "description": "Group ID" }, "user": { "type": "string", "description": "User name" }, "group": { "type": "string", "description": "Group name" }, "path\_resolution\_error": { "type": "string", "description": "Description of an error in the path resolution" }, "comm": { "type": "string", "description": "Command name" }, "tty": { "type": "string", "description": "TTY associated with the process" }, "fork\_time": { "type": "string", "format": "date-time", "description": "Fork time of the process" }, "exec\_time": { "type": "string", "format": "date-time", "description": "Exec time of the process" }, "exit\_time": { "type": "string", "format": "date-time", "description": "Exit time of the process" }, "credentials": { "$ref": "#/$defs/ProcessCredentials", "description": "Credentials associated with the process" }, "caps\_attempted": { "items": { "type": "string" }, "type": "array", "description": "CapsAttempted lists the capabilities that this process tried to use" }, "caps\_used": { "items": { "type": "string" }, "type": "array", "description": "CapsUsed lists the capabilities that this process effectively made use of" }, "user\_session": { "$ref": "#/$defs/UserSessionContext", "description": "Context of the user session for this event" }, "executable": { "$ref": "#/$defs/File", "description": "File information of the executable" }, "interpreter": { "$ref": "#/$defs/File", "description": "File information of the interpreter" }, "cgroup": { "$ref": "#/$defs/CGroupContext", "description": "CGroup context" }, "container": { "$ref": "#/$defs/ContainerContext", "description": "Container context" }, "argv0": { "type": "string", "description": "First command line argument" }, "args": { "items": { "type": "string" }, "type": "array", "description": "Command line arguments" }, "args\_truncated": { "type": "boolean", "description": "Indicator of arguments truncation" }, "envs": { "items": { "type": "string" }, "type": "array", "description": "Environment variables of the process" }, "envs\_truncated": { "type": "boolean", "description": "Indicator of environments variable truncation" }, "is\_thread": { "type": "boolean", "description": "Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program)" }, "is\_kworker": { "type": "boolean", "description": "Indicates whether the process is a kworker" }, "is\_exec\_child": { "type": "boolean", "description": "Indicates whether the process is an exec following another exec" }, "source": { "type": "string", "description": "Process source" }, "syscalls": { "$ref": "#/$defs/SyscallsEvent", "description": "List of syscalls captured to generate the event" }, "aws\_security\_credentials": { "items": { "$ref": "#/$defs/AWSSecurityCredentials" }, "type": "array", "description": "List of AWS Security Credentials that the process had access to" } }, "additionalProperties": false, "type": "object", "required": [ "uid", "gid" ], "description": "ProcessSerializer serializes a process to JSON" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `pid` | Process ID | | `ppid` | Parent Process ID | | `tid` | Thread ID | | `uid` | User ID | | `gid` | Group ID | | `user` | User name | | `group` | Group name | | `path\_resolution\_error` | Description of an error in the path resolution | | `comm` | Command name | | `tty` | TTY associated with the process | | `fork\_time` | Fork time of the process | | `exec\_time` | Exec time of the process | | `exit\_time` | Exit time of the process | | `credentials` | Credentials associated with the process | | `caps\_attempted` | CapsAttempted lists the capabilities that this process tried to use | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/backend_linux.md | main | datadog-agent | [
-0.1068957969546318,
0.07279520481824875,
0.03445333242416382,
0.026156123727560043,
-0.06469336897134781,
-0.061415690928697586,
0.03512095287442207,
0.06655275076627731,
0.03263374790549278,
0.008860276080667973,
-0.011819219216704369,
-0.04318702593445778,
-0.044153306633234024,
0.03486... | 0.023505 |
| | `fork\_time` | Fork time of the process | | `exec\_time` | Exec time of the process | | `exit\_time` | Exit time of the process | | `credentials` | Credentials associated with the process | | `caps\_attempted` | CapsAttempted lists the capabilities that this process tried to use | | `caps\_used` | CapsUsed lists the capabilities that this process effectively made use of | | `user\_session` | Context of the user session for this event | | `executable` | File information of the executable | | `interpreter` | File information of the interpreter | | `cgroup` | CGroup context | | `container` | Container context | | `argv0` | First command line argument | | `args` | Command line arguments | | `args\_truncated` | Indicator of arguments truncation | | `envs` | Environment variables of the process | | `envs\_truncated` | Indicator of environments variable truncation | | `is\_thread` | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | `is\_kworker` | Indicates whether the process is a kworker | | `is\_exec\_child` | Indicates whether the process is an exec following another exec | | `source` | Process source | | `syscalls` | List of syscalls captured to generate the event | | `aws\_security\_credentials` | List of AWS Security Credentials that the process had access to | | References | | ---------- | | [ProcessCredentials](#processcredentials) | | [UserSessionContext](#usersessioncontext) | | [File](#file) | | [CGroupContext](#cgroupcontext) | | [ContainerContext](#containercontext) | | [SyscallsEvent](#syscallsevent) | ## `ProcessContext` {{< code-block lang="json" collapsible="true" >}} { "properties": { "pid": { "type": "integer", "description": "Process ID" }, "ppid": { "type": "integer", "description": "Parent Process ID" }, "tid": { "type": "integer", "description": "Thread ID" }, "uid": { "type": "integer", "description": "User ID" }, "gid": { "type": "integer", "description": "Group ID" }, "user": { "type": "string", "description": "User name" }, "group": { "type": "string", "description": "Group name" }, "path\_resolution\_error": { "type": "string", "description": "Description of an error in the path resolution" }, "comm": { "type": "string", "description": "Command name" }, "tty": { "type": "string", "description": "TTY associated with the process" }, "fork\_time": { "type": "string", "format": "date-time", "description": "Fork time of the process" }, "exec\_time": { "type": "string", "format": "date-time", "description": "Exec time of the process" }, "exit\_time": { "type": "string", "format": "date-time", "description": "Exit time of the process" }, "credentials": { "$ref": "#/$defs/ProcessCredentials", "description": "Credentials associated with the process" }, "caps\_attempted": { "items": { "type": "string" }, "type": "array", "description": "CapsAttempted lists the capabilities that this process tried to use" }, "caps\_used": { "items": { "type": "string" }, "type": "array", "description": "CapsUsed lists the capabilities that this process effectively made use of" }, "user\_session": { "$ref": "#/$defs/UserSessionContext", "description": "Context of the user session for this event" }, "executable": { "$ref": "#/$defs/File", "description": "File information of the executable" }, "interpreter": { "$ref": "#/$defs/File", "description": "File information of the interpreter" }, "cgroup": { "$ref": "#/$defs/CGroupContext", "description": "CGroup context" }, "container": { "$ref": "#/$defs/ContainerContext", "description": "Container context" }, "argv0": { "type": "string", "description": "First command line argument" }, "args": { "items": { "type": "string" }, "type": "array", "description": "Command line arguments" }, "args\_truncated": { "type": "boolean", "description": "Indicator of arguments truncation" }, "envs": { "items": { "type": "string" }, "type": "array", "description": "Environment variables of the process" }, "envs\_truncated": { "type": "boolean", "description": "Indicator of environments variable truncation" }, "is\_thread": { "type": "boolean", "description": "Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program)" }, "is\_kworker": { "type": "boolean", "description": "Indicates whether the process is a kworker" }, "is\_exec\_child": { "type": "boolean", | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/backend_linux.md | main | datadog-agent | [
-0.0073518650606274605,
-0.02152135968208313,
-0.06961575150489807,
-0.03960901498794556,
0.015247169882059097,
-0.056027334183454514,
0.10485710203647614,
0.07996740192174911,
-0.016304438933730125,
0.007868979126214981,
0.01668500527739525,
-0.08296074718236923,
-0.008117456920444965,
-0... | 0.161212 |
"type": "boolean", "description": "Indicator of environments variable truncation" }, "is\_thread": { "type": "boolean", "description": "Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program)" }, "is\_kworker": { "type": "boolean", "description": "Indicates whether the process is a kworker" }, "is\_exec\_child": { "type": "boolean", "description": "Indicates whether the process is an exec following another exec" }, "source": { "type": "string", "description": "Process source" }, "syscalls": { "$ref": "#/$defs/SyscallsEvent", "description": "List of syscalls captured to generate the event" }, "aws\_security\_credentials": { "items": { "$ref": "#/$defs/AWSSecurityCredentials" }, "type": "array", "description": "List of AWS Security Credentials that the process had access to" }, "parent": { "$ref": "#/$defs/Process", "description": "Parent process" }, "ancestors": { "items": { "$ref": "#/$defs/Process" }, "type": "array", "description": "Ancestor processes" }, "variables": { "$ref": "#/$defs/Variables", "description": "Variables values" }, "truncated\_ancestors": { "type": "boolean", "description": "True if the ancestors list was truncated because it was too big" } }, "additionalProperties": false, "type": "object", "required": [ "uid", "gid" ], "description": "ProcessContextSerializer serializes a process context to JSON" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `pid` | Process ID | | `ppid` | Parent Process ID | | `tid` | Thread ID | | `uid` | User ID | | `gid` | Group ID | | `user` | User name | | `group` | Group name | | `path\_resolution\_error` | Description of an error in the path resolution | | `comm` | Command name | | `tty` | TTY associated with the process | | `fork\_time` | Fork time of the process | | `exec\_time` | Exec time of the process | | `exit\_time` | Exit time of the process | | `credentials` | Credentials associated with the process | | `caps\_attempted` | CapsAttempted lists the capabilities that this process tried to use | | `caps\_used` | CapsUsed lists the capabilities that this process effectively made use of | | `user\_session` | Context of the user session for this event | | `executable` | File information of the executable | | `interpreter` | File information of the interpreter | | `cgroup` | CGroup context | | `container` | Container context | | `argv0` | First command line argument | | `args` | Command line arguments | | `args\_truncated` | Indicator of arguments truncation | | `envs` | Environment variables of the process | | `envs\_truncated` | Indicator of environments variable truncation | | `is\_thread` | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | `is\_kworker` | Indicates whether the process is a kworker | | `is\_exec\_child` | Indicates whether the process is an exec following another exec | | `source` | Process source | | `syscalls` | List of syscalls captured to generate the event | | `aws\_security\_credentials` | List of AWS Security Credentials that the process had access to | | `parent` | Parent process | | `ancestors` | Ancestor processes | | `variables` | Variables values | | `truncated\_ancestors` | True if the ancestors list was truncated because it was too big | | References | | ---------- | | [ProcessCredentials](#processcredentials) | | [UserSessionContext](#usersessioncontext) | | [File](#file) | | [CGroupContext](#cgroupcontext) | | [ContainerContext](#containercontext) | | [SyscallsEvent](#syscallsevent) | | [Process](#process) | | [Variables](#variables) | ## `ProcessCredentials` {{< code-block lang="json" collapsible="true" >}} { "properties": { "uid": { "type": "integer", "description": "User ID" }, "user": { "type": "string", "description": "User name" }, "gid": { "type": "integer", "description": "Group ID" }, "group": { "type": "string", "description": "Group name" }, "euid": { "type": "integer", "description": "Effective User ID" }, "euser": { | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/backend_linux.md | main | datadog-agent | [
-0.061639003455638885,
0.02397039905190468,
-0.04700402915477753,
0.02111799269914627,
0.05035198852419853,
-0.06269127130508423,
0.0748644545674324,
-0.030997682362794876,
0.10454491525888443,
0.07894080132246017,
-0.006765181198716164,
-0.14886488020420074,
-0.0029155344236642122,
0.0016... | 0.063932 |
code-block lang="json" collapsible="true" >}} { "properties": { "uid": { "type": "integer", "description": "User ID" }, "user": { "type": "string", "description": "User name" }, "gid": { "type": "integer", "description": "Group ID" }, "group": { "type": "string", "description": "Group name" }, "euid": { "type": "integer", "description": "Effective User ID" }, "euser": { "type": "string", "description": "Effective User name" }, "egid": { "type": "integer", "description": "Effective Group ID" }, "egroup": { "type": "string", "description": "Effective Group name" }, "fsuid": { "type": "integer", "description": "Filesystem User ID" }, "fsuser": { "type": "string", "description": "Filesystem User name" }, "fsgid": { "type": "integer", "description": "Filesystem Group ID" }, "fsgroup": { "type": "string", "description": "Filesystem Group name" }, "auid": { "type": "integer", "description": "Login UID" }, "cap\_effective": { "items": { "type": "string" }, "type": "array", "description": "Effective Capability set" }, "cap\_permitted": { "items": { "type": "string" }, "type": "array", "description": "Permitted Capability set" }, "destination": { "description": "Credentials after the operation" } }, "additionalProperties": false, "type": "object", "required": [ "uid", "gid", "euid", "egid", "fsuid", "fsgid", "auid", "cap\_effective", "cap\_permitted" ], "description": "ProcessCredentialsSerializer serializes the process credentials to JSON" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `uid` | User ID | | `user` | User name | | `gid` | Group ID | | `group` | Group name | | `euid` | Effective User ID | | `euser` | Effective User name | | `egid` | Effective Group ID | | `egroup` | Effective Group name | | `fsuid` | Filesystem User ID | | `fsuser` | Filesystem User name | | `fsgid` | Filesystem Group ID | | `fsgroup` | Filesystem Group name | | `auid` | Login UID | | `cap\_effective` | Effective Capability set | | `cap\_permitted` | Permitted Capability set | | `destination` | Credentials after the operation | ## `RawPacket` {{< code-block lang="json" collapsible="true" >}} { "properties": { "device": { "$ref": "#/$defs/NetworkDevice", "description": "device is the network device on which the event was captured" }, "l3\_protocol": { "type": "string", "description": "l3\_protocol is the layer 3 protocol name" }, "l4\_protocol": { "type": "string", "description": "l4\_protocol is the layer 4 protocol name" }, "source": { "$ref": "#/$defs/IPPort", "description": "source is the emitter of the network event" }, "destination": { "$ref": "#/$defs/IPPort", "description": "destination is the receiver of the network event" }, "size": { "type": "integer", "description": "size is the size in bytes of the network event" }, "network\_direction": { "type": "string", "description": "network\_direction indicates if the packet was captured on ingress or egress" }, "type": { "type": "string", "description": "type is the type of the protocol of the network event" }, "tls": { "$ref": "#/$defs/TLSContext" }, "dropped": { "type": "boolean" }, "layers": { "items": { "$ref": "#/$defs/Layer" }, "type": "array" } }, "additionalProperties": false, "type": "object", "required": [ "l3\_protocol", "l4\_protocol", "source", "destination", "size" ], "description": "RawPacketSerializer defines a raw packet serializer" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `device` | device is the network device on which the event was captured | | `l3\_protocol` | l3\_protocol is the layer 3 protocol name | | `l4\_protocol` | l4\_protocol is the layer 4 protocol name | | `source` | source is the emitter of the network event | | `destination` | destination is the receiver of the network event | | `size` | size is the size in bytes of the network event | | `network\_direction` | network\_direction indicates if the packet was captured on ingress or egress | | `type` | type is the type of the protocol of the network event | | References | | ---------- | | [NetworkDevice](#networkdevice) | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/backend_linux.md | main | datadog-agent | [
-0.04448530822992325,
0.0869341790676117,
-0.014820843003690243,
0.03455700725317001,
-0.07405301928520203,
-0.019572872668504715,
-0.023619450628757477,
0.04443417116999626,
0.004524727817624807,
0.02317909337580204,
0.015679175034165382,
-0.08828387409448624,
-0.015241042710840702,
0.045... | 0.026982 |
| size is the size in bytes of the network event | | `network\_direction` | network\_direction indicates if the packet was captured on ingress or egress | | `type` | type is the type of the protocol of the network event | | References | | ---------- | | [NetworkDevice](#networkdevice) | | [IPPort](#ipport) | | [TLSContext](#tlscontext) | ## `RuleContext` {{< code-block lang="json" collapsible="true" >}} { "properties": { "matching\_subexprs": { "items": { "$ref": "#/$defs/MatchingSubExpr" }, "type": "array" }, "expression": { "type": "string" } }, "additionalProperties": false, "type": "object", "description": "RuleContext serializes rule context to JSON" } {{< /code-block >}} ## `SELinuxBoolChange` {{< code-block lang="json" collapsible="true" >}} { "properties": { "name": { "type": "string", "description": "SELinux boolean name" }, "state": { "type": "string", "description": "SELinux boolean state ('on' or 'off')" } }, "additionalProperties": false, "type": "object", "description": "SELinuxBoolChangeSerializer serializes a SELinux boolean change to JSON" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `name` | SELinux boolean name | | `state` | SELinux boolean state ('on' or 'off') | ## `SELinuxBoolCommit` {{< code-block lang="json" collapsible="true" >}} { "properties": { "state": { "type": "boolean", "description": "SELinux boolean commit operation" } }, "additionalProperties": false, "type": "object", "description": "SELinuxBoolCommitSerializer serializes a SELinux boolean commit to JSON" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `state` | SELinux boolean commit operation | ## `SELinuxEnforceStatus` {{< code-block lang="json" collapsible="true" >}} { "properties": { "status": { "type": "string", "description": "SELinux enforcement status (one of 'enforcing', 'permissive' or 'disabled')" } }, "additionalProperties": false, "type": "object", "description": "SELinuxEnforceStatusSerializer serializes a SELinux enforcement status change to JSON" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `status` | SELinux enforcement status (one of 'enforcing', 'permissive' or 'disabled') | ## `SELinuxEvent` {{< code-block lang="json" collapsible="true" >}} { "properties": { "bool": { "$ref": "#/$defs/SELinuxBoolChange", "description": "SELinux boolean operation" }, "enforce": { "$ref": "#/$defs/SELinuxEnforceStatus", "description": "SELinux enforcement change" }, "bool\_commit": { "$ref": "#/$defs/SELinuxBoolCommit", "description": "SELinux boolean commit" } }, "additionalProperties": false, "type": "object", "description": "SELinuxEventSerializer serializes a SELinux context to JSON" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `bool` | SELinux boolean operation | | `enforce` | SELinux enforcement change | | `bool\_commit` | SELinux boolean commit | | References | | ---------- | | [SELinuxBoolChange](#selinuxboolchange) | | [SELinuxEnforceStatus](#selinuxenforcestatus) | | [SELinuxBoolCommit](#selinuxboolcommit) | ## `SecurityProfileContext` {{< code-block lang="json" collapsible="true" >}} { "properties": { "name": { "type": "string", "description": "Name of the security profile" }, "version": { "type": "string", "description": "Version of the profile in use" }, "tags": { "items": { "type": "string" }, "type": "array", "description": "List of tags associated to this profile" }, "event\_in\_profile": { "type": "boolean", "description": "True if the corresponding event is part of this profile" }, "event\_type\_state": { "type": "string", "description": "State of the event type in this profile" } }, "additionalProperties": false, "type": "object", "required": [ "name", "version", "tags", "event\_in\_profile", "event\_type\_state" ], "description": "SecurityProfileContextSerializer serializes the security profile context in an event" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `name` | Name of the security profile | | `version` | Version of the profile in use | | `tags` | List of tags associated to this profile | | `event\_in\_profile` | True if the corresponding event is part of this profile | | `event\_type\_state` | State of the event type in this profile | ## `SetSockOptEvent` {{< code-block lang="json" collapsible="true" >}} { "properties": { "socket\_type": { "type": "string", "description": "Socket file descriptor" }, "socket\_family": { "type": "string", "description": "Socket family" }, "filter\_len": { | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/backend_linux.md | main | datadog-agent | [
-0.05167507752776146,
0.08773642778396606,
0.013069653883576393,
0.02414369024336338,
0.059825241565704346,
-0.04247208684682846,
0.05244477838277817,
0.03199814260005951,
0.033859819173812866,
-0.0035427999682724476,
-0.038530949503183365,
-0.024137698113918304,
0.01047032605856657,
0.017... | 0.065701 |
the corresponding event is part of this profile | | `event\_type\_state` | State of the event type in this profile | ## `SetSockOptEvent` {{< code-block lang="json" collapsible="true" >}} { "properties": { "socket\_type": { "type": "string", "description": "Socket file descriptor" }, "socket\_family": { "type": "string", "description": "Socket family" }, "filter\_len": { "type": "integer", "description": "Length of the filter" }, "socket\_protocol": { "type": "string", "description": "Socket protocol" }, "level": { "type": "string", "description": "Level at which the option is defined" }, "optname": { "type": "string", "description": "Name of the option being set" }, "is\_filter\_truncated": { "type": "boolean", "description": "Filter truncated" }, "filter": { "type": "string", "description": "Filter instructions" }, "filter\_hash": { "type": "string", "description": "Filter hash" } }, "additionalProperties": false, "type": "object", "required": [ "socket\_type", "socket\_family", "socket\_protocol", "level", "optname" ], "description": "SetSockOptEventSerializer defines a setsockopt event serializer" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `socket\_type` | Socket file descriptor | | `socket\_family` | Socket family | | `filter\_len` | Length of the filter | | `socket\_protocol` | Socket protocol | | `level` | Level at which the option is defined | | `optname` | Name of the option being set | | `is\_filter\_truncated` | Filter truncated | | `filter` | Filter instructions | | `filter\_hash` | Filter hash | ## `SetrlimitEvent` {{< code-block lang="json" collapsible="true" >}} { "properties": { "resource": { "type": "string", "description": "Resource being limited" }, "rlim\_cur": { "type": "integer", "description": "Current limit" }, "rlim\_max": { "type": "integer", "description": "Maximum limit" }, "target": { "$ref": "#/$defs/ProcessContext", "description": "process context of the setrlimit target" } }, "additionalProperties": false, "type": "object", "required": [ "resource", "rlim\_cur", "rlim\_max" ], "description": "SetrlimitEventSerializer serializes a setrlimit event" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `resource` | Resource being limited | | `rlim\_cur` | Current limit | | `rlim\_max` | Maximum limit | | `target` | process context of the setrlimit target | | References | | ---------- | | [ProcessContext](#processcontext) | ## `SignalEvent` {{< code-block lang="json" collapsible="true" >}} { "properties": { "type": { "type": "string", "description": "signal type" }, "pid": { "type": "integer", "description": "signal target pid" }, "target": { "$ref": "#/$defs/ProcessContext", "description": "process context of the signal target" } }, "additionalProperties": false, "type": "object", "required": [ "type", "pid" ], "description": "SignalEventSerializer serializes a signal event to JSON" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `type` | signal type | | `pid` | signal target pid | | `target` | process context of the signal target | | References | | ---------- | | [ProcessContext](#processcontext) | ## `SpliceEvent` {{< code-block lang="json" collapsible="true" >}} { "properties": { "pipe\_entry\_flag": { "type": "string", "description": "Entry flag of the fd\_out pipe passed to the splice syscall" }, "pipe\_exit\_flag": { "type": "string", "description": "Exit flag of the fd\_out pipe passed to the splice syscall" } }, "additionalProperties": false, "type": "object", "required": [ "pipe\_entry\_flag", "pipe\_exit\_flag" ], "description": "SpliceEventSerializer serializes a splice event to JSON" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `pipe\_entry\_flag` | Entry flag of the fd\_out pipe passed to the splice syscall | | `pipe\_exit\_flag` | Exit flag of the fd\_out pipe passed to the splice syscall | ## `SysCtlEvent` {{< code-block lang="json" collapsible="true" >}} { "properties": { "proc": { "type": "object", "description": "Proc contains the /proc system control parameters and their values" }, "action": { "type": "string", "description": "action performed on the system control parameter" }, "file\_position": { "type": "integer", "description": "file\_position is the position in the sysctl control parameter file at which the action occurred" }, | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/backend_linux.md | main | datadog-agent | [
-0.04464423656463623,
0.041178781539201736,
0.010721512138843536,
0.049085650593042374,
-0.03574053943157196,
0.003466696012765169,
0.08041338622570038,
0.01478468719869852,
0.02997589483857155,
-0.03389790654182434,
-0.017715316265821457,
-0.05621517077088356,
-0.07352359592914581,
0.0711... | 0.089272 |
"proc": { "type": "object", "description": "Proc contains the /proc system control parameters and their values" }, "action": { "type": "string", "description": "action performed on the system control parameter" }, "file\_position": { "type": "integer", "description": "file\_position is the position in the sysctl control parameter file at which the action occurred" }, "name": { "type": "string", "description": "name is the name of the system control parameter" }, "name\_truncated": { "type": "boolean", "description": "name\_truncated indicates if the name field is truncated" }, "value": { "type": "string", "description": "value is the new and/or current value for the system control parameter depending on the action type" }, "value\_truncated": { "type": "boolean", "description": "value\_truncated indicates if the value field is truncated" }, "old\_value": { "type": "string", "description": "old\_value is the old value of the system control parameter" }, "old\_value\_truncated": { "type": "boolean", "description": "old\_value\_truncated indicates if the old\_value field is truncated" } }, "additionalProperties": false, "type": "object", "description": "SysCtlEventSerializer defines a sysctl event serializer" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `proc` | Proc contains the /proc system control parameters and their values | | `action` | action performed on the system control parameter | | `file\_position` | file\_position is the position in the sysctl control parameter file at which the action occurred | | `name` | name is the name of the system control parameter | | `name\_truncated` | name\_truncated indicates if the name field is truncated | | `value` | value is the new and/or current value for the system control parameter depending on the action type | | `value\_truncated` | value\_truncated indicates if the value field is truncated | | `old\_value` | old\_value is the old value of the system control parameter | | `old\_value\_truncated` | old\_value\_truncated indicates if the old\_value field is truncated | ## `Syscall` {{< code-block lang="json" collapsible="true" >}} { "properties": { "name": { "type": "string", "description": "Name of the syscall" }, "id": { "type": "integer", "description": "ID of the syscall in the host architecture" } }, "additionalProperties": false, "type": "object", "required": [ "name", "id" ], "description": "SyscallSerializer serializes a syscall" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `name` | Name of the syscall | | `id` | ID of the syscall in the host architecture | ## `SyscallArgs` {{< code-block lang="json" collapsible="true" >}} { "properties": { "path": { "type": "string", "description": "Path argument" }, "flags": { "type": "integer", "description": "Flags argument" }, "mode": { "type": "integer", "description": "Mode argument" }, "uid": { "type": "integer", "description": "UID argument" }, "gid": { "type": "integer", "description": "GID argument" }, "dirfd": { "type": "integer", "description": "Directory file descriptor argument" }, "destination\_path": { "type": "string", "description": "Destination path argument" }, "fs\_type": { "type": "string", "description": "File system type argument" } }, "additionalProperties": false, "type": "object", "description": "SyscallArgsSerializer args serializer" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `path` | Path argument | | `flags` | Flags argument | | `mode` | Mode argument | | `uid` | UID argument | | `gid` | GID argument | | `dirfd` | Directory file descriptor argument | | `destination\_path` | Destination path argument | | `fs\_type` | File system type argument | ## `SyscallContext` {{< code-block lang="json" collapsible="true" >}} { "properties": { "chmod": { "$ref": "#/$defs/SyscallArgs" }, "chown": { "$ref": "#/$defs/SyscallArgs" }, "chdir": { "$ref": "#/$defs/SyscallArgs" }, "exec": { "$ref": "#/$defs/SyscallArgs" }, "open": { "$ref": "#/$defs/SyscallArgs" }, "unlink": { "$ref": "#/$defs/SyscallArgs" }, "link": { "$ref": "#/$defs/SyscallArgs" }, "rename": { "$ref": "#/$defs/SyscallArgs" }, "utimes": { "$ref": "#/$defs/SyscallArgs" }, "mount": { "$ref": "#/$defs/SyscallArgs" }, "mkdir": { | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/backend_linux.md | main | datadog-agent | [
-0.04878987744450569,
0.010684431530535221,
-0.08667158335447311,
0.0173807330429554,
-0.009080121293663979,
0.023657528683543205,
0.11477603018283844,
0.12626078724861145,
0.01334328018128872,
0.10302375257015228,
0.019334502518177032,
-0.02276112325489521,
0.03433592617511749,
0.00328212... | 0.120955 |
"$ref": "#/$defs/SyscallArgs" }, "chown": { "$ref": "#/$defs/SyscallArgs" }, "chdir": { "$ref": "#/$defs/SyscallArgs" }, "exec": { "$ref": "#/$defs/SyscallArgs" }, "open": { "$ref": "#/$defs/SyscallArgs" }, "unlink": { "$ref": "#/$defs/SyscallArgs" }, "link": { "$ref": "#/$defs/SyscallArgs" }, "rename": { "$ref": "#/$defs/SyscallArgs" }, "utimes": { "$ref": "#/$defs/SyscallArgs" }, "mount": { "$ref": "#/$defs/SyscallArgs" }, "mkdir": { "$ref": "#/$defs/SyscallArgs" }, "rmdir": { "$ref": "#/$defs/SyscallArgs" }, "setsockopt": { "$ref": "#/$defs/SyscallArgs" }, "prctl": { "$ref": "#/$defs/SyscallArgs" } }, "additionalProperties": false, "type": "object", "description": "SyscallContextSerializer serializes syscall context" } {{< /code-block >}} | References | | ---------- | | [SyscallArgs](#syscallargs) | ## `SyscallsEvent` {{< code-block lang="json" collapsible="true" >}} { "items": { "$ref": "#/$defs/Syscall" }, "type": "array", "description": "SyscallsEventSerializer serializes the syscalls from a syscalls event" } {{< /code-block >}} ## `TLSContext` {{< code-block lang="json" collapsible="true" >}} { "properties": { "version": { "type": "string" } }, "additionalProperties": false, "type": "object", "description": "TLSContextSerializer defines a tls context serializer" } {{< /code-block >}} ## `UserContext` {{< code-block lang="json" collapsible="true" >}} { "properties": { "id": { "type": "string", "description": "User name" }, "group": { "type": "string", "description": "Group name" } }, "additionalProperties": false, "type": "object", "description": "UserContextSerializer serializes a user context to JSON" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `id` | User name | | `group` | Group name | ## `UserSessionContext` {{< code-block lang="json" collapsible="true" >}} { "properties": { "session\_type": { "type": "string", "description": "Type of the user session" }, "id": { "type": "string", "description": "Unique identifier of the user session on the host" }, "identity": { "type": "string", "description": "Identity of the user session" }, "k8s\_session\_id": { "type": "string", "description": "Unique identifier of the user session on the host" }, "k8s\_username": { "type": "string", "description": "Username of the Kubernetes \"kubectl exec\" session" }, "k8s\_uid": { "type": "string", "description": "UID of the Kubernetes \"kubectl exec\" session" }, "k8s\_groups": { "items": { "type": "string" }, "type": "array", "description": "Groups of the Kubernetes \"kubectl exec\" session" }, "k8s\_extra": { "additionalProperties": { "items": { "type": "string" }, "type": "array" }, "type": "object", "description": "Extra of the Kubernetes \"kubectl exec\" session" }, "ssh\_session\_id": { "type": "string", "description": "Unique identifier of the SSH session" }, "ssh\_client\_port": { "type": "integer", "description": "Port of the SSH session" }, "ssh\_client\_ip": { "type": "string", "description": "Client IP of the SSH session" }, "ssh\_auth\_method": { "type": "string", "description": "Authentication method of the SSH session" }, "ssh\_public\_key": { "type": "string", "description": "Public key of the SSH session" } }, "additionalProperties": false, "type": "object", "description": "UserSessionContextSerializer serializes the user session context to JSON" } {{< /code-block >}} | Field | Description | | ----- | ----------- | | `session\_type` | Type of the user session | | `id` | Unique identifier of the user session on the host | | `identity` | Identity of the user session | | `k8s\_session\_id` | Unique identifier of the user session on the host | | `k8s\_username` | Username of the Kubernetes "kubectl exec" session | | `k8s\_uid` | UID of the Kubernetes "kubectl exec" session | | `k8s\_groups` | Groups of the Kubernetes "kubectl exec" session | | `k8s\_extra` | Extra of the Kubernetes "kubectl exec" session | | `ssh\_session\_id` | Unique identifier of the SSH session | | `ssh\_client\_port` | Port of the SSH session | | `ssh\_client\_ip` | Client IP of the SSH session | | `ssh\_auth\_method` | Authentication method of the SSH session | | `ssh\_public\_key` | Public key of the SSH session | ## `Variables` {{< code-block lang="json" collapsible="true" >}} { "type": "object", "description": "Variables serializes the variable values" } {{< /code-block >}} [1]: /security/threats/ [2]: /security/threats/agent | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/backend_linux.md | main | datadog-agent | [
-0.08919193595647812,
-0.021387020125985146,
-0.00039883606950752437,
-0.020957639440894127,
0.014638266526162624,
-0.06483792513608932,
-0.00033872289350256324,
0.037351325154304504,
0.03539399430155754,
0.048202451318502426,
0.05587143823504448,
-0.09071510285139084,
-0.030598968267440796,... | 0.031006 |
| Authentication method of the SSH session | | `ssh\_public\_key` | Public key of the SSH session | ## `Variables` {{< code-block lang="json" collapsible="true" >}} { "type": "object", "description": "Variables serializes the variable values" } {{< /code-block >}} [1]: /security/threats/ [2]: /security/threats/agent | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/backend_linux.md | main | datadog-agent | [
0.008604324422776699,
0.10457061231136322,
-0.1325109899044037,
-0.006809412036091089,
-0.06133009493350983,
0.049804531037807465,
0.029765821993350983,
0.04208752140402794,
-0.04036988690495491,
0.007017259486019611,
0.051348667591810226,
0.0012152038980275393,
0.02370726689696312,
0.0474... | 0.05156 |
## Linux Agent attributes and helpers This documentation describes Linux attributes and helpers of the [Datadog's Security Language (SECL)][1]. Rules using Linux attributes and helpers must include an OS rule filter field as follows. {{< code-block lang="yaml" >}} id: [...] expression: [...] filters: - os == "linux" {{< /code-block >}} ## Triggers Triggers are events that correspond to types of activity seen by the system. The currently supported set of triggers is: | SECL Event | Type | Definition | Agent Version | | ---------- | ---- | ---------- | ------------- | | `accept` | Network | An accept was executed | 7.63 | | `bind` | Network | A bind was executed | 7.37 | | `bpf` | Kernel | A BPF command was executed | 7.33 | | `capabilities` | Process | [Experimental] A process used some capabilities | 7.70 | | `capset` | Process | A process changed its capacity set | 7.27 | | `cgroup\_write` | Kernel | A process migrated another process to a cgroup | 7.68 | | `chdir` | File | [Experimental] A process changed the current directory | 7.52 | | `chmod` | File | A file's permissions were changed | 7.27 | | `chown` | File | A file's owner was changed | 7.27 | | `connect` | Network | A connect was executed | 7.60 | | `dns` | Network | A DNS request was sent | 7.36 | | `exec` | Process | A process was executed (does not trigger on fork syscalls). | 7.27 | | `exit` | Process | A process was terminated | 7.38 | | `imds` | Network | An IMDS event was captured | 7.55 | | `link` | File | Create a new name/alias for a file | 7.27 | | `load\_module` | Kernel | A new kernel module was loaded | 7.35 | | `mkdir` | File | A directory was created | 7.27 | | `mmap` | Kernel | A mmap command was executed | 7.35 | | `mount` | File | [Experimental] A filesystem was mounted | 7.42 | | `mprotect` | Kernel | A mprotect command was executed | 7.35 | | `network\_flow\_monitor` | Network | A network monitor event was sent | 7.63 | | `open` | File | A file was opened | 7.27 | | `packet` | Network | A raw network packet was captured | 7.60 | | `prctl` | Process | A prctl command was executed | 7.71 | | `ptrace` | Kernel | A ptrace command was executed | 7.35 | | `removexattr` | File | Remove extended attributes | 7.27 | | `rename` | File | A file/directory was renamed | 7.27 | | `rmdir` | File | A directory was removed | 7.27 | | `selinux` | Kernel | An SELinux operation was run | 7.30 | | `setgid` | Process | A process changed its effective gid | 7.27 | | `setrlimit` | Process | A setrlimit command was executed | 7.68 | | `setsockopt` | Network | A setsockopt was executed | 7.68 | | `setuid` | Process | A process changed its effective uid | 7.27 | | `setxattr` | File | Set exteneded attributes | 7.27 | | `signal` | Process | A signal was sent | 7.35 | | `splice` | File | A splice command was executed | 7.36 | | `sysctl` | Kernel | A sysctl parameter was read or modified | 7.65 | | `unlink` | File | A file was deleted | 7.27 | | `unload\_module` | Kernel | A kernel module | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.01688367873430252,
0.00005902424163650721,
-0.046473681926727295,
-0.025053318589925766,
0.07738127559423447,
-0.01619958132505417,
0.0646166056394577,
0.012865357100963593,
0.012744053266942501,
-0.024488843977451324,
0.0813818946480751,
-0.055569037795066833,
0.0670144185423851,
-0.02... | 0.165323 |
7.35 | | `splice` | File | A splice command was executed | 7.36 | | `sysctl` | Kernel | A sysctl parameter was read or modified | 7.65 | | `unlink` | File | A file was deleted | 7.27 | | `unload\_module` | Kernel | A kernel module was deleted | 7.35 | | `utimes` | File | Change file access/modification times | 7.27 | ## FIM triggers In addition to regular triggers, `fim.write.file.\*` fields allow to write rules that fire on all file events. For example, the following rule: {{< code-block lang="javascript" >}} (fim.write.file.path == "/tmp/test" || fim.write.file.name == "abc") && process.file.name == "def" && container.id != "" {{< /code-block >}} will expand into the following rules under the hood: {{< code-block lang="javascript" >}} open: ((open.file.path == "/tmp/test" || open.file.name == "abc") && open.flags & (O\_CREAT|O\_TRUNC|O\_APPEND|O\_RDWR|O\_WRONLY) > 0 && process.file.name == "def" && container.id != "") chmod: (chmod.file.path == "/tmp/test" || chmod.file.name == "abc") && process.file.name == "def" && container.id != "" chown: (chown.file.path == "/tmp/test" || chown.file.name == "abc") && process.file.name == "def" && container.id != "" link: (link.file.path == "/tmp/test" || link.file.name == "abc") && process.file.name == "def" && container.id != "" rename: (rename.file.path == "/tmp/test" || rename.file.name == "abc") && process.file.name == "def" && container.id != "" rename: (rename.file.destination.path == "/tmp/test" || rename.file.destination.name == "abc") && process.file.name == "def" && container.id != "" unlink: (unlink.file.path == "/tmp/test" || unlink.file.name == "abc") && process.file.name == "def" && container.id != "" utimes: (utimes.file.path == "/tmp/test" || utimes.file.name == "abc") && process.file.name == "def" && container.id != "" {{< /code-block >}} and match on all file-related events matching the path provided in the rule. Common fields are retained across all expanded rules. ## Variables SECL variables are predefined variables that can be used as values or as part of values. For example, rule using a `process.pid` variable looks like this: {{< code-block lang="javascript" >}} open.file.path == "/proc/${process.pid}/maps" {{< /code-block >}} List of the available variables: | SECL Variable | Definition | Agent Version | |-----------------------|---------------------------------------|---------------| | `process.pid` | Process PID | 7.33 | ## CIDR and IP range CIDR and IP matching is possible in SECL. One can use operators such as `in`, `not in`, or `allin` combined with CIDR or IP notations. Such rules can be written as follows: {{< code-block lang="javascript" >}} dns.question.name == "example.com" && network.destination.ip in [192.168.1.25, 10.0.0.0/24] {{< /code-block >}} ## Helpers Helpers exist in SECL that enable users to write advanced rules without needing to rely on generic techniques such as regex. ### Command line arguments The \*args\_flags\* and \*args\_options\* are helpers to ease the writing of CSM Threats rules based on command line arguments. \*args\_flags\* is used to catch arguments that start with either one or two hyphen characters but do not accept any associated value. Examples: \* `version` is part of \*args\_flags\* for the command `cat --version` \* `l` and `n` both are in \*args\_flags\* for the command `netstat -ln` \*args\_options\* is used to catch arguments that start with either one or two hyphen characters and accepts a value either specified as the same argument but separated by the ‘=’ character or specified as the next argument. Examples: \* `T=8` and `width=8` both are in \*args\_options\* for the command `ls -T 8 --width=8` \* `exec.args\_options in [ r"s=.\*\\" ]` can be used to detect `sudoedit` was launched with `-s` argument and a command that ends with a `\` ### File rights The \*file.rights\* attribute can now be used in addition to \*file.mode\*. \*file.mode\* can hold values set by the kernel, while the \*file.rights\* only holds the values set by | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.07453768700361252,
-0.014936325140297413,
-0.008726246654987335,
0.0654798299074173,
0.13127949833869934,
-0.04413154348731041,
0.02146943099796772,
0.04998316988348961,
0.05936042219400406,
0.06175250932574272,
0.0676012709736824,
0.0939713642001152,
-0.04203592985868454,
-0.0182264540... | 0.131832 |
can be used to detect `sudoedit` was launched with `-s` argument and a command that ends with a `\` ### File rights The \*file.rights\* attribute can now be used in addition to \*file.mode\*. \*file.mode\* can hold values set by the kernel, while the \*file.rights\* only holds the values set by the user. These rights may be more familiar because they are in the `chmod` commands. ## Event attributes ### Common to all event types | Property | Definition | | -------- | ------------- | | [`event.async`](#event-async-doc) | True if the syscall was asynchronous | | [`event.hostname`](#event-hostname-doc) | Hostname associated with the event | | [`event.origin`](#event-origin-doc) | Origin of the event | | [`event.os`](#event-os-doc) | Operating system of the event | | [`event.rule.tags`](#event-rule-tags-doc) | Tags associated with the rule that's used to evaluate the event | | [`event.service`](#event-service-doc) | Service associated with the event | | [`event.signature`](#event-signature-doc) | Signature of the process pid and its cgroup with agent secret key | | [`event.source`](#event-source-doc) | [Experimental] Source of the event. Can be either 'runtime' or 'snapshot'. | | [`event.timestamp`](#event-timestamp-doc) | Timestamp of the event | | [`process.ancestors.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`process.ancestors.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | [`process.ancestors.args\_options`](#common-process-args\_options-doc) | Argument of the process as options | | [`process.ancestors.args\_truncated`](#common-process-args\_truncated-doc) | Indicator of arguments truncation | | [`process.ancestors.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`process.ancestors.argv0`](#common-process-argv0-doc) | First argument of the process | | [`process.ancestors.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`process.ancestors.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`process.ancestors.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`process.ancestors.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`process.ancestors.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities that the process successfully used | | [`process.ancestors.cgroup.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`process.ancestors.cgroup.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`process.ancestors.cgroup.id`](#common-cgroupcontext-id-doc) | ID of the cgroup | | [`process.ancestors.cgroup.version`](#common-cgroupcontext-version-doc) | [Experimental] Version of the cgroup API | | [`process.ancestors.comm`](#common-process-comm-doc) | Comm attribute of the process | | [`process.ancestors.container.created\_at`](#common-containercontext-created\_at-doc) | Timestamp of the creation of the container | | [`process.ancestors.container.id`](#common-containercontext-id-doc) | ID of the container | | [`process.ancestors.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`process.ancestors.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`process.ancestors.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`process.ancestors.egroup`](#common-credentials-egroup-doc) | Effective group of the process | | [`process.ancestors.envp`](#common-process-envp-doc) | Environment variables of the process | | [`process.ancestors.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`process.ancestors.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`process.ancestors.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`process.ancestors.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`process.ancestors.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`process.ancestors.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`process.ancestors.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`process.ancestors.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`process.ancestors.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`process.ancestors.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`process.ancestors.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`process.ancestors.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`process.ancestors.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`process.ancestors.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`process.ancestors.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`process.ancestors.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`process.ancestors.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`process.ancestors.file.name`](#common-fileevent-name-doc) | File's basename | | [`process.ancestors.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.ancestors.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.055111635476350784,
0.038121260702610016,
-0.07764241844415665,
0.054506540298461914,
0.032851673662662506,
-0.07115668058395386,
0.012619695626199245,
0.058315496891736984,
-0.00600732397288084,
-0.008350047282874584,
-0.02391302026808262,
0.031747981905937195,
0.0011126261670142412,
-... | 0.08182 |
from the VFS | | [`process.ancestors.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`process.ancestors.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`process.ancestors.file.name`](#common-fileevent-name-doc) | File's basename | | [`process.ancestors.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.ancestors.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`process.ancestors.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`process.ancestors.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`process.ancestors.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`process.ancestors.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`process.ancestors.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`process.ancestors.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`process.ancestors.file.path`](#common-fileevent-path-doc) | File's path | | [`process.ancestors.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.ancestors.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`process.ancestors.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`process.ancestors.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`process.ancestors.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`process.ancestors.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | [`process.ancestors.fsuid`](#common-credentials-fsuid-doc) | FileSystem-uid of the process | | [`process.ancestors.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`process.ancestors.gid`](#common-credentials-gid-doc) | GID of the process | | [`process.ancestors.group`](#common-credentials-group-doc) | Group of the process | | [`process.ancestors.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`process.ancestors.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`process.ancestors.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`process.ancestors.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`process.ancestors.interpreter.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`process.ancestors.interpreter.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`process.ancestors.interpreter.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`process.ancestors.interpreter.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`process.ancestors.interpreter.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`process.ancestors.interpreter.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`process.ancestors.interpreter.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`process.ancestors.interpreter.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`process.ancestors.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`process.ancestors.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`process.ancestors.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.ancestors.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`process.ancestors.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`process.ancestors.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`process.ancestors.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`process.ancestors.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`process.ancestors.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`process.ancestors.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`process.ancestors.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`process.ancestors.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.ancestors.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`process.ancestors.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`process.ancestors.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`process.ancestors.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`process.ancestors.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process is a kworker | | [`process.ancestors.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`process.ancestors.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.ancestors.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`process.ancestors.pid`](#common-pidcontext-pid-doc) | Process ID of the | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.03612597659230232,
0.00837699044495821,
-0.0018516808049753308,
-0.02920936793088913,
0.1380186378955841,
-0.05493398755788803,
-0.04339199140667915,
0.0752459391951561,
0.00607287185266614,
-0.01995091512799263,
0.08993138372898102,
-0.04287097603082657,
-0.02066296897828579,
-0.048022... | 0.075886 |
a kworker | | [`process.ancestors.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`process.ancestors.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.ancestors.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`process.ancestors.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`process.ancestors.ppid`](#common-process-ppid-doc) | Parent process ID | | [`process.ancestors.tid`](#common-pidcontext-tid-doc) | Thread ID of the thread | | [`process.ancestors.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`process.ancestors.uid`](#common-credentials-uid-doc) | UID of the process | | [`process.ancestors.user`](#common-credentials-user-doc) | User of the process | | [`process.ancestors.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | [`process.ancestors.user\_session.identity`](#common-usersessioncontext-identity-doc) | User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type | | [`process.ancestors.user\_session.k8s\_groups`](#common-k8ssessioncontext-k8s\_groups-doc) | Kubernetes groups of the user that executed the process | | [`process.ancestors.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`process.ancestors.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`process.ancestors.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`process.ancestors.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`process.ancestors.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | SSH authentication method used by the user | | [`process.ancestors.user\_session.ssh\_client\_ip`](#common-sshsessioncontext-ssh\_client\_ip-doc) | SSH client IP of the user that executed the process | | [`process.ancestors.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`process.ancestors.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`process.ancestors.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | | [`process.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`process.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | [`process.args\_options`](#common-process-args\_options-doc) | Argument of the process as options | | [`process.args\_truncated`](#common-process-args\_truncated-doc) | Indicator of arguments truncation | | [`process.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`process.argv0`](#common-process-argv0-doc) | First argument of the process | | [`process.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`process.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`process.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`process.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`process.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities that the process successfully used | | [`process.cgroup.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`process.cgroup.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`process.cgroup.id`](#common-cgroupcontext-id-doc) | ID of the cgroup | | [`process.cgroup.version`](#common-cgroupcontext-version-doc) | [Experimental] Version of the cgroup API | | [`process.comm`](#common-process-comm-doc) | Comm attribute of the process | | [`process.container.created\_at`](#common-containercontext-created\_at-doc) | Timestamp of the creation of the container | | [`process.container.id`](#common-containercontext-id-doc) | ID of the container | | [`process.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`process.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`process.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`process.egroup`](#common-credentials-egroup-doc) | Effective group of the process | | [`process.envp`](#common-process-envp-doc) | Environment variables of the process | | [`process.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`process.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`process.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`process.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`process.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`process.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`process.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`process.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`process.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`process.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`process.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.10848669707775116,
0.003684330964460969,
-0.048284899443387985,
-0.05446882173418999,
0.020190678536891937,
-0.0546458475291729,
-0.006218922324478626,
0.009431442245841026,
0.05131155252456665,
0.014272507280111313,
0.016440171748399734,
-0.06587173044681549,
0.022694243118166924,
-0.0... | 0.110432 |
| File's filesystem | | [`process.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`process.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`process.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`process.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`process.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`process.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`process.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`process.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`process.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`process.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`process.file.name`](#common-fileevent-name-doc) | File's basename | | [`process.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`process.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`process.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`process.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`process.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`process.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`process.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`process.file.path`](#common-fileevent-path-doc) | File's path | | [`process.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`process.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`process.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`process.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`process.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | [`process.fsuid`](#common-credentials-fsuid-doc) | FileSystem-uid of the process | | [`process.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`process.gid`](#common-credentials-gid-doc) | GID of the process | | [`process.group`](#common-credentials-group-doc) | Group of the process | | [`process.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`process.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`process.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`process.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`process.interpreter.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`process.interpreter.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`process.interpreter.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`process.interpreter.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`process.interpreter.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`process.interpreter.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`process.interpreter.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`process.interpreter.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`process.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`process.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`process.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`process.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`process.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`process.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`process.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`process.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`process.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`process.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`process.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`process.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.054366305470466614,
0.07698920369148254,
-0.022382941097021103,
-0.02142488583922386,
0.11613583564758301,
-0.05928898602724075,
0.01995665766298771,
0.053131312131881714,
0.047340597957372665,
0.0037931648548692465,
0.028158731758594513,
0.040513042360544205,
0.048166822642087936,
-0.0... | 0.039897 |
the package that provided this file | | [`process.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`process.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`process.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`process.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`process.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`process.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`process.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process is a kworker | | [`process.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`process.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`process.parent.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`process.parent.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | [`process.parent.args\_options`](#common-process-args\_options-doc) | Argument of the process as options | | [`process.parent.args\_truncated`](#common-process-args\_truncated-doc) | Indicator of arguments truncation | | [`process.parent.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`process.parent.argv0`](#common-process-argv0-doc) | First argument of the process | | [`process.parent.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`process.parent.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`process.parent.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`process.parent.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`process.parent.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities that the process successfully used | | [`process.parent.cgroup.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`process.parent.cgroup.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`process.parent.cgroup.id`](#common-cgroupcontext-id-doc) | ID of the cgroup | | [`process.parent.cgroup.version`](#common-cgroupcontext-version-doc) | [Experimental] Version of the cgroup API | | [`process.parent.comm`](#common-process-comm-doc) | Comm attribute of the process | | [`process.parent.container.created\_at`](#common-containercontext-created\_at-doc) | Timestamp of the creation of the container | | [`process.parent.container.id`](#common-containercontext-id-doc) | ID of the container | | [`process.parent.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`process.parent.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`process.parent.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`process.parent.egroup`](#common-credentials-egroup-doc) | Effective group of the process | | [`process.parent.envp`](#common-process-envp-doc) | Environment variables of the process | | [`process.parent.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`process.parent.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`process.parent.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`process.parent.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`process.parent.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`process.parent.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`process.parent.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`process.parent.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`process.parent.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`process.parent.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`process.parent.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`process.parent.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`process.parent.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`process.parent.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`process.parent.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`process.parent.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`process.parent.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`process.parent.file.name`](#common-fileevent-name-doc) | File's basename | | [`process.parent.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.parent.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`process.parent.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`process.parent.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`process.parent.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`process.parent.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.052628736943006516,
0.023165084421634674,
-0.024407632648944855,
-0.07508144527673721,
0.056121911853551865,
-0.05153568834066391,
0.03384154289960861,
0.07624061405658722,
-0.007223230786621571,
0.015148109756410122,
0.006742400117218494,
0.0007550682057626545,
-0.03306865692138672,
0.... | 0.119721 |
provided this file | | [`process.parent.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`process.parent.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`process.parent.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`process.parent.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`process.parent.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`process.parent.file.path`](#common-fileevent-path-doc) | File's path | | [`process.parent.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.parent.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`process.parent.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`process.parent.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`process.parent.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`process.parent.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | [`process.parent.fsuid`](#common-credentials-fsuid-doc) | FileSystem-uid of the process | | [`process.parent.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`process.parent.gid`](#common-credentials-gid-doc) | GID of the process | | [`process.parent.group`](#common-credentials-group-doc) | Group of the process | | [`process.parent.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`process.parent.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`process.parent.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`process.parent.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`process.parent.interpreter.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`process.parent.interpreter.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`process.parent.interpreter.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`process.parent.interpreter.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`process.parent.interpreter.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`process.parent.interpreter.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`process.parent.interpreter.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`process.parent.interpreter.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`process.parent.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`process.parent.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`process.parent.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.parent.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`process.parent.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`process.parent.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`process.parent.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`process.parent.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`process.parent.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`process.parent.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`process.parent.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`process.parent.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`process.parent.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`process.parent.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`process.parent.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`process.parent.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`process.parent.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process is a kworker | | [`process.parent.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`process.parent.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`process.parent.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`process.parent.ppid`](#common-process-ppid-doc) | Parent process ID | | [`process.parent.tid`](#common-pidcontext-tid-doc) | Thread ID of the thread | | [`process.parent.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`process.parent.uid`](#common-credentials-uid-doc) | UID of the process | | [`process.parent.user`](#common-credentials-user-doc) | User of the process | | [`process.parent.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.04877006635069847,
0.04332820698618889,
0.0662749782204628,
-0.059324223548173904,
0.13643890619277954,
-0.018056713044643402,
-0.014762191101908684,
0.02044602669775486,
-0.019248727709054947,
0.008542129769921303,
0.06954975426197052,
-0.006352392956614494,
-0.05442717671394348,
-0.06... | 0.060265 |
| [`process.parent.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`process.parent.uid`](#common-credentials-uid-doc) | UID of the process | | [`process.parent.user`](#common-credentials-user-doc) | User of the process | | [`process.parent.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | [`process.parent.user\_session.identity`](#common-usersessioncontext-identity-doc) | User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type | | [`process.parent.user\_session.k8s\_groups`](#common-k8ssessioncontext-k8s\_groups-doc) | Kubernetes groups of the user that executed the process | | [`process.parent.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`process.parent.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`process.parent.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`process.parent.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`process.parent.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | SSH authentication method used by the user | | [`process.parent.user\_session.ssh\_client\_ip`](#common-sshsessioncontext-ssh\_client\_ip-doc) | SSH client IP of the user that executed the process | | [`process.parent.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`process.parent.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`process.parent.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | | [`process.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`process.ppid`](#common-process-ppid-doc) | Parent process ID | | [`process.tid`](#common-pidcontext-tid-doc) | Thread ID of the thread | | [`process.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`process.uid`](#common-credentials-uid-doc) | UID of the process | | [`process.user`](#common-credentials-user-doc) | User of the process | | [`process.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | [`process.user\_session.identity`](#common-usersessioncontext-identity-doc) | User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type | | [`process.user\_session.k8s\_groups`](#common-k8ssessioncontext-k8s\_groups-doc) | Kubernetes groups of the user that executed the process | | [`process.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`process.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`process.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`process.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`process.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | SSH authentication method used by the user | | [`process.user\_session.ssh\_client\_ip`](#common-sshsessioncontext-ssh\_client\_ip-doc) | SSH client IP of the user that executed the process | | [`process.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`process.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`process.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | ### Event `accept` An accept was executed | Property | Definition | | -------- | ------------- | | [`accept.addr.family`](#accept-addr-family-doc) | Address family | | [`accept.addr.hostname`](#accept-addr-hostname-doc) | Address hostname (if available) | | [`accept.addr.ip`](#common-ipportcontext-ip-doc) | IP address | | [`accept.addr.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`accept.addr.port`](#common-ipportcontext-port-doc) | Port number | | [`accept.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | ### Event `bind` A bind was executed | Property | Definition | | -------- | ------------- | | [`bind.addr.family`](#bind-addr-family-doc) | Address family | | [`bind.addr.ip`](#common-ipportcontext-ip-doc) | IP address | | [`bind.addr.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`bind.addr.port`](#common-ipportcontext-port-doc) | Port number | | [`bind.protocol`](#bind-protocol-doc) | Socket Protocol | | [`bind.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | ### Event `bpf` A BPF command was executed | Property | Definition | | -------- | ------------- | | [`bpf.cmd`](#bpf-cmd-doc) | BPF command name | | [`bpf.map.name`](#bpf-map-name-doc) | Name of the eBPF map (added in 7.35) | | [`bpf.map.type`](#bpf-map-type-doc) | Type of the eBPF map | | [`bpf.prog.attach\_type`](#bpf-prog-attach\_type-doc) | Attach type of | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.03867422789335251,
0.03182656690478325,
-0.058479223400354385,
-0.08648288995027542,
-0.033627867698669434,
-0.0029532299377024174,
0.09363937377929688,
0.05126868188381195,
0.015416140668094158,
-0.011188292875885963,
0.008911588229238987,
-0.0653485432267189,
0.033022649586200714,
0.0... | 0.08093 |
`bpf` A BPF command was executed | Property | Definition | | -------- | ------------- | | [`bpf.cmd`](#bpf-cmd-doc) | BPF command name | | [`bpf.map.name`](#bpf-map-name-doc) | Name of the eBPF map (added in 7.35) | | [`bpf.map.type`](#bpf-map-type-doc) | Type of the eBPF map | | [`bpf.prog.attach\_type`](#bpf-prog-attach\_type-doc) | Attach type of the eBPF program | | [`bpf.prog.helpers`](#bpf-prog-helpers-doc) | eBPF helpers used by the eBPF program (added in 7.35) | | [`bpf.prog.name`](#bpf-prog-name-doc) | Name of the eBPF program (added in 7.35) | | [`bpf.prog.tag`](#bpf-prog-tag-doc) | Hash (sha1) of the eBPF program (added in 7.35) | | [`bpf.prog.type`](#bpf-prog-type-doc) | Type of the eBPF program | | [`bpf.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | ### Event `capabilities` \_This event type is experimental and may change in the future.\_ A process used some capabilities | Property | Definition | | -------- | ------------- | | [`capabilities.attempted`](#capabilities-attempted-doc) | Bitmask of the capabilities that the process attempted to use since it started running | | [`capabilities.used`](#capabilities-used-doc) | Bitmask of the capabilities that the process successfully used since it started running | ### Event `capset` A process changed its capacity set | Property | Definition | | -------- | ------------- | | [`capset.cap\_effective`](#capset-cap\_effective-doc) | Effective capability set of the process | | [`capset.cap\_permitted`](#capset-cap\_permitted-doc) | Permitted capability set of the process | ### Event `cgroup\_write` A process migrated another process to a cgroup | Property | Definition | | -------- | ------------- | | [`cgroup\_write.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`cgroup\_write.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`cgroup\_write.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`cgroup\_write.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`cgroup\_write.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`cgroup\_write.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`cgroup\_write.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`cgroup\_write.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`cgroup\_write.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`cgroup\_write.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`cgroup\_write.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`cgroup\_write.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`cgroup\_write.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`cgroup\_write.file.name`](#common-fileevent-name-doc) | File's basename | | [`cgroup\_write.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`cgroup\_write.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`cgroup\_write.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`cgroup\_write.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`cgroup\_write.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`cgroup\_write.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`cgroup\_write.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`cgroup\_write.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`cgroup\_write.file.path`](#common-fileevent-path-doc) | File's path | | [`cgroup\_write.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`cgroup\_write.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`cgroup\_write.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`cgroup\_write.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`cgroup\_write.pid`](#cgroup\_write-pid-doc) | PID of the process added to the cgroup | ### Event `chdir` \_This event type is experimental and may change in the future.\_ A process changed the current directory | Property | Definition | | -------- | ------------- | | [`chdir.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`chdir.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`chdir.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`chdir.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.008322496898472309,
-0.01772448606789112,
-0.007970282807946205,
0.016377396881580353,
0.018267476931214333,
0.04128880798816681,
0.05784207209944725,
0.05954315885901451,
-0.0934939756989479,
-0.003521299222484231,
0.028317490592598915,
-0.1387387365102768,
-0.022953229025006294,
-0.003... | 0.053869 |
the future.\_ A process changed the current directory | Property | Definition | | -------- | ------------- | | [`chdir.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`chdir.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`chdir.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`chdir.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`chdir.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`chdir.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`chdir.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`chdir.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`chdir.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`chdir.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`chdir.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`chdir.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`chdir.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`chdir.file.name`](#common-fileevent-name-doc) | File's basename | | [`chdir.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`chdir.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`chdir.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`chdir.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`chdir.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`chdir.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`chdir.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`chdir.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`chdir.file.path`](#common-fileevent-path-doc) | File's path | | [`chdir.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`chdir.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`chdir.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`chdir.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`chdir.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`chdir.syscall.path`](#chdir-syscall-path-doc) | path argument of the syscall | ### Event `chmod` A file's permissions were changed | Property | Definition | | -------- | ------------- | | [`chmod.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`chmod.file.destination.mode`](#chmod-file-destination-mode-doc) | New mode of the chmod-ed file | | [`chmod.file.destination.rights`](#chmod-file-destination-rights-doc) | New rights of the chmod-ed file | | [`chmod.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`chmod.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`chmod.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`chmod.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`chmod.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`chmod.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`chmod.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`chmod.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`chmod.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`chmod.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`chmod.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`chmod.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`chmod.file.name`](#common-fileevent-name-doc) | File's basename | | [`chmod.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`chmod.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`chmod.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`chmod.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`chmod.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`chmod.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`chmod.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.09347038716077805,
0.058529216796159744,
-0.013166108168661594,
-0.05697375535964966,
0.09432810544967651,
-0.06538906693458557,
-0.010202550329267979,
0.07352004945278168,
0.05016876757144928,
0.036706820130348206,
0.07357767969369888,
0.022828591987490654,
0.017897719517350197,
0.0137... | 0.053715 |
[`chmod.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`chmod.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`chmod.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`chmod.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`chmod.file.path`](#common-fileevent-path-doc) | File's path | | [`chmod.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`chmod.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`chmod.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`chmod.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`chmod.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`chmod.syscall.mode`](#chmod-syscall-mode-doc) | mode argument of the syscall | | [`chmod.syscall.path`](#chmod-syscall-path-doc) | path argument of the syscall | ### Event `chown` A file's owner was changed | Property | Definition | | -------- | ------------- | | [`chown.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`chown.file.destination.gid`](#chown-file-destination-gid-doc) | New GID of the chown-ed file's owner | | [`chown.file.destination.group`](#chown-file-destination-group-doc) | New group of the chown-ed file's owner | | [`chown.file.destination.uid`](#chown-file-destination-uid-doc) | New UID of the chown-ed file's owner | | [`chown.file.destination.user`](#chown-file-destination-user-doc) | New user of the chown-ed file's owner | | [`chown.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`chown.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`chown.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`chown.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`chown.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`chown.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`chown.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`chown.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`chown.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`chown.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`chown.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`chown.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`chown.file.name`](#common-fileevent-name-doc) | File's basename | | [`chown.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`chown.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`chown.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`chown.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`chown.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`chown.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`chown.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`chown.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`chown.file.path`](#common-fileevent-path-doc) | File's path | | [`chown.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`chown.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`chown.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`chown.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`chown.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`chown.syscall.gid`](#chown-syscall-gid-doc) | GID argument of the syscall | | [`chown.syscall.path`](#chown-syscall-path-doc) | Path argument of the syscall | | [`chown.syscall.uid`](#chown-syscall-uid-doc) | UID argument of the syscall | ### Event `connect` A connect was executed | Property | Definition | | -------- | ------------- | | [`connect.addr.family`](#connect-addr-family-doc) | Address family | | [`connect.addr.hostname`](#connect-addr-hostname-doc) | Address hostname (if available) | | [`connect.addr.ip`](#common-ipportcontext-ip-doc) | IP address | | [`connect.addr.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`connect.addr.port`](#common-ipportcontext-port-doc) | Port number | | [`connect.protocol`](#connect-protocol-doc) | Socket Protocol | | [`connect.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | ### Event `dns` A DNS request was | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.017632238566875458,
0.059042464941740036,
0.023936759680509567,
-0.08059260994195938,
0.12095823884010315,
-0.05938340723514557,
0.025556987151503563,
0.03484836593270302,
-0.02861250936985016,
-0.019082853570580482,
0.0845843255519867,
-0.01316006574779749,
-0.021367352455854416,
-0.02... | 0.051133 |
(if available) | | [`connect.addr.ip`](#common-ipportcontext-ip-doc) | IP address | | [`connect.addr.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`connect.addr.port`](#common-ipportcontext-port-doc) | Port number | | [`connect.protocol`](#connect-protocol-doc) | Socket Protocol | | [`connect.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | ### Event `dns` A DNS request was sent | Property | Definition | | -------- | ------------- | | [`dns.id`](#dns-id-doc) | [Experimental] the DNS request ID | | [`dns.question.class`](#dns-question-class-doc) | the class looked up by the DNS question | | [`dns.question.count`](#dns-question-count-doc) | the total count of questions in the DNS request | | [`dns.question.length`](#dns-question-length-doc) | the total DNS request size in bytes | | [`dns.question.name`](#dns-question-name-doc) | the queried domain name | | [`dns.question.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`dns.question.type`](#dns-question-type-doc) | a two octet code which specifies the DNS question type | | [`dns.response.code`](#dns-response-code-doc) | Response code of the DNS response according to RFC 1035 | | [`network.destination.ip`](#common-ipportcontext-ip-doc) | IP address | | [`network.destination.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`network.destination.port`](#common-ipportcontext-port-doc) | Port number | | [`network.device.ifname`](#common-networkdevicecontext-ifname-doc) | Interface ifname | | [`network.device.netns`](#common-networkdevicecontext-netns-doc) | Interface NetNS ID | | [`network.l3\_protocol`](#common-networkcontext-l3\_protocol-doc) | L3 protocol of the network packet | | [`network.l4\_protocol`](#common-networkcontext-l4\_protocol-doc) | L4 protocol of the network packet | | [`network.network\_direction`](#common-networkcontext-network\_direction-doc) | Network direction of the network packet | | [`network.size`](#common-networkcontext-size-doc) | Size in bytes of the network packet | | [`network.source.ip`](#common-ipportcontext-ip-doc) | IP address | | [`network.source.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`network.source.port`](#common-ipportcontext-port-doc) | Port number | | [`network.type`](#common-networkcontext-type-doc) | Type of the network packet | ### Event `exec` A process was executed (does not trigger on fork syscalls). | Property | Definition | | -------- | ------------- | | [`exec.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`exec.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | [`exec.args\_options`](#common-process-args\_options-doc) | Argument of the process as options | | [`exec.args\_truncated`](#common-process-args\_truncated-doc) | Indicator of arguments truncation | | [`exec.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`exec.argv0`](#common-process-argv0-doc) | First argument of the process | | [`exec.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`exec.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`exec.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`exec.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`exec.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities that the process successfully used | | [`exec.cgroup.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`exec.cgroup.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`exec.cgroup.id`](#common-cgroupcontext-id-doc) | ID of the cgroup | | [`exec.cgroup.version`](#common-cgroupcontext-version-doc) | [Experimental] Version of the cgroup API | | [`exec.comm`](#common-process-comm-doc) | Comm attribute of the process | | [`exec.container.created\_at`](#common-containercontext-created\_at-doc) | Timestamp of the creation of the container | | [`exec.container.id`](#common-containercontext-id-doc) | ID of the container | | [`exec.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`exec.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`exec.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`exec.egroup`](#common-credentials-egroup-doc) | Effective group of the process | | [`exec.envp`](#common-process-envp-doc) | Environment variables of the process | | [`exec.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`exec.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`exec.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`exec.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`exec.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`exec.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`exec.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`exec.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`exec.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`exec.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.07799182087182999,
0.03226441890001297,
-0.02560241147875786,
-0.016740616410970688,
-0.011903834529221058,
-0.0662725418806076,
0.024756023660302162,
-0.03816394880414009,
-0.042725902050733566,
0.02651272900402546,
0.001161487540230155,
0.012362317182123661,
-0.034215860068798065,
0.0... | 0.04982 |
| | [`exec.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`exec.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`exec.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`exec.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`exec.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`exec.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`exec.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`exec.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`exec.file.metadata.abi`](#exec-file-metadata-abi-doc) | [Experimental] ABI of the file (only for executable files) | | [`exec.file.metadata.architecture`](#exec-file-metadata-architecture-doc) | [Experimental] Architecture of the file (only for executable files) | | [`exec.file.metadata.compression`](#exec-file-metadata-compression-doc) | [Experimental] Compression type of the file (only for compressed files) | | [`exec.file.metadata.is\_executable`](#exec-file-metadata-is\_executable-doc) | [Experimental] Tells if the file is executable or not | | [`exec.file.metadata.is\_garble\_obfuscated`](#exec-file-metadata-is\_garble\_obfuscated-doc) | [Experimental] Tells if the binary has been obfuscated using garble | | [`exec.file.metadata.is\_upx\_packed`](#exec-file-metadata-is\_upx\_packed-doc) | [Experimental] Tells if the binary has been packed using UPX | | [`exec.file.metadata.size`](#exec-file-metadata-size-doc) | [Experimental] Size of the file | | [`exec.file.metadata.type`](#exec-file-metadata-type-doc) | [Experimental] Type of the file | | [`exec.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`exec.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`exec.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`exec.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`exec.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`exec.file.name`](#common-fileevent-name-doc) | File's basename | | [`exec.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`exec.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`exec.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`exec.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`exec.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`exec.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`exec.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`exec.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`exec.file.path`](#common-fileevent-path-doc) | File's path | | [`exec.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`exec.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`exec.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`exec.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`exec.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`exec.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | [`exec.fsuid`](#common-credentials-fsuid-doc) | FileSystem-uid of the process | | [`exec.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`exec.gid`](#common-credentials-gid-doc) | GID of the process | | [`exec.group`](#common-credentials-group-doc) | Group of the process | | [`exec.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`exec.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`exec.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`exec.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`exec.interpreter.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`exec.interpreter.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`exec.interpreter.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`exec.interpreter.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`exec.interpreter.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`exec.interpreter.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`exec.interpreter.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`exec.interpreter.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`exec.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`exec.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`exec.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`exec.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`exec.interpreter.file.package.name`](#common-fileevent-package-name-doc) | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.046339746564626694,
0.07604597508907318,
-0.014587846584618092,
-0.039922893047332764,
0.06418176740407944,
-0.05478399619460106,
0.015630187466740608,
0.07810121029615402,
0.029719069600105286,
0.020504934713244438,
0.058977264910936356,
0.00718480022624135,
0.0006892781239002943,
-0.0... | 0.064035 |
ID of the file | | [`exec.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`exec.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`exec.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`exec.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`exec.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`exec.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`exec.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`exec.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`exec.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`exec.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`exec.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`exec.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`exec.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`exec.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`exec.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`exec.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`exec.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process is a kworker | | [`exec.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`exec.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`exec.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`exec.ppid`](#common-process-ppid-doc) | Parent process ID | | [`exec.syscall.path`](#exec-syscall-path-doc) | path argument of the syscall | | [`exec.tid`](#common-pidcontext-tid-doc) | Thread ID of the thread | | [`exec.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`exec.uid`](#common-credentials-uid-doc) | UID of the process | | [`exec.user`](#common-credentials-user-doc) | User of the process | | [`exec.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | [`exec.user\_session.identity`](#common-usersessioncontext-identity-doc) | User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type | | [`exec.user\_session.k8s\_groups`](#common-k8ssessioncontext-k8s\_groups-doc) | Kubernetes groups of the user that executed the process | | [`exec.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`exec.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`exec.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`exec.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`exec.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | SSH authentication method used by the user | | [`exec.user\_session.ssh\_client\_ip`](#common-sshsessioncontext-ssh\_client\_ip-doc) | SSH client IP of the user that executed the process | | [`exec.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`exec.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`exec.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | ### Event `exit` A process was terminated | Property | Definition | | -------- | ------------- | | [`exit.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`exit.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | [`exit.args\_options`](#common-process-args\_options-doc) | Argument of the process as options | | [`exit.args\_truncated`](#common-process-args\_truncated-doc) | Indicator of arguments truncation | | [`exit.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`exit.argv0`](#common-process-argv0-doc) | First argument of the process | | [`exit.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`exit.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`exit.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`exit.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`exit.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.04442565515637398,
0.033020004630088806,
0.024104321375489235,
-0.01775306649506092,
0.14195798337459564,
-0.04719115421175957,
0.0033503416925668716,
0.0781874805688858,
-0.004020592197775841,
-0.044615037739276886,
0.08627071231603622,
-0.0627240464091301,
-0.03317369148135185,
-0.014... | 0.110493 |
| [`exit.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`exit.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`exit.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`exit.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`exit.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities that the process successfully used | | [`exit.cause`](#exit-cause-doc) | Cause of the process termination (one of EXITED, SIGNALED, COREDUMPED) | | [`exit.cgroup.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`exit.cgroup.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`exit.cgroup.id`](#common-cgroupcontext-id-doc) | ID of the cgroup | | [`exit.cgroup.version`](#common-cgroupcontext-version-doc) | [Experimental] Version of the cgroup API | | [`exit.code`](#exit-code-doc) | Exit code of the process or number of the signal that caused the process to terminate | | [`exit.comm`](#common-process-comm-doc) | Comm attribute of the process | | [`exit.container.created\_at`](#common-containercontext-created\_at-doc) | Timestamp of the creation of the container | | [`exit.container.id`](#common-containercontext-id-doc) | ID of the container | | [`exit.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`exit.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`exit.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`exit.egroup`](#common-credentials-egroup-doc) | Effective group of the process | | [`exit.envp`](#common-process-envp-doc) | Environment variables of the process | | [`exit.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`exit.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`exit.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`exit.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`exit.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`exit.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`exit.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`exit.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`exit.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`exit.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`exit.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`exit.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`exit.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`exit.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`exit.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`exit.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`exit.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`exit.file.name`](#common-fileevent-name-doc) | File's basename | | [`exit.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`exit.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`exit.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`exit.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`exit.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`exit.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`exit.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`exit.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`exit.file.path`](#common-fileevent-path-doc) | File's path | | [`exit.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`exit.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`exit.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`exit.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`exit.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`exit.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | [`exit.fsuid`](#common-credentials-fsuid-doc) | FileSystem-uid of the process | | [`exit.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`exit.gid`](#common-credentials-gid-doc) | GID of the process | | [`exit.group`](#common-credentials-group-doc) | Group of the process | | [`exit.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`exit.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`exit.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`exit.interpreter.file.gid`](#common-filefields-gid-doc) | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.04531841352581978,
0.06363741308450699,
-0.08969822525978088,
-0.07417323440313339,
0.08016862720251083,
-0.05531547963619232,
0.022209711372852325,
0.08100304752588272,
-0.06197935715317726,
0.037514928728342056,
0.00849695224314928,
-0.02472672238945961,
0.061022430658340454,
0.035976... | 0.12645 |
| | [`exit.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`exit.gid`](#common-credentials-gid-doc) | GID of the process | | [`exit.group`](#common-credentials-group-doc) | Group of the process | | [`exit.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`exit.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`exit.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`exit.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`exit.interpreter.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`exit.interpreter.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`exit.interpreter.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`exit.interpreter.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`exit.interpreter.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`exit.interpreter.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`exit.interpreter.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`exit.interpreter.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`exit.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`exit.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`exit.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`exit.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`exit.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`exit.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`exit.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`exit.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`exit.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`exit.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`exit.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`exit.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`exit.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`exit.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`exit.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`exit.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`exit.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process is a kworker | | [`exit.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`exit.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`exit.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`exit.ppid`](#common-process-ppid-doc) | Parent process ID | | [`exit.tid`](#common-pidcontext-tid-doc) | Thread ID of the thread | | [`exit.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`exit.uid`](#common-credentials-uid-doc) | UID of the process | | [`exit.user`](#common-credentials-user-doc) | User of the process | | [`exit.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | [`exit.user\_session.identity`](#common-usersessioncontext-identity-doc) | User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type | | [`exit.user\_session.k8s\_groups`](#common-k8ssessioncontext-k8s\_groups-doc) | Kubernetes groups of the user that executed the process | | [`exit.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`exit.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`exit.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`exit.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`exit.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | SSH authentication method used by the user | | [`exit.user\_session.ssh\_client\_ip`](#common-sshsessioncontext-ssh\_client\_ip-doc) | SSH client IP of the user that executed the process | | [`exit.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`exit.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`exit.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | ### Event | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.04479759559035301,
0.05416287109255791,
-0.047239337116479874,
-0.05091901123523712,
0.04656426981091499,
-0.04452311620116234,
0.01587790437042713,
0.13586783409118652,
0.041953910142183304,
0.055974122136831284,
0.02432706020772457,
-0.008523046039044857,
0.008700166828930378,
-0.0070... | 0.106593 |
of the user that executed the process | | [`exit.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`exit.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`exit.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | ### Event `imds` An IMDS event was captured | Property | Definition | | -------- | ------------- | | [`imds.aws.is\_imds\_v2`](#imds-aws-is\_imds\_v2-doc) | a boolean which specifies if the IMDS event follows IMDSv1 or IMDSv2 conventions | | [`imds.aws.security\_credentials.type`](#imds-aws-security\_credentials-type-doc) | the security credentials type | | [`imds.cloud\_provider`](#imds-cloud\_provider-doc) | the intended cloud provider of the IMDS event | | [`imds.host`](#imds-host-doc) | the host of the HTTP protocol | | [`imds.server`](#imds-server-doc) | the server header of a response | | [`imds.type`](#imds-type-doc) | the type of IMDS event | | [`imds.url`](#imds-url-doc) | the queried IMDS URL | | [`imds.user\_agent`](#imds-user\_agent-doc) | the user agent of the HTTP client | | [`network.destination.ip`](#common-ipportcontext-ip-doc) | IP address | | [`network.destination.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`network.destination.port`](#common-ipportcontext-port-doc) | Port number | | [`network.device.ifname`](#common-networkdevicecontext-ifname-doc) | Interface ifname | | [`network.device.netns`](#common-networkdevicecontext-netns-doc) | Interface NetNS ID | | [`network.l3\_protocol`](#common-networkcontext-l3\_protocol-doc) | L3 protocol of the network packet | | [`network.l4\_protocol`](#common-networkcontext-l4\_protocol-doc) | L4 protocol of the network packet | | [`network.network\_direction`](#common-networkcontext-network\_direction-doc) | Network direction of the network packet | | [`network.size`](#common-networkcontext-size-doc) | Size in bytes of the network packet | | [`network.source.ip`](#common-ipportcontext-ip-doc) | IP address | | [`network.source.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`network.source.port`](#common-ipportcontext-port-doc) | Port number | | [`network.type`](#common-networkcontext-type-doc) | Type of the network packet | ### Event `link` Create a new name/alias for a file | Property | Definition | | -------- | ------------- | | [`link.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`link.file.destination.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`link.file.destination.extension`](#common-fileevent-extension-doc) | File's extension | | [`link.file.destination.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`link.file.destination.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`link.file.destination.group`](#common-filefields-group-doc) | Group of the file's owner | | [`link.file.destination.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`link.file.destination.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`link.file.destination.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`link.file.destination.mode`](#common-filefields-mode-doc) | Mode of the file | | [`link.file.destination.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`link.file.destination.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`link.file.destination.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`link.file.destination.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`link.file.destination.name`](#common-fileevent-name-doc) | File's basename | | [`link.file.destination.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`link.file.destination.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`link.file.destination.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`link.file.destination.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`link.file.destination.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`link.file.destination.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`link.file.destination.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`link.file.destination.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`link.file.destination.path`](#common-fileevent-path-doc) | File's path | | [`link.file.destination.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`link.file.destination.rights`](#common-filefields-rights-doc) | Rights of the file | | [`link.file.destination.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`link.file.destination.user`](#common-filefields-user-doc) | User of the file's owner | | [`link.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`link.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`link.file.gid`](#common-filefields-gid-doc) | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.015307378023862839,
0.09459785372018814,
-0.04331400617957115,
-0.061871487647295,
0.03702367842197418,
-0.029746048152446747,
0.08416979759931564,
0.006636057980358601,
0.09413199126720428,
0.06483681499958038,
0.038597095757722855,
-0.060121700167655945,
0.05112411081790924,
0.0286127... | 0.047959 |
| [`link.file.destination.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`link.file.destination.rights`](#common-filefields-rights-doc) | Rights of the file | | [`link.file.destination.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`link.file.destination.user`](#common-filefields-user-doc) | User of the file's owner | | [`link.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`link.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`link.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`link.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`link.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`link.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`link.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`link.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`link.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`link.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`link.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`link.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`link.file.name`](#common-fileevent-name-doc) | File's basename | | [`link.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`link.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`link.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`link.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`link.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`link.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`link.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`link.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`link.file.path`](#common-fileevent-path-doc) | File's path | | [`link.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`link.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`link.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`link.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`link.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`link.syscall.destination.path`](#link-syscall-destination-path-doc) | Destination path argument of the syscall | | [`link.syscall.path`](#link-syscall-path-doc) | Path argument of the syscall | ### Event `load\_module` A new kernel module was loaded | Property | Definition | | -------- | ------------- | | [`load\_module.args`](#load\_module-args-doc) | Parameters (as a string) of the new kernel module | | [`load\_module.args\_truncated`](#load\_module-args\_truncated-doc) | Indicates if the arguments were truncated or not | | [`load\_module.argv`](#load\_module-argv-doc) | Parameters (as an array) of the new kernel module | | [`load\_module.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`load\_module.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`load\_module.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`load\_module.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`load\_module.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`load\_module.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`load\_module.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`load\_module.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`load\_module.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`load\_module.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`load\_module.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`load\_module.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`load\_module.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`load\_module.file.name`](#common-fileevent-name-doc) | File's basename | | [`load\_module.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`load\_module.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`load\_module.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`load\_module.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`load\_module.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.0031773685477674007,
0.04196120798587799,
-0.019657257944345474,
-0.0000630795766483061,
0.0912729799747467,
-0.03370077162981033,
0.03086422197520733,
0.0783889964222908,
-0.06888895481824875,
0.032168254256248474,
0.04196418076753616,
0.03933614119887352,
0.03232331946492195,
0.0233531... | 0.050455 |
Epoch of the package that provided this file | | [`load\_module.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`load\_module.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`load\_module.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`load\_module.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`load\_module.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`load\_module.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`load\_module.file.path`](#common-fileevent-path-doc) | File's path | | [`load\_module.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`load\_module.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`load\_module.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`load\_module.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`load\_module.loaded\_from\_memory`](#load\_module-loaded\_from\_memory-doc) | Indicates if the kernel module was loaded from memory | | [`load\_module.name`](#load\_module-name-doc) | Name of the new kernel module | | [`load\_module.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | ### Event `mkdir` A directory was created | Property | Definition | | -------- | ------------- | | [`mkdir.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`mkdir.file.destination.mode`](#mkdir-file-destination-mode-doc) | Mode of the new directory | | [`mkdir.file.destination.rights`](#mkdir-file-destination-rights-doc) | Rights of the new directory | | [`mkdir.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`mkdir.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`mkdir.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`mkdir.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`mkdir.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`mkdir.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`mkdir.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`mkdir.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`mkdir.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`mkdir.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`mkdir.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`mkdir.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`mkdir.file.name`](#common-fileevent-name-doc) | File's basename | | [`mkdir.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`mkdir.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`mkdir.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`mkdir.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`mkdir.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`mkdir.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`mkdir.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`mkdir.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`mkdir.file.path`](#common-fileevent-path-doc) | File's path | | [`mkdir.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`mkdir.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`mkdir.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`mkdir.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`mkdir.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`mkdir.syscall.mode`](#mkdir-syscall-mode-doc) | Mode of the new directory | | [`mkdir.syscall.path`](#mkdir-syscall-path-doc) | Path argument of the syscall | ### Event `mmap` A mmap command was executed | Property | Definition | | -------- | ------------- | | [`mmap.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`mmap.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`mmap.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`mmap.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`mmap.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`mmap.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`mmap.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.038812123239040375,
0.04833720251917839,
0.07179708033800125,
-0.0317685566842556,
0.1241346076130867,
-0.013673839159309864,
-0.01038034725934267,
0.027948295697569847,
-0.021109819412231445,
-0.03477822244167328,
0.04853620007634163,
-0.01091697160154581,
-0.0554419569671154,
-0.08062... | 0.077913 |
(ctime) of the file | | [`mmap.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`mmap.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`mmap.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`mmap.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`mmap.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`mmap.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`mmap.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`mmap.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`mmap.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`mmap.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`mmap.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`mmap.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`mmap.file.name`](#common-fileevent-name-doc) | File's basename | | [`mmap.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`mmap.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`mmap.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`mmap.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`mmap.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`mmap.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`mmap.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`mmap.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`mmap.file.path`](#common-fileevent-path-doc) | File's path | | [`mmap.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`mmap.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`mmap.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`mmap.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`mmap.flags`](#mmap-flags-doc) | memory segment flags | | [`mmap.protection`](#mmap-protection-doc) | memory segment protection | | [`mmap.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | ### Event `mount` \_This event type is experimental and may change in the future.\_ A filesystem was mounted | Property | Definition | | -------- | ------------- | | [`mount.detached`](#mount-detached-doc) | Mount is detached from the VFS | | [`mount.fs\_type`](#mount-fs\_type-doc) | Type of the mounted file system | | [`mount.mountpoint.path`](#mount-mountpoint-path-doc) | Path of the mount point | | [`mount.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`mount.root.path`](#mount-root-path-doc) | Root path of the mount | | [`mount.source.path`](#mount-source-path-doc) | Source path of a bind mount | | [`mount.syscall.fs\_type`](#mount-syscall-fs\_type-doc) | File system type argument of the syscall | | [`mount.syscall.mountpoint.path`](#mount-syscall-mountpoint-path-doc) | Mount point path argument of the syscall | | [`mount.syscall.source.path`](#mount-syscall-source-path-doc) | Source path argument of the syscall | | [`mount.visible`](#mount-visible-doc) | Mount is not visible in the VFS | ### Event `mprotect` A mprotect command was executed | Property | Definition | | -------- | ------------- | | [`mprotect.req\_protection`](#mprotect-req\_protection-doc) | new memory segment protection | | [`mprotect.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`mprotect.vm\_protection`](#mprotect-vm\_protection-doc) | initial memory segment protection | ### Event `network\_flow\_monitor` A network monitor event was sent | Property | Definition | | -------- | ------------- | | [`network\_flow\_monitor.device.ifname`](#common-networkdevicecontext-ifname-doc) | Interface ifname | | [`network\_flow\_monitor.device.netns`](#common-networkdevicecontext-netns-doc) | Interface NetNS ID | | [`network\_flow\_monitor.flows.destination.ip`](#common-ipportcontext-ip-doc) | IP address | | [`network\_flow\_monitor.flows.destination.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`network\_flow\_monitor.flows.destination.port`](#common-ipportcontext-port-doc) | Port number | | [`network\_flow\_monitor.flows.egress.data\_size`](#common-networkstats-data\_size-doc) | Amount of data transmitted or received | | [`network\_flow\_monitor.flows.egress.packet\_count`](#common-networkstats-packet\_count-doc) | Count of network packets transmitted or received | | [`network\_flow\_monitor.flows.ingress.data\_size`](#common-networkstats-data\_size-doc) | Amount of data transmitted or received | | [`network\_flow\_monitor.flows.ingress.packet\_count`](#common-networkstats-packet\_count-doc) | Count of network packets transmitted or received | | [`network\_flow\_monitor.flows.l3\_protocol`](#network\_flow\_monitor-flows-l3\_protocol-doc) | L3 protocol of the network packet | | [`network\_flow\_monitor.flows.l4\_protocol`](#network\_flow\_monitor-flows-l4\_protocol-doc) | L4 protocol of the network packet | | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.0839918851852417,
0.07760737836360931,
-0.026412585750222206,
-0.05077054351568222,
0.1078752651810646,
-0.061964165419340134,
0.0350651778280735,
0.034721873700618744,
0.04578506946563721,
-0.018763728439807892,
0.06280838698148727,
0.06983070075511932,
0.0258808471262455,
-0.006829798... | 0.087863 |
Count of network packets transmitted or received | | [`network\_flow\_monitor.flows.ingress.data\_size`](#common-networkstats-data\_size-doc) | Amount of data transmitted or received | | [`network\_flow\_monitor.flows.ingress.packet\_count`](#common-networkstats-packet\_count-doc) | Count of network packets transmitted or received | | [`network\_flow\_monitor.flows.l3\_protocol`](#network\_flow\_monitor-flows-l3\_protocol-doc) | L3 protocol of the network packet | | [`network\_flow\_monitor.flows.l4\_protocol`](#network\_flow\_monitor-flows-l4\_protocol-doc) | L4 protocol of the network packet | | [`network\_flow\_monitor.flows.length`](#common-string-length-doc) | Length of the corresponding element | | [`network\_flow\_monitor.flows.source.ip`](#common-ipportcontext-ip-doc) | IP address | | [`network\_flow\_monitor.flows.source.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`network\_flow\_monitor.flows.source.port`](#common-ipportcontext-port-doc) | Port number | ### Event `open` A file was opened | Property | Definition | | -------- | ------------- | | [`open.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`open.file.destination.mode`](#open-file-destination-mode-doc) | Mode of the created file | | [`open.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`open.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`open.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`open.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`open.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`open.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`open.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`open.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`open.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`open.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`open.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`open.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`open.file.name`](#common-fileevent-name-doc) | File's basename | | [`open.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`open.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`open.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`open.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`open.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`open.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`open.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`open.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`open.file.path`](#common-fileevent-path-doc) | File's path | | [`open.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`open.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`open.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`open.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`open.flags`](#open-flags-doc) | Flags used when opening the file | | [`open.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`open.syscall.flags`](#open-syscall-flags-doc) | Flags argument of the syscall | | [`open.syscall.mode`](#open-syscall-mode-doc) | Mode argument of the syscall | | [`open.syscall.path`](#open-syscall-path-doc) | Path argument of the syscall | ### Event `packet` A raw network packet was captured | Property | Definition | | -------- | ------------- | | [`network.destination.ip`](#common-ipportcontext-ip-doc) | IP address | | [`network.destination.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`network.destination.port`](#common-ipportcontext-port-doc) | Port number | | [`network.device.ifname`](#common-networkdevicecontext-ifname-doc) | Interface ifname | | [`network.device.netns`](#common-networkdevicecontext-netns-doc) | Interface NetNS ID | | [`network.l3\_protocol`](#common-networkcontext-l3\_protocol-doc) | L3 protocol of the network packet | | [`network.l4\_protocol`](#common-networkcontext-l4\_protocol-doc) | L4 protocol of the network packet | | [`network.network\_direction`](#common-networkcontext-network\_direction-doc) | Network direction of the network packet | | [`network.size`](#common-networkcontext-size-doc) | Size in bytes of the network packet | | [`network.source.ip`](#common-ipportcontext-ip-doc) | IP address | | [`network.source.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`network.source.port`](#common-ipportcontext-port-doc) | Port number | | [`network.type`](#common-networkcontext-type-doc) | Type of the network packet | | [`packet.destination.ip`](#common-ipportcontext-ip-doc) | IP address | | [`packet.destination.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`packet.destination.port`](#common-ipportcontext-port-doc) | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.029023902490735054,
0.018627233803272247,
-0.03371730446815491,
-0.0013962200609967113,
0.06136534363031387,
-0.00718623585999012,
0.07960379123687744,
0.0017616897821426392,
-0.004029640927910805,
0.004907401744276285,
0.010130554437637329,
-0.08679066598415375,
0.03301678225398064,
-0.... | 0.082369 |
| [`network.source.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`network.source.port`](#common-ipportcontext-port-doc) | Port number | | [`network.type`](#common-networkcontext-type-doc) | Type of the network packet | | [`packet.destination.ip`](#common-ipportcontext-ip-doc) | IP address | | [`packet.destination.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`packet.destination.port`](#common-ipportcontext-port-doc) | Port number | | [`packet.device.ifname`](#common-networkdevicecontext-ifname-doc) | Interface ifname | | [`packet.device.netns`](#common-networkdevicecontext-netns-doc) | Interface NetNS ID | | [`packet.filter`](#packet-filter-doc) | pcap filter expression | | [`packet.l3\_protocol`](#common-networkcontext-l3\_protocol-doc) | L3 protocol of the network packet | | [`packet.l4\_protocol`](#common-networkcontext-l4\_protocol-doc) | L4 protocol of the network packet | | [`packet.network\_direction`](#common-networkcontext-network\_direction-doc) | Network direction of the network packet | | [`packet.size`](#common-networkcontext-size-doc) | Size in bytes of the network packet | | [`packet.source.ip`](#common-ipportcontext-ip-doc) | IP address | | [`packet.source.is\_public`](#common-ipportcontext-is\_public-doc) | Whether the IP address belongs to a public network | | [`packet.source.port`](#common-ipportcontext-port-doc) | Port number | | [`packet.tls.version`](#packet-tls-version-doc) | TLS version | | [`packet.type`](#common-networkcontext-type-doc) | Type of the network packet | ### Event `prctl` A prctl command was executed | Property | Definition | | -------- | ------------- | | [`prctl.is\_name\_truncated`](#prctl-is\_name\_truncated-doc) | Indicates that the name field is truncated | | [`prctl.new\_name`](#prctl-new\_name-doc) | New name of the process | | [`prctl.option`](#prctl-option-doc) | prctl option | | [`prctl.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | ### Event `ptrace` A ptrace command was executed | Property | Definition | | -------- | ------------- | | [`ptrace.request`](#ptrace-request-doc) | ptrace request | | [`ptrace.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`ptrace.tracee.ancestors.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`ptrace.tracee.ancestors.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | [`ptrace.tracee.ancestors.args\_options`](#common-process-args\_options-doc) | Argument of the process as options | | [`ptrace.tracee.ancestors.args\_truncated`](#common-process-args\_truncated-doc) | Indicator of arguments truncation | | [`ptrace.tracee.ancestors.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`ptrace.tracee.ancestors.argv0`](#common-process-argv0-doc) | First argument of the process | | [`ptrace.tracee.ancestors.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`ptrace.tracee.ancestors.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`ptrace.tracee.ancestors.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`ptrace.tracee.ancestors.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`ptrace.tracee.ancestors.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities that the process successfully used | | [`ptrace.tracee.ancestors.cgroup.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`ptrace.tracee.ancestors.cgroup.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`ptrace.tracee.ancestors.cgroup.id`](#common-cgroupcontext-id-doc) | ID of the cgroup | | [`ptrace.tracee.ancestors.cgroup.version`](#common-cgroupcontext-version-doc) | [Experimental] Version of the cgroup API | | [`ptrace.tracee.ancestors.comm`](#common-process-comm-doc) | Comm attribute of the process | | [`ptrace.tracee.ancestors.container.created\_at`](#common-containercontext-created\_at-doc) | Timestamp of the creation of the container | | [`ptrace.tracee.ancestors.container.id`](#common-containercontext-id-doc) | ID of the container | | [`ptrace.tracee.ancestors.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`ptrace.tracee.ancestors.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`ptrace.tracee.ancestors.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`ptrace.tracee.ancestors.egroup`](#common-credentials-egroup-doc) | Effective group of the process | | [`ptrace.tracee.ancestors.envp`](#common-process-envp-doc) | Environment variables of the process | | [`ptrace.tracee.ancestors.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`ptrace.tracee.ancestors.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`ptrace.tracee.ancestors.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`ptrace.tracee.ancestors.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`ptrace.tracee.ancestors.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`ptrace.tracee.ancestors.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`ptrace.tracee.ancestors.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`ptrace.tracee.ancestors.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`ptrace.tracee.ancestors.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`ptrace.tracee.ancestors.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`ptrace.tracee.ancestors.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`ptrace.tracee.ancestors.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`ptrace.tracee.ancestors.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`ptrace.tracee.ancestors.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`ptrace.tracee.ancestors.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.01866607367992401,
0.02410016395151615,
-0.031123807653784752,
-0.03908420354127884,
0.08622287958860397,
-0.0556735061109066,
0.07096155732870102,
-0.0011488298187032342,
-0.09226398169994354,
0.05210816115140915,
-0.008564271964132786,
-0.0213331151753664,
0.008951458148658276,
-0.0033... | 0.015472 |
cryptographic hashes computed for this file | | [`ptrace.tracee.ancestors.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`ptrace.tracee.ancestors.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`ptrace.tracee.ancestors.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`ptrace.tracee.ancestors.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`ptrace.tracee.ancestors.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`ptrace.tracee.ancestors.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`ptrace.tracee.ancestors.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`ptrace.tracee.ancestors.file.name`](#common-fileevent-name-doc) | File's basename | | [`ptrace.tracee.ancestors.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.ancestors.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`ptrace.tracee.ancestors.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`ptrace.tracee.ancestors.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`ptrace.tracee.ancestors.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`ptrace.tracee.ancestors.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`ptrace.tracee.ancestors.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`ptrace.tracee.ancestors.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`ptrace.tracee.ancestors.file.path`](#common-fileevent-path-doc) | File's path | | [`ptrace.tracee.ancestors.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.ancestors.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`ptrace.tracee.ancestors.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`ptrace.tracee.ancestors.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`ptrace.tracee.ancestors.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`ptrace.tracee.ancestors.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | [`ptrace.tracee.ancestors.fsuid`](#common-credentials-fsuid-doc) | FileSystem-uid of the process | | [`ptrace.tracee.ancestors.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`ptrace.tracee.ancestors.gid`](#common-credentials-gid-doc) | GID of the process | | [`ptrace.tracee.ancestors.group`](#common-credentials-group-doc) | Group of the process | | [`ptrace.tracee.ancestors.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`ptrace.tracee.ancestors.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`ptrace.tracee.ancestors.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`ptrace.tracee.ancestors.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`ptrace.tracee.ancestors.interpreter.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`ptrace.tracee.ancestors.interpreter.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`ptrace.tracee.ancestors.interpreter.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`ptrace.tracee.ancestors.interpreter.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`ptrace.tracee.ancestors.interpreter.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`ptrace.tracee.ancestors.interpreter.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`ptrace.tracee.ancestors.interpreter.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`ptrace.tracee.ancestors.interpreter.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`ptrace.tracee.ancestors.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`ptrace.tracee.ancestors.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`ptrace.tracee.ancestors.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.ancestors.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`ptrace.tracee.ancestors.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`ptrace.tracee.ancestors.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`ptrace.tracee.ancestors.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`ptrace.tracee.ancestors.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`ptrace.tracee.ancestors.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`ptrace.tracee.ancestors.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`ptrace.tracee.ancestors.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`ptrace.tracee.ancestors.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.ancestors.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`ptrace.tracee.ancestors.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`ptrace.tracee.ancestors.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`ptrace.tracee.ancestors.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.06738380342721939,
0.02526666596531868,
0.001936435466632247,
-0.02504551224410534,
0.15300317108631134,
-0.06283111870288849,
-0.02932647243142128,
0.037976883351802826,
0.015797220170497894,
-0.030069667845964432,
0.08189335465431213,
-0.011357005685567856,
0.0013986531412228942,
-0.0... | -0.010247 |
[`ptrace.tracee.ancestors.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.ancestors.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`ptrace.tracee.ancestors.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`ptrace.tracee.ancestors.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`ptrace.tracee.ancestors.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`ptrace.tracee.ancestors.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process is a kworker | | [`ptrace.tracee.ancestors.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`ptrace.tracee.ancestors.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.ancestors.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`ptrace.tracee.ancestors.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`ptrace.tracee.ancestors.ppid`](#common-process-ppid-doc) | Parent process ID | | [`ptrace.tracee.ancestors.tid`](#common-pidcontext-tid-doc) | Thread ID of the thread | | [`ptrace.tracee.ancestors.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`ptrace.tracee.ancestors.uid`](#common-credentials-uid-doc) | UID of the process | | [`ptrace.tracee.ancestors.user`](#common-credentials-user-doc) | User of the process | | [`ptrace.tracee.ancestors.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | [`ptrace.tracee.ancestors.user\_session.identity`](#common-usersessioncontext-identity-doc) | User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type | | [`ptrace.tracee.ancestors.user\_session.k8s\_groups`](#common-k8ssessioncontext-k8s\_groups-doc) | Kubernetes groups of the user that executed the process | | [`ptrace.tracee.ancestors.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`ptrace.tracee.ancestors.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`ptrace.tracee.ancestors.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`ptrace.tracee.ancestors.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`ptrace.tracee.ancestors.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | SSH authentication method used by the user | | [`ptrace.tracee.ancestors.user\_session.ssh\_client\_ip`](#common-sshsessioncontext-ssh\_client\_ip-doc) | SSH client IP of the user that executed the process | | [`ptrace.tracee.ancestors.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`ptrace.tracee.ancestors.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`ptrace.tracee.ancestors.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | | [`ptrace.tracee.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`ptrace.tracee.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | [`ptrace.tracee.args\_options`](#common-process-args\_options-doc) | Argument of the process as options | | [`ptrace.tracee.args\_truncated`](#common-process-args\_truncated-doc) | Indicator of arguments truncation | | [`ptrace.tracee.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`ptrace.tracee.argv0`](#common-process-argv0-doc) | First argument of the process | | [`ptrace.tracee.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`ptrace.tracee.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`ptrace.tracee.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`ptrace.tracee.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`ptrace.tracee.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities that the process successfully used | | [`ptrace.tracee.cgroup.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`ptrace.tracee.cgroup.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`ptrace.tracee.cgroup.id`](#common-cgroupcontext-id-doc) | ID of the cgroup | | [`ptrace.tracee.cgroup.version`](#common-cgroupcontext-version-doc) | [Experimental] Version of the cgroup API | | [`ptrace.tracee.comm`](#common-process-comm-doc) | Comm attribute of the process | | [`ptrace.tracee.container.created\_at`](#common-containercontext-created\_at-doc) | Timestamp of the creation of the container | | [`ptrace.tracee.container.id`](#common-containercontext-id-doc) | ID of the container | | [`ptrace.tracee.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`ptrace.tracee.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`ptrace.tracee.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`ptrace.tracee.egroup`](#common-credentials-egroup-doc) | Effective group of the process | | [`ptrace.tracee.envp`](#common-process-envp-doc) | Environment variables of the process | | [`ptrace.tracee.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`ptrace.tracee.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`ptrace.tracee.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`ptrace.tracee.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`ptrace.tracee.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.06734238564968109,
0.024773314595222473,
-0.06557836383581161,
-0.04764919728040695,
0.029457148164510727,
-0.0963057205080986,
0.045693740248680115,
0.0616329200565815,
-0.040738895535469055,
-0.007895111106336117,
0.01825891248881817,
-0.04070906713604927,
-0.018929556012153625,
-0.02... | 0.096221 |
process | | [`ptrace.tracee.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`ptrace.tracee.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`ptrace.tracee.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`ptrace.tracee.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`ptrace.tracee.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`ptrace.tracee.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`ptrace.tracee.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`ptrace.tracee.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`ptrace.tracee.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`ptrace.tracee.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`ptrace.tracee.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`ptrace.tracee.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`ptrace.tracee.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`ptrace.tracee.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`ptrace.tracee.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`ptrace.tracee.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`ptrace.tracee.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`ptrace.tracee.file.name`](#common-fileevent-name-doc) | File's basename | | [`ptrace.tracee.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`ptrace.tracee.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`ptrace.tracee.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`ptrace.tracee.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`ptrace.tracee.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`ptrace.tracee.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`ptrace.tracee.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`ptrace.tracee.file.path`](#common-fileevent-path-doc) | File's path | | [`ptrace.tracee.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`ptrace.tracee.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`ptrace.tracee.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`ptrace.tracee.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`ptrace.tracee.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | [`ptrace.tracee.fsuid`](#common-credentials-fsuid-doc) | FileSystem-uid of the process | | [`ptrace.tracee.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`ptrace.tracee.gid`](#common-credentials-gid-doc) | GID of the process | | [`ptrace.tracee.group`](#common-credentials-group-doc) | Group of the process | | [`ptrace.tracee.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`ptrace.tracee.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`ptrace.tracee.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`ptrace.tracee.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`ptrace.tracee.interpreter.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`ptrace.tracee.interpreter.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`ptrace.tracee.interpreter.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`ptrace.tracee.interpreter.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`ptrace.tracee.interpreter.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`ptrace.tracee.interpreter.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`ptrace.tracee.interpreter.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`ptrace.tracee.interpreter.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`ptrace.tracee.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`ptrace.tracee.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`ptrace.tracee.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`ptrace.tracee.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`ptrace.tracee.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`ptrace.tracee.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`ptrace.tracee.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`ptrace.tracee.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.028200898319482803,
0.019453760236501694,
-0.0563424713909626,
-0.040730930864810944,
0.0317702516913414,
-0.0808134451508522,
0.05398211255669594,
0.1203811839222908,
-0.021301869302988052,
0.03839445114135742,
0.018860885873436928,
-0.037818361073732376,
-0.007718341890722513,
-0.0280... | 0.102549 |
[`ptrace.tracee.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`ptrace.tracee.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`ptrace.tracee.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`ptrace.tracee.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`ptrace.tracee.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`ptrace.tracee.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`ptrace.tracee.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`ptrace.tracee.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`ptrace.tracee.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`ptrace.tracee.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`ptrace.tracee.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process is a kworker | | [`ptrace.tracee.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`ptrace.tracee.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`ptrace.tracee.parent.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`ptrace.tracee.parent.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | [`ptrace.tracee.parent.args\_options`](#common-process-args\_options-doc) | Argument of the process as options | | [`ptrace.tracee.parent.args\_truncated`](#common-process-args\_truncated-doc) | Indicator of arguments truncation | | [`ptrace.tracee.parent.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`ptrace.tracee.parent.argv0`](#common-process-argv0-doc) | First argument of the process | | [`ptrace.tracee.parent.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`ptrace.tracee.parent.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`ptrace.tracee.parent.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`ptrace.tracee.parent.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`ptrace.tracee.parent.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities that the process successfully used | | [`ptrace.tracee.parent.cgroup.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`ptrace.tracee.parent.cgroup.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`ptrace.tracee.parent.cgroup.id`](#common-cgroupcontext-id-doc) | ID of the cgroup | | [`ptrace.tracee.parent.cgroup.version`](#common-cgroupcontext-version-doc) | [Experimental] Version of the cgroup API | | [`ptrace.tracee.parent.comm`](#common-process-comm-doc) | Comm attribute of the process | | [`ptrace.tracee.parent.container.created\_at`](#common-containercontext-created\_at-doc) | Timestamp of the creation of the container | | [`ptrace.tracee.parent.container.id`](#common-containercontext-id-doc) | ID of the container | | [`ptrace.tracee.parent.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`ptrace.tracee.parent.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`ptrace.tracee.parent.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`ptrace.tracee.parent.egroup`](#common-credentials-egroup-doc) | Effective group of the process | | [`ptrace.tracee.parent.envp`](#common-process-envp-doc) | Environment variables of the process | | [`ptrace.tracee.parent.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`ptrace.tracee.parent.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`ptrace.tracee.parent.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`ptrace.tracee.parent.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`ptrace.tracee.parent.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`ptrace.tracee.parent.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`ptrace.tracee.parent.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`ptrace.tracee.parent.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`ptrace.tracee.parent.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`ptrace.tracee.parent.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`ptrace.tracee.parent.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`ptrace.tracee.parent.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`ptrace.tracee.parent.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`ptrace.tracee.parent.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`ptrace.tracee.parent.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`ptrace.tracee.parent.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`ptrace.tracee.parent.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`ptrace.tracee.parent.file.name`](#common-fileevent-name-doc) | File's basename | | [`ptrace.tracee.parent.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.parent.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`ptrace.tracee.parent.file.package.name`](#common-fileevent-package-name-doc) | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.056712549179792404,
0.02198508195579052,
0.051289550960063934,
-0.04308639466762543,
0.11625463515520096,
-0.025765249505639076,
0.03834529593586922,
0.03911440819501877,
-0.05360559746623039,
-0.020040133967995644,
0.0361081138253212,
-0.022116130217909813,
-0.0506255105137825,
-0.0377... | 0.087482 |
Mount ID of the file | | [`ptrace.tracee.parent.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`ptrace.tracee.parent.file.name`](#common-fileevent-name-doc) | File's basename | | [`ptrace.tracee.parent.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.parent.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`ptrace.tracee.parent.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`ptrace.tracee.parent.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`ptrace.tracee.parent.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`ptrace.tracee.parent.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`ptrace.tracee.parent.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`ptrace.tracee.parent.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`ptrace.tracee.parent.file.path`](#common-fileevent-path-doc) | File's path | | [`ptrace.tracee.parent.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.parent.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`ptrace.tracee.parent.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`ptrace.tracee.parent.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`ptrace.tracee.parent.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`ptrace.tracee.parent.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | [`ptrace.tracee.parent.fsuid`](#common-credentials-fsuid-doc) | FileSystem-uid of the process | | [`ptrace.tracee.parent.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`ptrace.tracee.parent.gid`](#common-credentials-gid-doc) | GID of the process | | [`ptrace.tracee.parent.group`](#common-credentials-group-doc) | Group of the process | | [`ptrace.tracee.parent.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`ptrace.tracee.parent.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`ptrace.tracee.parent.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`ptrace.tracee.parent.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`ptrace.tracee.parent.interpreter.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`ptrace.tracee.parent.interpreter.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`ptrace.tracee.parent.interpreter.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`ptrace.tracee.parent.interpreter.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`ptrace.tracee.parent.interpreter.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`ptrace.tracee.parent.interpreter.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`ptrace.tracee.parent.interpreter.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`ptrace.tracee.parent.interpreter.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`ptrace.tracee.parent.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`ptrace.tracee.parent.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`ptrace.tracee.parent.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.parent.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`ptrace.tracee.parent.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`ptrace.tracee.parent.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`ptrace.tracee.parent.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`ptrace.tracee.parent.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`ptrace.tracee.parent.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`ptrace.tracee.parent.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`ptrace.tracee.parent.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`ptrace.tracee.parent.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`ptrace.tracee.parent.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`ptrace.tracee.parent.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`ptrace.tracee.parent.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`ptrace.tracee.parent.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`ptrace.tracee.parent.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process is a kworker | | [`ptrace.tracee.parent.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`ptrace.tracee.parent.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`ptrace.tracee.parent.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`ptrace.tracee.parent.ppid`](#common-process-ppid-doc) | Parent process ID | | [`ptrace.tracee.parent.tid`](#common-pidcontext-tid-doc) | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.053352516144514084,
0.018155021592974663,
0.029947776347398758,
-0.014299668371677399,
0.13235974311828613,
-0.07257309556007385,
0.015580114908516407,
0.07958588749170303,
-0.023881690576672554,
-0.0305186677724123,
0.10551734268665314,
-0.04180211201310158,
-0.01602337881922722,
-0.02... | 0.089147 |
whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`ptrace.tracee.parent.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`ptrace.tracee.parent.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`ptrace.tracee.parent.ppid`](#common-process-ppid-doc) | Parent process ID | | [`ptrace.tracee.parent.tid`](#common-pidcontext-tid-doc) | Thread ID of the thread | | [`ptrace.tracee.parent.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`ptrace.tracee.parent.uid`](#common-credentials-uid-doc) | UID of the process | | [`ptrace.tracee.parent.user`](#common-credentials-user-doc) | User of the process | | [`ptrace.tracee.parent.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | [`ptrace.tracee.parent.user\_session.identity`](#common-usersessioncontext-identity-doc) | User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type | | [`ptrace.tracee.parent.user\_session.k8s\_groups`](#common-k8ssessioncontext-k8s\_groups-doc) | Kubernetes groups of the user that executed the process | | [`ptrace.tracee.parent.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`ptrace.tracee.parent.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`ptrace.tracee.parent.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`ptrace.tracee.parent.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`ptrace.tracee.parent.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | SSH authentication method used by the user | | [`ptrace.tracee.parent.user\_session.ssh\_client\_ip`](#common-sshsessioncontext-ssh\_client\_ip-doc) | SSH client IP of the user that executed the process | | [`ptrace.tracee.parent.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`ptrace.tracee.parent.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`ptrace.tracee.parent.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | | [`ptrace.tracee.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`ptrace.tracee.ppid`](#common-process-ppid-doc) | Parent process ID | | [`ptrace.tracee.tid`](#common-pidcontext-tid-doc) | Thread ID of the thread | | [`ptrace.tracee.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`ptrace.tracee.uid`](#common-credentials-uid-doc) | UID of the process | | [`ptrace.tracee.user`](#common-credentials-user-doc) | User of the process | | [`ptrace.tracee.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | [`ptrace.tracee.user\_session.identity`](#common-usersessioncontext-identity-doc) | User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type | | [`ptrace.tracee.user\_session.k8s\_groups`](#common-k8ssessioncontext-k8s\_groups-doc) | Kubernetes groups of the user that executed the process | | [`ptrace.tracee.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`ptrace.tracee.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`ptrace.tracee.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`ptrace.tracee.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`ptrace.tracee.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | SSH authentication method used by the user | | [`ptrace.tracee.user\_session.ssh\_client\_ip`](#common-sshsessioncontext-ssh\_client\_ip-doc) | SSH client IP of the user that executed the process | | [`ptrace.tracee.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`ptrace.tracee.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`ptrace.tracee.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | ### Event `removexattr` Remove extended attributes | Property | Definition | | -------- | ------------- | | [`removexattr.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`removexattr.file.destination.name`](#common-setxattrevent-file-destination-name-doc) | Name of the extended attribute | | [`removexattr.file.destination.namespace`](#common-setxattrevent-file-destination-namespace-doc) | Namespace of the extended attribute | | [`removexattr.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`removexattr.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`removexattr.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`removexattr.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`removexattr.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`removexattr.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`removexattr.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`removexattr.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`removexattr.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.08825434744358063,
-0.03467024862766266,
-0.056904613971710205,
-0.03629055991768837,
0.018783418461680412,
-0.07386358827352524,
0.04972003400325775,
-0.003954492975026369,
0.02599909156560898,
0.030387263745069504,
0.0110013447701931,
-0.029755810275673866,
0.013525794260203838,
-0.03... | 0.100217 |
| | [`removexattr.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`removexattr.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`removexattr.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`removexattr.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`removexattr.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`removexattr.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`removexattr.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`removexattr.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`removexattr.file.name`](#common-fileevent-name-doc) | File's basename | | [`removexattr.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`removexattr.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`removexattr.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`removexattr.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`removexattr.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`removexattr.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`removexattr.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`removexattr.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`removexattr.file.path`](#common-fileevent-path-doc) | File's path | | [`removexattr.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`removexattr.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`removexattr.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`removexattr.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`removexattr.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | ### Event `rename` A file/directory was renamed | Property | Definition | | -------- | ------------- | | [`rename.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`rename.file.destination.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`rename.file.destination.extension`](#common-fileevent-extension-doc) | File's extension | | [`rename.file.destination.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`rename.file.destination.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`rename.file.destination.group`](#common-filefields-group-doc) | Group of the file's owner | | [`rename.file.destination.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`rename.file.destination.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`rename.file.destination.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`rename.file.destination.mode`](#common-filefields-mode-doc) | Mode of the file | | [`rename.file.destination.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`rename.file.destination.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`rename.file.destination.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`rename.file.destination.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`rename.file.destination.name`](#common-fileevent-name-doc) | File's basename | | [`rename.file.destination.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`rename.file.destination.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`rename.file.destination.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`rename.file.destination.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`rename.file.destination.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`rename.file.destination.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`rename.file.destination.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`rename.file.destination.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`rename.file.destination.path`](#common-fileevent-path-doc) | File's path | | [`rename.file.destination.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`rename.file.destination.rights`](#common-filefields-rights-doc) | Rights of the file | | [`rename.file.destination.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`rename.file.destination.user`](#common-filefields-user-doc) | User of the file's owner | | [`rename.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`rename.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`rename.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.06038079410791397,
0.09206139296293259,
0.032150328159332275,
-0.011245801113545895,
0.14095854759216309,
-0.07154854387044907,
-0.029724005609750748,
-0.00023905972193460912,
0.06423641741275787,
-0.017380082979798317,
0.10591188073158264,
0.027409154921770096,
0.022573895752429962,
-0... | 0.026456 |
corresponding element | | [`rename.file.destination.rights`](#common-filefields-rights-doc) | Rights of the file | | [`rename.file.destination.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`rename.file.destination.user`](#common-filefields-user-doc) | User of the file's owner | | [`rename.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`rename.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`rename.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`rename.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`rename.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`rename.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`rename.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`rename.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`rename.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`rename.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`rename.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`rename.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`rename.file.name`](#common-fileevent-name-doc) | File's basename | | [`rename.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`rename.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`rename.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`rename.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`rename.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`rename.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`rename.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`rename.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`rename.file.path`](#common-fileevent-path-doc) | File's path | | [`rename.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`rename.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`rename.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`rename.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`rename.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`rename.syscall.destination.path`](#rename-syscall-destination-path-doc) | Destination path argument of the syscall | | [`rename.syscall.path`](#rename-syscall-path-doc) | Path argument of the syscall | ### Event `rmdir` A directory was removed | Property | Definition | | -------- | ------------- | | [`rmdir.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`rmdir.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`rmdir.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`rmdir.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`rmdir.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`rmdir.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`rmdir.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`rmdir.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`rmdir.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`rmdir.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`rmdir.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`rmdir.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`rmdir.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`rmdir.file.name`](#common-fileevent-name-doc) | File's basename | | [`rmdir.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`rmdir.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`rmdir.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`rmdir.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`rmdir.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`rmdir.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`rmdir.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`rmdir.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.00578142749145627,
0.0415157750248909,
0.006990001071244478,
-0.06244465336203575,
0.017930611968040466,
-0.04796146601438522,
0.03056490235030651,
0.05255750194191933,
-0.000198236622964032,
0.026760298758745193,
0.049279648810625076,
0.04077037796378136,
0.018217412754893303,
0.0396466... | 0.069313 |
package that provided this file | | [`rmdir.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`rmdir.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`rmdir.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`rmdir.file.path`](#common-fileevent-path-doc) | File's path | | [`rmdir.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`rmdir.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`rmdir.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`rmdir.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`rmdir.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`rmdir.syscall.path`](#rmdir-syscall-path-doc) | Path argument of the syscall | ### Event `selinux` An SELinux operation was run | Property | Definition | | -------- | ------------- | | [`selinux.bool.name`](#selinux-bool-name-doc) | SELinux boolean name | | [`selinux.bool.state`](#selinux-bool-state-doc) | SELinux boolean new value | | [`selinux.bool\_commit.state`](#selinux-bool\_commit-state-doc) | Indicator of a SELinux boolean commit operation | | [`selinux.enforce.status`](#selinux-enforce-status-doc) | SELinux enforcement status (one of "enforcing", "permissive", "disabled") | ### Event `setgid` A process changed its effective gid | Property | Definition | | -------- | ------------- | | [`setgid.egid`](#setgid-egid-doc) | New effective GID of the process | | [`setgid.egroup`](#setgid-egroup-doc) | New effective group of the process | | [`setgid.fsgid`](#setgid-fsgid-doc) | New FileSystem GID of the process | | [`setgid.fsgroup`](#setgid-fsgroup-doc) | New FileSystem group of the process | | [`setgid.gid`](#setgid-gid-doc) | New GID of the process | | [`setgid.group`](#setgid-group-doc) | New group of the process | ### Event `setrlimit` A setrlimit command was executed | Property | Definition | | -------- | ------------- | | [`setrlimit.resource`](#setrlimit-resource-doc) | Resource type being limited | | [`setrlimit.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`setrlimit.rlim\_cur`](#setrlimit-rlim\_cur-doc) | Current (soft) limit value | | [`setrlimit.rlim\_max`](#setrlimit-rlim\_max-doc) | Maximum (hard) limit value | | [`setrlimit.target.ancestors.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`setrlimit.target.ancestors.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | [`setrlimit.target.ancestors.args\_options`](#common-process-args\_options-doc) | Argument of the process as options | | [`setrlimit.target.ancestors.args\_truncated`](#common-process-args\_truncated-doc) | Indicator of arguments truncation | | [`setrlimit.target.ancestors.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`setrlimit.target.ancestors.argv0`](#common-process-argv0-doc) | First argument of the process | | [`setrlimit.target.ancestors.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`setrlimit.target.ancestors.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`setrlimit.target.ancestors.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`setrlimit.target.ancestors.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`setrlimit.target.ancestors.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities that the process successfully used | | [`setrlimit.target.ancestors.cgroup.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`setrlimit.target.ancestors.cgroup.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`setrlimit.target.ancestors.cgroup.id`](#common-cgroupcontext-id-doc) | ID of the cgroup | | [`setrlimit.target.ancestors.cgroup.version`](#common-cgroupcontext-version-doc) | [Experimental] Version of the cgroup API | | [`setrlimit.target.ancestors.comm`](#common-process-comm-doc) | Comm attribute of the process | | [`setrlimit.target.ancestors.container.created\_at`](#common-containercontext-created\_at-doc) | Timestamp of the creation of the container | | [`setrlimit.target.ancestors.container.id`](#common-containercontext-id-doc) | ID of the container | | [`setrlimit.target.ancestors.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`setrlimit.target.ancestors.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`setrlimit.target.ancestors.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`setrlimit.target.ancestors.egroup`](#common-credentials-egroup-doc) | Effective group of the process | | [`setrlimit.target.ancestors.envp`](#common-process-envp-doc) | Environment variables of the process | | [`setrlimit.target.ancestors.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`setrlimit.target.ancestors.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`setrlimit.target.ancestors.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`setrlimit.target.ancestors.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`setrlimit.target.ancestors.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`setrlimit.target.ancestors.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`setrlimit.target.ancestors.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`setrlimit.target.ancestors.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`setrlimit.target.ancestors.file.group`](#common-filefields-group-doc) | Group of the file's | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.055480506271123886,
0.04530985653400421,
0.022084327414631844,
-0.08574207127094269,
0.1464621126651764,
-0.04655899107456207,
-0.0026424811221659184,
0.02418583258986473,
0.005860795732587576,
-0.0032928839791566133,
0.10074540972709656,
0.014875850640237331,
0.0019742585718631744,
-0.... | 0.057059 |
the process | | [`setrlimit.target.ancestors.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`setrlimit.target.ancestors.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`setrlimit.target.ancestors.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`setrlimit.target.ancestors.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`setrlimit.target.ancestors.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`setrlimit.target.ancestors.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`setrlimit.target.ancestors.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`setrlimit.target.ancestors.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`setrlimit.target.ancestors.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`setrlimit.target.ancestors.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`setrlimit.target.ancestors.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`setrlimit.target.ancestors.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`setrlimit.target.ancestors.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`setrlimit.target.ancestors.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`setrlimit.target.ancestors.file.name`](#common-fileevent-name-doc) | File's basename | | [`setrlimit.target.ancestors.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`setrlimit.target.ancestors.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`setrlimit.target.ancestors.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`setrlimit.target.ancestors.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`setrlimit.target.ancestors.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`setrlimit.target.ancestors.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`setrlimit.target.ancestors.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`setrlimit.target.ancestors.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`setrlimit.target.ancestors.file.path`](#common-fileevent-path-doc) | File's path | | [`setrlimit.target.ancestors.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`setrlimit.target.ancestors.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`setrlimit.target.ancestors.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`setrlimit.target.ancestors.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`setrlimit.target.ancestors.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`setrlimit.target.ancestors.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | [`setrlimit.target.ancestors.fsuid`](#common-credentials-fsuid-doc) | FileSystem-uid of the process | | [`setrlimit.target.ancestors.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`setrlimit.target.ancestors.gid`](#common-credentials-gid-doc) | GID of the process | | [`setrlimit.target.ancestors.group`](#common-credentials-group-doc) | Group of the process | | [`setrlimit.target.ancestors.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`setrlimit.target.ancestors.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`setrlimit.target.ancestors.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`setrlimit.target.ancestors.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`setrlimit.target.ancestors.interpreter.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`setrlimit.target.ancestors.interpreter.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`setrlimit.target.ancestors.interpreter.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`setrlimit.target.ancestors.interpreter.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`setrlimit.target.ancestors.interpreter.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`setrlimit.target.ancestors.interpreter.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`setrlimit.target.ancestors.interpreter.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`setrlimit.target.ancestors.interpreter.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`setrlimit.target.ancestors.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`setrlimit.target.ancestors.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`setrlimit.target.ancestors.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`setrlimit.target.ancestors.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`setrlimit.target.ancestors.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`setrlimit.target.ancestors.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`setrlimit.target.ancestors.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`setrlimit.target.ancestors.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`setrlimit.target.ancestors.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`setrlimit.target.ancestors.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.04473874345421791,
0.03622209280729294,
-0.04590022563934326,
-0.0827777162194252,
0.01960783451795578,
-0.06647316366434097,
-0.034460119903087616,
0.059375155717134476,
-0.002096315613016486,
0.06346771121025085,
0.041848380118608475,
-0.02472868748009205,
0.012058191932737827,
-0.030... | 0.069226 |
file | | [`setrlimit.target.ancestors.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`setrlimit.target.ancestors.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`setrlimit.target.ancestors.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`setrlimit.target.ancestors.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`setrlimit.target.ancestors.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`setrlimit.target.ancestors.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`setrlimit.target.ancestors.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`setrlimit.target.ancestors.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`setrlimit.target.ancestors.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`setrlimit.target.ancestors.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process is a kworker | | [`setrlimit.target.ancestors.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`setrlimit.target.ancestors.length`](#common-string-length-doc) | Length of the corresponding element | | [`setrlimit.target.ancestors.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`setrlimit.target.ancestors.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`setrlimit.target.ancestors.ppid`](#common-process-ppid-doc) | Parent process ID | | [`setrlimit.target.ancestors.tid`](#common-pidcontext-tid-doc) | Thread ID of the thread | | [`setrlimit.target.ancestors.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`setrlimit.target.ancestors.uid`](#common-credentials-uid-doc) | UID of the process | | [`setrlimit.target.ancestors.user`](#common-credentials-user-doc) | User of the process | | [`setrlimit.target.ancestors.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | [`setrlimit.target.ancestors.user\_session.identity`](#common-usersessioncontext-identity-doc) | User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type | | [`setrlimit.target.ancestors.user\_session.k8s\_groups`](#common-k8ssessioncontext-k8s\_groups-doc) | Kubernetes groups of the user that executed the process | | [`setrlimit.target.ancestors.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`setrlimit.target.ancestors.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`setrlimit.target.ancestors.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`setrlimit.target.ancestors.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`setrlimit.target.ancestors.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | SSH authentication method used by the user | | [`setrlimit.target.ancestors.user\_session.ssh\_client\_ip`](#common-sshsessioncontext-ssh\_client\_ip-doc) | SSH client IP of the user that executed the process | | [`setrlimit.target.ancestors.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`setrlimit.target.ancestors.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`setrlimit.target.ancestors.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | | [`setrlimit.target.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`setrlimit.target.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | [`setrlimit.target.args\_options`](#common-process-args\_options-doc) | Argument of the process as options | | [`setrlimit.target.args\_truncated`](#common-process-args\_truncated-doc) | Indicator of arguments truncation | | [`setrlimit.target.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`setrlimit.target.argv0`](#common-process-argv0-doc) | First argument of the process | | [`setrlimit.target.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`setrlimit.target.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`setrlimit.target.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`setrlimit.target.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`setrlimit.target.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities that the process successfully used | | [`setrlimit.target.cgroup.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`setrlimit.target.cgroup.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`setrlimit.target.cgroup.id`](#common-cgroupcontext-id-doc) | ID of the cgroup | | [`setrlimit.target.cgroup.version`](#common-cgroupcontext-version-doc) | [Experimental] Version of the cgroup API | | [`setrlimit.target.comm`](#common-process-comm-doc) | Comm attribute of the process | | [`setrlimit.target.container.created\_at`](#common-containercontext-created\_at-doc) | Timestamp of the creation of the container | | [`setrlimit.target.container.id`](#common-containercontext-id-doc) | ID of the container | | [`setrlimit.target.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`setrlimit.target.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`setrlimit.target.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`setrlimit.target.egroup`](#common-credentials-egroup-doc) | Effective group of the process | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.013161266222596169,
0.03459177911281586,
0.04570513963699341,
-0.06853960454463959,
0.08086742460727692,
-0.011299854144454002,
-0.0007893790025264025,
0.05223493650555611,
-0.06206699088215828,
-0.009397582150995731,
0.028028354048728943,
-0.014231398701667786,
-0.0250732209533453,
-0.... | 0.045789 |
the creation of the container | | [`setrlimit.target.container.id`](#common-containercontext-id-doc) | ID of the container | | [`setrlimit.target.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`setrlimit.target.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`setrlimit.target.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`setrlimit.target.egroup`](#common-credentials-egroup-doc) | Effective group of the process | | [`setrlimit.target.envp`](#common-process-envp-doc) | Environment variables of the process | | [`setrlimit.target.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`setrlimit.target.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`setrlimit.target.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`setrlimit.target.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`setrlimit.target.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`setrlimit.target.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`setrlimit.target.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`setrlimit.target.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`setrlimit.target.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`setrlimit.target.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`setrlimit.target.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`setrlimit.target.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`setrlimit.target.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`setrlimit.target.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`setrlimit.target.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`setrlimit.target.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`setrlimit.target.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`setrlimit.target.file.name`](#common-fileevent-name-doc) | File's basename | | [`setrlimit.target.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`setrlimit.target.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`setrlimit.target.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`setrlimit.target.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`setrlimit.target.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`setrlimit.target.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`setrlimit.target.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`setrlimit.target.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`setrlimit.target.file.path`](#common-fileevent-path-doc) | File's path | | [`setrlimit.target.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`setrlimit.target.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`setrlimit.target.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`setrlimit.target.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`setrlimit.target.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`setrlimit.target.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | [`setrlimit.target.fsuid`](#common-credentials-fsuid-doc) | FileSystem-uid of the process | | [`setrlimit.target.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`setrlimit.target.gid`](#common-credentials-gid-doc) | GID of the process | | [`setrlimit.target.group`](#common-credentials-group-doc) | Group of the process | | [`setrlimit.target.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`setrlimit.target.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`setrlimit.target.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`setrlimit.target.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`setrlimit.target.interpreter.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`setrlimit.target.interpreter.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`setrlimit.target.interpreter.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`setrlimit.target.interpreter.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`setrlimit.target.interpreter.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`setrlimit.target.interpreter.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`setrlimit.target.interpreter.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`setrlimit.target.interpreter.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`setrlimit.target.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`setrlimit.target.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`setrlimit.target.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`setrlimit.target.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`setrlimit.target.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.03203233331441879,
0.028726134449243546,
-0.07198621332645416,
-0.014249644242227077,
0.017986401915550232,
-0.07076482474803925,
0.013144264928996563,
0.03998822718858719,
-0.01761261187493801,
0.04859866574406624,
0.005527707748115063,
-0.06437502801418304,
0.023693468421697617,
-0.01... | 0.093122 |
file | | [`setrlimit.target.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`setrlimit.target.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`setrlimit.target.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`setrlimit.target.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`setrlimit.target.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`setrlimit.target.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`setrlimit.target.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`setrlimit.target.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`setrlimit.target.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`setrlimit.target.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`setrlimit.target.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`setrlimit.target.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`setrlimit.target.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`setrlimit.target.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`setrlimit.target.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`setrlimit.target.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`setrlimit.target.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process is a kworker | | [`setrlimit.target.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`setrlimit.target.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`setrlimit.target.parent.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`setrlimit.target.parent.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | [`setrlimit.target.parent.args\_options`](#common-process-args\_options-doc) | Argument of the process as options | | [`setrlimit.target.parent.args\_truncated`](#common-process-args\_truncated-doc) | Indicator of arguments truncation | | [`setrlimit.target.parent.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`setrlimit.target.parent.argv0`](#common-process-argv0-doc) | First argument of the process | | [`setrlimit.target.parent.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`setrlimit.target.parent.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`setrlimit.target.parent.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`setrlimit.target.parent.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`setrlimit.target.parent.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities that the process successfully used | | [`setrlimit.target.parent.cgroup.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`setrlimit.target.parent.cgroup.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`setrlimit.target.parent.cgroup.id`](#common-cgroupcontext-id-doc) | ID of the cgroup | | [`setrlimit.target.parent.cgroup.version`](#common-cgroupcontext-version-doc) | [Experimental] Version of the cgroup API | | [`setrlimit.target.parent.comm`](#common-process-comm-doc) | Comm attribute of the process | | [`setrlimit.target.parent.container.created\_at`](#common-containercontext-created\_at-doc) | Timestamp of the creation of the container | | [`setrlimit.target.parent.container.id`](#common-containercontext-id-doc) | ID of the container | | [`setrlimit.target.parent.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`setrlimit.target.parent.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`setrlimit.target.parent.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`setrlimit.target.parent.egroup`](#common-credentials-egroup-doc) | Effective group of the process | | [`setrlimit.target.parent.envp`](#common-process-envp-doc) | Environment variables of the process | | [`setrlimit.target.parent.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`setrlimit.target.parent.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`setrlimit.target.parent.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`setrlimit.target.parent.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`setrlimit.target.parent.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`setrlimit.target.parent.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`setrlimit.target.parent.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`setrlimit.target.parent.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`setrlimit.target.parent.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`setrlimit.target.parent.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`setrlimit.target.parent.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`setrlimit.target.parent.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`setrlimit.target.parent.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`setrlimit.target.parent.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`setrlimit.target.parent.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.01437847688794136,
0.029289254918694496,
0.028074054047465324,
-0.02115626633167267,
0.0908803716301918,
-0.031708113849163055,
-0.028948577120900154,
0.09948603063821793,
-0.03222173824906349,
-0.056268490850925446,
0.07772712409496307,
-0.06622021645307541,
-0.019244680181145668,
-0.0... | 0.090709 |
| | [`setrlimit.target.parent.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`setrlimit.target.parent.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`setrlimit.target.parent.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`setrlimit.target.parent.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`setrlimit.target.parent.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`setrlimit.target.parent.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`setrlimit.target.parent.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`setrlimit.target.parent.file.name`](#common-fileevent-name-doc) | File's basename | | [`setrlimit.target.parent.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`setrlimit.target.parent.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`setrlimit.target.parent.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`setrlimit.target.parent.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`setrlimit.target.parent.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`setrlimit.target.parent.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`setrlimit.target.parent.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`setrlimit.target.parent.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`setrlimit.target.parent.file.path`](#common-fileevent-path-doc) | File's path | | [`setrlimit.target.parent.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`setrlimit.target.parent.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`setrlimit.target.parent.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`setrlimit.target.parent.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`setrlimit.target.parent.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`setrlimit.target.parent.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | [`setrlimit.target.parent.fsuid`](#common-credentials-fsuid-doc) | FileSystem-uid of the process | | [`setrlimit.target.parent.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`setrlimit.target.parent.gid`](#common-credentials-gid-doc) | GID of the process | | [`setrlimit.target.parent.group`](#common-credentials-group-doc) | Group of the process | | [`setrlimit.target.parent.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`setrlimit.target.parent.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`setrlimit.target.parent.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`setrlimit.target.parent.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`setrlimit.target.parent.interpreter.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`setrlimit.target.parent.interpreter.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`setrlimit.target.parent.interpreter.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`setrlimit.target.parent.interpreter.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`setrlimit.target.parent.interpreter.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`setrlimit.target.parent.interpreter.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`setrlimit.target.parent.interpreter.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`setrlimit.target.parent.interpreter.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`setrlimit.target.parent.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`setrlimit.target.parent.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`setrlimit.target.parent.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`setrlimit.target.parent.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`setrlimit.target.parent.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`setrlimit.target.parent.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`setrlimit.target.parent.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`setrlimit.target.parent.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`setrlimit.target.parent.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`setrlimit.target.parent.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`setrlimit.target.parent.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`setrlimit.target.parent.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`setrlimit.target.parent.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`setrlimit.target.parent.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`setrlimit.target.parent.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`setrlimit.target.parent.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`setrlimit.target.parent.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.00653810566291213,
0.044670991599559784,
0.05282359570264816,
0.025392213836312294,
0.11685339361429214,
-0.022143589332699776,
-0.0616321824491024,
0.0782608687877655,
0.00990984309464693,
0.000686969025991857,
0.09000933915376663,
-0.033127836883068085,
-0.02479764260351658,
-0.0463037... | 0.009514 |
element | | [`setrlimit.target.parent.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`setrlimit.target.parent.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`setrlimit.target.parent.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`setrlimit.target.parent.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`setrlimit.target.parent.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process is a kworker | | [`setrlimit.target.parent.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`setrlimit.target.parent.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`setrlimit.target.parent.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`setrlimit.target.parent.ppid`](#common-process-ppid-doc) | Parent process ID | | [`setrlimit.target.parent.tid`](#common-pidcontext-tid-doc) | Thread ID of the thread | | [`setrlimit.target.parent.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`setrlimit.target.parent.uid`](#common-credentials-uid-doc) | UID of the process | | [`setrlimit.target.parent.user`](#common-credentials-user-doc) | User of the process | | [`setrlimit.target.parent.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | [`setrlimit.target.parent.user\_session.identity`](#common-usersessioncontext-identity-doc) | User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type | | [`setrlimit.target.parent.user\_session.k8s\_groups`](#common-k8ssessioncontext-k8s\_groups-doc) | Kubernetes groups of the user that executed the process | | [`setrlimit.target.parent.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`setrlimit.target.parent.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`setrlimit.target.parent.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`setrlimit.target.parent.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`setrlimit.target.parent.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | SSH authentication method used by the user | | [`setrlimit.target.parent.user\_session.ssh\_client\_ip`](#common-sshsessioncontext-ssh\_client\_ip-doc) | SSH client IP of the user that executed the process | | [`setrlimit.target.parent.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`setrlimit.target.parent.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`setrlimit.target.parent.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | | [`setrlimit.target.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`setrlimit.target.ppid`](#common-process-ppid-doc) | Parent process ID | | [`setrlimit.target.tid`](#common-pidcontext-tid-doc) | Thread ID of the thread | | [`setrlimit.target.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`setrlimit.target.uid`](#common-credentials-uid-doc) | UID of the process | | [`setrlimit.target.user`](#common-credentials-user-doc) | User of the process | | [`setrlimit.target.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | [`setrlimit.target.user\_session.identity`](#common-usersessioncontext-identity-doc) | User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type | | [`setrlimit.target.user\_session.k8s\_groups`](#common-k8ssessioncontext-k8s\_groups-doc) | Kubernetes groups of the user that executed the process | | [`setrlimit.target.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`setrlimit.target.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`setrlimit.target.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`setrlimit.target.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`setrlimit.target.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | SSH authentication method used by the user | | [`setrlimit.target.user\_session.ssh\_client\_ip`](#common-sshsessioncontext-ssh\_client\_ip-doc) | SSH client IP of the user that executed the process | | [`setrlimit.target.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`setrlimit.target.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`setrlimit.target.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | ### Event `setsockopt` A setsockopt was executed | Property | Definition | | -------- | ------------- | | [`setsockopt.filter\_hash`](#setsockopt-filter\_hash-doc) | Hash of the currently attached filter using sha256. Only available if the optname is `SO\_ATTACH\_FILTER` | | [`setsockopt.filter\_instructions`](#setsockopt-filter\_instructions-doc) | Instructions of the currently attached filter. Only available if the optname is `SO\_ATTACH\_FILTER` | | [`setsockopt.filter\_len`](#setsockopt-filter\_len-doc) | Length of the currently attached filter. Only available if | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.05256551504135132,
0.0513167530298233,
-0.052090711891651154,
-0.035605013370513916,
-0.001087298383936286,
-0.06782867759466171,
0.029589219018816948,
0.04674327373504639,
-0.003548172302544117,
0.0076575446873903275,
0.0030351097229868174,
-0.07393510639667511,
0.004559395369142294,
-... | 0.102205 |
------------- | | [`setsockopt.filter\_hash`](#setsockopt-filter\_hash-doc) | Hash of the currently attached filter using sha256. Only available if the optname is `SO\_ATTACH\_FILTER` | | [`setsockopt.filter\_instructions`](#setsockopt-filter\_instructions-doc) | Instructions of the currently attached filter. Only available if the optname is `SO\_ATTACH\_FILTER` | | [`setsockopt.filter\_len`](#setsockopt-filter\_len-doc) | Length of the currently attached filter. Only available if the optname is `SO\_ATTACH\_FILTER` | | [`setsockopt.is\_filter\_truncated`](#setsockopt-is\_filter\_truncated-doc) | Indicates that the currently attached filter is truncated. Only available if the optname is `SO\_ATTACH\_FILTER` | | [`setsockopt.level`](#setsockopt-level-doc) | Socket level | | [`setsockopt.optname`](#setsockopt-optname-doc) | Socket option name | | [`setsockopt.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`setsockopt.socket\_family`](#setsockopt-socket\_family-doc) | Socket family | | [`setsockopt.socket\_protocol`](#setsockopt-socket\_protocol-doc) | Socket protocol | | [`setsockopt.socket\_type`](#setsockopt-socket\_type-doc) | Socket type | | [`setsockopt.used\_immediates`](#setsockopt-used\_immediates-doc) | List of immediate values used in the currently attached filter. Only available if the optname is `SO\_ATTACH\_FILTER` | ### Event `setuid` A process changed its effective uid | Property | Definition | | -------- | ------------- | | [`setuid.euid`](#setuid-euid-doc) | New effective UID of the process | | [`setuid.euser`](#setuid-euser-doc) | New effective user of the process | | [`setuid.fsuid`](#setuid-fsuid-doc) | New FileSystem UID of the process | | [`setuid.fsuser`](#setuid-fsuser-doc) | New FileSystem user of the process | | [`setuid.uid`](#setuid-uid-doc) | New UID of the process | | [`setuid.user`](#setuid-user-doc) | New user of the process | ### Event `setxattr` Set exteneded attributes | Property | Definition | | -------- | ------------- | | [`setxattr.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`setxattr.file.destination.name`](#common-setxattrevent-file-destination-name-doc) | Name of the extended attribute | | [`setxattr.file.destination.namespace`](#common-setxattrevent-file-destination-namespace-doc) | Namespace of the extended attribute | | [`setxattr.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`setxattr.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`setxattr.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`setxattr.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`setxattr.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`setxattr.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`setxattr.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`setxattr.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`setxattr.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`setxattr.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`setxattr.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`setxattr.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`setxattr.file.name`](#common-fileevent-name-doc) | File's basename | | [`setxattr.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`setxattr.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`setxattr.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`setxattr.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`setxattr.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`setxattr.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`setxattr.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`setxattr.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`setxattr.file.path`](#common-fileevent-path-doc) | File's path | | [`setxattr.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`setxattr.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`setxattr.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`setxattr.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`setxattr.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | ### Event `signal` A signal was sent | Property | Definition | | -------- | ------------- | | [`signal.pid`](#signal-pid-doc) | Target PID | | [`signal.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`signal.target.ancestors.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`signal.target.ancestors.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.003400169312953949,
0.05029778182506561,
0.01980804093182087,
-0.019837498664855957,
0.02055204287171364,
-0.036371901631355286,
0.10252655297517776,
-0.03162774071097374,
-0.024031314998865128,
-0.09272272884845734,
0.0034665369894355536,
-0.027953336015343666,
-0.003435737220570445,
-... | -0.028927 |
signal was sent | Property | Definition | | -------- | ------------- | | [`signal.pid`](#signal-pid-doc) | Target PID | | [`signal.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`signal.target.ancestors.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`signal.target.ancestors.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | [`signal.target.ancestors.args\_options`](#common-process-args\_options-doc) | Argument of the process as options | | [`signal.target.ancestors.args\_truncated`](#common-process-args\_truncated-doc) | Indicator of arguments truncation | | [`signal.target.ancestors.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`signal.target.ancestors.argv0`](#common-process-argv0-doc) | First argument of the process | | [`signal.target.ancestors.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`signal.target.ancestors.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`signal.target.ancestors.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`signal.target.ancestors.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`signal.target.ancestors.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities that the process successfully used | | [`signal.target.ancestors.cgroup.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`signal.target.ancestors.cgroup.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`signal.target.ancestors.cgroup.id`](#common-cgroupcontext-id-doc) | ID of the cgroup | | [`signal.target.ancestors.cgroup.version`](#common-cgroupcontext-version-doc) | [Experimental] Version of the cgroup API | | [`signal.target.ancestors.comm`](#common-process-comm-doc) | Comm attribute of the process | | [`signal.target.ancestors.container.created\_at`](#common-containercontext-created\_at-doc) | Timestamp of the creation of the container | | [`signal.target.ancestors.container.id`](#common-containercontext-id-doc) | ID of the container | | [`signal.target.ancestors.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`signal.target.ancestors.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`signal.target.ancestors.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`signal.target.ancestors.egroup`](#common-credentials-egroup-doc) | Effective group of the process | | [`signal.target.ancestors.envp`](#common-process-envp-doc) | Environment variables of the process | | [`signal.target.ancestors.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`signal.target.ancestors.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`signal.target.ancestors.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`signal.target.ancestors.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`signal.target.ancestors.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`signal.target.ancestors.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`signal.target.ancestors.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`signal.target.ancestors.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`signal.target.ancestors.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`signal.target.ancestors.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`signal.target.ancestors.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`signal.target.ancestors.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`signal.target.ancestors.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`signal.target.ancestors.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`signal.target.ancestors.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`signal.target.ancestors.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`signal.target.ancestors.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`signal.target.ancestors.file.name`](#common-fileevent-name-doc) | File's basename | | [`signal.target.ancestors.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`signal.target.ancestors.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`signal.target.ancestors.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`signal.target.ancestors.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`signal.target.ancestors.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`signal.target.ancestors.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`signal.target.ancestors.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`signal.target.ancestors.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`signal.target.ancestors.file.path`](#common-fileevent-path-doc) | File's path | | [`signal.target.ancestors.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`signal.target.ancestors.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`signal.target.ancestors.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`signal.target.ancestors.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`signal.target.ancestors.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`signal.target.ancestors.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.02705611288547516,
-0.02697404846549034,
-0.03555085137486458,
-0.01710730418562889,
0.014586645178496838,
-0.0779668390750885,
0.048622727394104004,
0.041909489780664444,
-0.07335125654935837,
0.021533148363232613,
-0.013531063683331013,
-0.04211411625146866,
-0.02729863114655018,
-0.0... | 0.103814 |
| Length of the corresponding element | | [`signal.target.ancestors.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`signal.target.ancestors.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`signal.target.ancestors.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`signal.target.ancestors.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`signal.target.ancestors.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | [`signal.target.ancestors.fsuid`](#common-credentials-fsuid-doc) | FileSystem-uid of the process | | [`signal.target.ancestors.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`signal.target.ancestors.gid`](#common-credentials-gid-doc) | GID of the process | | [`signal.target.ancestors.group`](#common-credentials-group-doc) | Group of the process | | [`signal.target.ancestors.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`signal.target.ancestors.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`signal.target.ancestors.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`signal.target.ancestors.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`signal.target.ancestors.interpreter.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`signal.target.ancestors.interpreter.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`signal.target.ancestors.interpreter.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`signal.target.ancestors.interpreter.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`signal.target.ancestors.interpreter.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`signal.target.ancestors.interpreter.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`signal.target.ancestors.interpreter.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`signal.target.ancestors.interpreter.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`signal.target.ancestors.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`signal.target.ancestors.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`signal.target.ancestors.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`signal.target.ancestors.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`signal.target.ancestors.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`signal.target.ancestors.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`signal.target.ancestors.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`signal.target.ancestors.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`signal.target.ancestors.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`signal.target.ancestors.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`signal.target.ancestors.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`signal.target.ancestors.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`signal.target.ancestors.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`signal.target.ancestors.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`signal.target.ancestors.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`signal.target.ancestors.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`signal.target.ancestors.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process is a kworker | | [`signal.target.ancestors.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`signal.target.ancestors.length`](#common-string-length-doc) | Length of the corresponding element | | [`signal.target.ancestors.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`signal.target.ancestors.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`signal.target.ancestors.ppid`](#common-process-ppid-doc) | Parent process ID | | [`signal.target.ancestors.tid`](#common-pidcontext-tid-doc) | Thread ID of the thread | | [`signal.target.ancestors.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`signal.target.ancestors.uid`](#common-credentials-uid-doc) | UID of the process | | [`signal.target.ancestors.user`](#common-credentials-user-doc) | User of the process | | [`signal.target.ancestors.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | [`signal.target.ancestors.user\_session.identity`](#common-usersessioncontext-identity-doc) | User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type | | [`signal.target.ancestors.user\_session.k8s\_groups`](#common-k8ssessioncontext-k8s\_groups-doc) | Kubernetes groups of the user that executed the process | | [`signal.target.ancestors.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`signal.target.ancestors.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`signal.target.ancestors.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`signal.target.ancestors.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`signal.target.ancestors.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.04643227905035019,
-0.0068046883679926395,
-0.07752852886915207,
-0.03809046000242233,
0.043991655111312866,
-0.0731690302491188,
0.009254313074052334,
0.11535576730966568,
-0.05668376013636589,
-0.010009180754423141,
0.02125747874379158,
-0.015432535670697689,
-0.02328043058514595,
-0.... | 0.099944 |
the process | | [`signal.target.ancestors.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`signal.target.ancestors.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`signal.target.ancestors.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`signal.target.ancestors.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`signal.target.ancestors.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | SSH authentication method used by the user | | [`signal.target.ancestors.user\_session.ssh\_client\_ip`](#common-sshsessioncontext-ssh\_client\_ip-doc) | SSH client IP of the user that executed the process | | [`signal.target.ancestors.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`signal.target.ancestors.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`signal.target.ancestors.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | | [`signal.target.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`signal.target.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | [`signal.target.args\_options`](#common-process-args\_options-doc) | Argument of the process as options | | [`signal.target.args\_truncated`](#common-process-args\_truncated-doc) | Indicator of arguments truncation | | [`signal.target.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`signal.target.argv0`](#common-process-argv0-doc) | First argument of the process | | [`signal.target.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`signal.target.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`signal.target.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`signal.target.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`signal.target.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities that the process successfully used | | [`signal.target.cgroup.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`signal.target.cgroup.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`signal.target.cgroup.id`](#common-cgroupcontext-id-doc) | ID of the cgroup | | [`signal.target.cgroup.version`](#common-cgroupcontext-version-doc) | [Experimental] Version of the cgroup API | | [`signal.target.comm`](#common-process-comm-doc) | Comm attribute of the process | | [`signal.target.container.created\_at`](#common-containercontext-created\_at-doc) | Timestamp of the creation of the container | | [`signal.target.container.id`](#common-containercontext-id-doc) | ID of the container | | [`signal.target.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`signal.target.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`signal.target.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`signal.target.egroup`](#common-credentials-egroup-doc) | Effective group of the process | | [`signal.target.envp`](#common-process-envp-doc) | Environment variables of the process | | [`signal.target.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`signal.target.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`signal.target.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`signal.target.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`signal.target.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`signal.target.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`signal.target.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`signal.target.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`signal.target.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`signal.target.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`signal.target.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`signal.target.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`signal.target.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`signal.target.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`signal.target.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`signal.target.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`signal.target.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`signal.target.file.name`](#common-fileevent-name-doc) | File's basename | | [`signal.target.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`signal.target.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`signal.target.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`signal.target.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`signal.target.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`signal.target.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`signal.target.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.0005601819138973951,
0.012885677628219128,
-0.004350367002189159,
-0.046742890030145645,
-0.019055752083659172,
-0.021497072651982307,
0.08805803209543228,
0.0030834891367703676,
0.03398391604423523,
0.015559973195195198,
-0.01705826260149479,
-0.09154573827981949,
-0.028219956904649734,
... | 0.144522 |
| [Experimental] Release of the package that provided this file | | [`signal.target.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`signal.target.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`signal.target.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`signal.target.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`signal.target.file.path`](#common-fileevent-path-doc) | File's path | | [`signal.target.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`signal.target.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`signal.target.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`signal.target.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`signal.target.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`signal.target.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | [`signal.target.fsuid`](#common-credentials-fsuid-doc) | FileSystem-uid of the process | | [`signal.target.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`signal.target.gid`](#common-credentials-gid-doc) | GID of the process | | [`signal.target.group`](#common-credentials-group-doc) | Group of the process | | [`signal.target.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`signal.target.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`signal.target.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`signal.target.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`signal.target.interpreter.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`signal.target.interpreter.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`signal.target.interpreter.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`signal.target.interpreter.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`signal.target.interpreter.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`signal.target.interpreter.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`signal.target.interpreter.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`signal.target.interpreter.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`signal.target.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`signal.target.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`signal.target.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`signal.target.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`signal.target.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`signal.target.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`signal.target.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`signal.target.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`signal.target.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`signal.target.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`signal.target.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`signal.target.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`signal.target.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`signal.target.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`signal.target.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`signal.target.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`signal.target.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process is a kworker | | [`signal.target.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`signal.target.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`signal.target.parent.args`](#common-process-args-doc) | Arguments of the process (as a string, excluding argv0) | | [`signal.target.parent.args\_flags`](#common-process-args\_flags-doc) | Flags in the process arguments | | [`signal.target.parent.args\_options`](#common-process-args\_options-doc) | Argument of the process as options | | [`signal.target.parent.args\_truncated`](#common-process-args\_truncated-doc) | Indicator of arguments truncation | | [`signal.target.parent.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`signal.target.parent.argv0`](#common-process-argv0-doc) | First argument of the process | | [`signal.target.parent.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`signal.target.parent.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`signal.target.parent.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.03568493574857712,
0.0062999967485666275,
0.08663340657949448,
-0.04981977492570877,
0.11606000363826752,
-0.016184793785214424,
-0.021323436871170998,
0.01625213585793972,
-0.032702334225177765,
-0.008759045973420143,
0.05055045336484909,
0.004129740409553051,
-0.07280319929122925,
-0.... | 0.082078 |
of arguments truncation | | [`signal.target.parent.argv`](#common-process-argv-doc) | Arguments of the process (as an array, excluding argv0) | | [`signal.target.parent.argv0`](#common-process-argv0-doc) | First argument of the process | | [`signal.target.parent.auid`](#common-credentials-auid-doc) | Login UID of the process | | [`signal.target.parent.cap\_effective`](#common-credentials-cap\_effective-doc) | Effective capability set of the process | | [`signal.target.parent.cap\_permitted`](#common-credentials-cap\_permitted-doc) | Permitted capability set of the process | | [`signal.target.parent.caps\_attempted`](#common-process-caps\_attempted-doc) | Bitmask of the capabilities that the process attempted to use | | [`signal.target.parent.caps\_used`](#common-process-caps\_used-doc) | Bitmask of the capabilities that the process successfully used | | [`signal.target.parent.cgroup.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`signal.target.parent.cgroup.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`signal.target.parent.cgroup.id`](#common-cgroupcontext-id-doc) | ID of the cgroup | | [`signal.target.parent.cgroup.version`](#common-cgroupcontext-version-doc) | [Experimental] Version of the cgroup API | | [`signal.target.parent.comm`](#common-process-comm-doc) | Comm attribute of the process | | [`signal.target.parent.container.created\_at`](#common-containercontext-created\_at-doc) | Timestamp of the creation of the container | | [`signal.target.parent.container.id`](#common-containercontext-id-doc) | ID of the container | | [`signal.target.parent.container.tags`](#common-containercontext-tags-doc) | Tags of the container | | [`signal.target.parent.created\_at`](#common-process-created\_at-doc) | Timestamp of the creation of the process | | [`signal.target.parent.egid`](#common-credentials-egid-doc) | Effective GID of the process | | [`signal.target.parent.egroup`](#common-credentials-egroup-doc) | Effective group of the process | | [`signal.target.parent.envp`](#common-process-envp-doc) | Environment variables of the process | | [`signal.target.parent.envs`](#common-process-envs-doc) | Environment variable names of the process | | [`signal.target.parent.envs\_truncated`](#common-process-envs\_truncated-doc) | Indicator of environment variables truncation | | [`signal.target.parent.euid`](#common-credentials-euid-doc) | Effective UID of the process | | [`signal.target.parent.euser`](#common-credentials-euser-doc) | Effective user of the process | | [`signal.target.parent.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`signal.target.parent.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`signal.target.parent.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`signal.target.parent.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`signal.target.parent.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`signal.target.parent.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`signal.target.parent.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`signal.target.parent.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`signal.target.parent.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`signal.target.parent.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`signal.target.parent.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`signal.target.parent.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`signal.target.parent.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`signal.target.parent.file.name`](#common-fileevent-name-doc) | File's basename | | [`signal.target.parent.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`signal.target.parent.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`signal.target.parent.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`signal.target.parent.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`signal.target.parent.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`signal.target.parent.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`signal.target.parent.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`signal.target.parent.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`signal.target.parent.file.path`](#common-fileevent-path-doc) | File's path | | [`signal.target.parent.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`signal.target.parent.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`signal.target.parent.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`signal.target.parent.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`signal.target.parent.fsgid`](#common-credentials-fsgid-doc) | FileSystem-gid of the process | | [`signal.target.parent.fsgroup`](#common-credentials-fsgroup-doc) | FileSystem-group of the process | | [`signal.target.parent.fsuid`](#common-credentials-fsuid-doc) | FileSystem-uid of the process | | [`signal.target.parent.fsuser`](#common-credentials-fsuser-doc) | FileSystem-user of the process | | [`signal.target.parent.gid`](#common-credentials-gid-doc) | GID of the process | | [`signal.target.parent.group`](#common-credentials-group-doc) | Group of the process | | [`signal.target.parent.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`signal.target.parent.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`signal.target.parent.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`signal.target.parent.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`signal.target.parent.interpreter.file.group`](#common-filefields-group-doc) | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.03186824917793274,
0.00894651934504509,
-0.08501509577035904,
-0.052595071494579315,
0.0320647656917572,
-0.07758807390928268,
0.053221628069877625,
0.016639823094010353,
-0.08400344848632812,
-0.024282192811369896,
-0.01808992773294449,
-0.022523963823914528,
0.0012155685108155012,
0.0... | 0.128862 |
| | [`signal.target.parent.gid`](#common-credentials-gid-doc) | GID of the process | | [`signal.target.parent.group`](#common-credentials-group-doc) | Group of the process | | [`signal.target.parent.interpreter.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`signal.target.parent.interpreter.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`signal.target.parent.interpreter.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`signal.target.parent.interpreter.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`signal.target.parent.interpreter.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`signal.target.parent.interpreter.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`signal.target.parent.interpreter.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`signal.target.parent.interpreter.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`signal.target.parent.interpreter.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`signal.target.parent.interpreter.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`signal.target.parent.interpreter.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`signal.target.parent.interpreter.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`signal.target.parent.interpreter.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`signal.target.parent.interpreter.file.name`](#common-fileevent-name-doc) | File's basename | | [`signal.target.parent.interpreter.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`signal.target.parent.interpreter.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`signal.target.parent.interpreter.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`signal.target.parent.interpreter.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`signal.target.parent.interpreter.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`signal.target.parent.interpreter.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`signal.target.parent.interpreter.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`signal.target.parent.interpreter.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`signal.target.parent.interpreter.file.path`](#common-fileevent-path-doc) | File's path | | [`signal.target.parent.interpreter.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`signal.target.parent.interpreter.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`signal.target.parent.interpreter.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`signal.target.parent.interpreter.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`signal.target.parent.is\_exec`](#common-process-is\_exec-doc) | Indicates whether the process entry is from a new binary execution | | [`signal.target.parent.is\_kworker`](#common-pidcontext-is\_kworker-doc) | Indicates whether the process is a kworker | | [`signal.target.parent.is\_thread`](#common-process-is\_thread-doc) | Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) | | [`signal.target.parent.netns`](#common-pidcontext-netns-doc) | NetNS ID of the process | | [`signal.target.parent.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`signal.target.parent.ppid`](#common-process-ppid-doc) | Parent process ID | | [`signal.target.parent.tid`](#common-pidcontext-tid-doc) | Thread ID of the thread | | [`signal.target.parent.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`signal.target.parent.uid`](#common-credentials-uid-doc) | UID of the process | | [`signal.target.parent.user`](#common-credentials-user-doc) | User of the process | | [`signal.target.parent.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | [`signal.target.parent.user\_session.identity`](#common-usersessioncontext-identity-doc) | User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type | | [`signal.target.parent.user\_session.k8s\_groups`](#common-k8ssessioncontext-k8s\_groups-doc) | Kubernetes groups of the user that executed the process | | [`signal.target.parent.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`signal.target.parent.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`signal.target.parent.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`signal.target.parent.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`signal.target.parent.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | SSH authentication method used by the user | | [`signal.target.parent.user\_session.ssh\_client\_ip`](#common-sshsessioncontext-ssh\_client\_ip-doc) | SSH client IP of the user that executed the process | | [`signal.target.parent.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`signal.target.parent.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`signal.target.parent.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | | [`signal.target.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.046329762786626816,
0.0033215300645679235,
-0.0023639455903321505,
-0.04360773414373398,
0.016475999727845192,
-0.05736936256289482,
0.01208268292248249,
0.10036755353212357,
-0.001713625737465918,
0.01511111855506897,
0.015329484827816486,
-0.017306888476014137,
-0.03518528491258621,
0... | 0.106127 |
| [`signal.target.parent.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`signal.target.parent.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`signal.target.parent.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | | [`signal.target.pid`](#common-pidcontext-pid-doc) | Process ID of the process (also called thread group ID) | | [`signal.target.ppid`](#common-process-ppid-doc) | Parent process ID | | [`signal.target.tid`](#common-pidcontext-tid-doc) | Thread ID of the thread | | [`signal.target.tty\_name`](#common-process-tty\_name-doc) | Name of the TTY associated with the process | | [`signal.target.uid`](#common-credentials-uid-doc) | UID of the process | | [`signal.target.user`](#common-credentials-user-doc) | User of the process | | [`signal.target.user\_session.id`](#common-usersessioncontext-id-doc) | Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type | | [`signal.target.user\_session.identity`](#common-usersessioncontext-identity-doc) | User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type | | [`signal.target.user\_session.k8s\_groups`](#common-k8ssessioncontext-k8s\_groups-doc) | Kubernetes groups of the user that executed the process | | [`signal.target.user\_session.k8s\_session\_id`](#common-k8ssessioncontext-k8s\_session\_id-doc) | Unique identifier of the kubernetes session | | [`signal.target.user\_session.k8s\_uid`](#common-k8ssessioncontext-k8s\_uid-doc) | Kubernetes UID of the user that executed the process | | [`signal.target.user\_session.k8s\_username`](#common-k8ssessioncontext-k8s\_username-doc) | Kubernetes username of the user that executed the process | | [`signal.target.user\_session.session\_type`](#common-usersessioncontext-session\_type-doc) | Type of the user session | | [`signal.target.user\_session.ssh\_auth\_method`](#common-sshsessioncontext-ssh\_auth\_method-doc) | SSH authentication method used by the user | | [`signal.target.user\_session.ssh\_client\_ip`](#common-sshsessioncontext-ssh\_client\_ip-doc) | SSH client IP of the user that executed the process | | [`signal.target.user\_session.ssh\_client\_port`](#common-sshsessioncontext-ssh\_client\_port-doc) | SSH client port of the user that executed the process | | [`signal.target.user\_session.ssh\_public\_key`](#common-sshsessioncontext-ssh\_public\_key-doc) | SSH public key used for authentication (if applicable) | | [`signal.target.user\_session.ssh\_session\_id`](#common-sshsessioncontext-ssh\_session\_id-doc) | Unique identifier of the SSH user session on the host | | [`signal.type`](#signal-type-doc) | Signal type (ex: SIGHUP, SIGINT, SIGQUIT, etc) | ### Event `splice` A splice command was executed | Property | Definition | | -------- | ------------- | | [`splice.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`splice.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`splice.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`splice.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`splice.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`splice.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`splice.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`splice.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`splice.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`splice.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`splice.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`splice.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`splice.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`splice.file.name`](#common-fileevent-name-doc) | File's basename | | [`splice.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`splice.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`splice.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`splice.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`splice.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`splice.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`splice.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`splice.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`splice.file.path`](#common-fileevent-path-doc) | File's path | | [`splice.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`splice.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`splice.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`splice.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`splice.pipe\_entry\_flag`](#splice-pipe\_entry\_flag-doc) | Entry flag of the "fd\_out" pipe passed to the splice syscall | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.018433960154652596,
0.020123621448874474,
-0.09029383212327957,
-0.069350466132164,
-0.022902365773916245,
-0.024884045124053955,
0.05967579782009125,
0.03291479870676994,
-0.03238964453339577,
0.017998792231082916,
0.019274959340691566,
-0.044289808720350266,
0.0288840364664793,
0.0213... | 0.04474 |
| [`splice.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`splice.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`splice.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`splice.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`splice.pipe\_entry\_flag`](#splice-pipe\_entry\_flag-doc) | Entry flag of the "fd\_out" pipe passed to the splice syscall | | [`splice.pipe\_exit\_flag`](#splice-pipe\_exit\_flag-doc) | Exit flag of the "fd\_out" pipe passed to the splice syscall | | [`splice.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | ### Event `sysctl` A sysctl parameter was read or modified | Property | Definition | | -------- | ------------- | | [`sysctl.action`](#sysctl-action-doc) | Action performed on the system control parameter | | [`sysctl.file\_position`](#sysctl-file\_position-doc) | Position in the sysctl control parameter file at which the action occurred | | [`sysctl.name`](#sysctl-name-doc) | Name of the system control parameter | | [`sysctl.name\_truncated`](#sysctl-name\_truncated-doc) | Indicates that the name field is truncated | | [`sysctl.old\_value`](#sysctl-old\_value-doc) | Old value of the system control parameter | | [`sysctl.old\_value\_truncated`](#sysctl-old\_value\_truncated-doc) | Indicates that the old value field is truncated | | [`sysctl.value`](#sysctl-value-doc) | New and/or current value for the system control parameter depending on the action type | | [`sysctl.value\_truncated`](#sysctl-value\_truncated-doc) | Indicates that the value field is truncated | ### Event `unlink` A file was deleted | Property | Definition | | -------- | ------------- | | [`unlink.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`unlink.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`unlink.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`unlink.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`unlink.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`unlink.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`unlink.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`unlink.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`unlink.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`unlink.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`unlink.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`unlink.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`unlink.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`unlink.file.name`](#common-fileevent-name-doc) | File's basename | | [`unlink.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`unlink.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`unlink.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`unlink.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`unlink.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`unlink.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`unlink.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`unlink.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`unlink.file.path`](#common-fileevent-path-doc) | File's path | | [`unlink.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`unlink.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`unlink.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`unlink.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`unlink.flags`](#unlink-flags-doc) | Flags of the unlink syscall | | [`unlink.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`unlink.syscall.dirfd`](#unlink-syscall-dirfd-doc) | Directory file descriptor argument of the syscall | | [`unlink.syscall.flags`](#unlink-syscall-flags-doc) | Flags argument of the syscall | | [`unlink.syscall.path`](#unlink-syscall-path-doc) | Path argument of the syscall | ### Event `unload\_module` A kernel module was deleted | Property | Definition | | -------- | ------------- | | [`unload\_module.name`](#unload\_module-name-doc) | Name of the kernel module that was deleted | | [`unload\_module.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | ### Event `utimes` Change file access/modification times | Property | Definition | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.03063218481838703,
0.05518558993935585,
-0.055639028549194336,
-0.06299316138029099,
-0.0031227977015078068,
-0.04766101390123367,
0.07841145247220993,
0.09220528602600098,
-0.06036122888326645,
0.007082643453031778,
0.07434868812561035,
0.0282822847366333,
-0.02112116478383541,
0.01706... | 0.030933 |
Event `unload\_module` A kernel module was deleted | Property | Definition | | -------- | ------------- | | [`unload\_module.name`](#unload\_module-name-doc) | Name of the kernel module that was deleted | | [`unload\_module.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | ### Event `utimes` Change file access/modification times | Property | Definition | | -------- | ------------- | | [`utimes.file.change\_time`](#common-filefields-change\_time-doc) | Change time (ctime) of the file | | [`utimes.file.extension`](#common-fileevent-extension-doc) | File's extension | | [`utimes.file.filesystem`](#common-fileevent-filesystem-doc) | File's filesystem | | [`utimes.file.gid`](#common-filefields-gid-doc) | GID of the file's owner | | [`utimes.file.group`](#common-filefields-group-doc) | Group of the file's owner | | [`utimes.file.hashes`](#common-fileevent-hashes-doc) | [Experimental] List of cryptographic hashes computed for this file | | [`utimes.file.in\_upper\_layer`](#common-filefields-in\_upper\_layer-doc) | Indicator of the file layer, for example, in an OverlayFS | | [`utimes.file.inode`](#common-pathkey-inode-doc) | Inode of the file | | [`utimes.file.mode`](#common-filefields-mode-doc) | Mode of the file | | [`utimes.file.modification\_time`](#common-filefields-modification\_time-doc) | Modification time (mtime) of the file | | [`utimes.file.mount\_detached`](#common-fileevent-mount\_detached-doc) | Indicates whether the file's mount is detached from the VFS | | [`utimes.file.mount\_id`](#common-pathkey-mount\_id-doc) | Mount ID of the file | | [`utimes.file.mount\_visible`](#common-fileevent-mount\_visible-doc) | Indicates whether the file's mount is visible in the VFS | | [`utimes.file.name`](#common-fileevent-name-doc) | File's basename | | [`utimes.file.name.length`](#common-string-length-doc) | Length of the corresponding element | | [`utimes.file.package.epoch`](#common-fileevent-package-epoch-doc) | [Experimental] Epoch of the package that provided this file | | [`utimes.file.package.name`](#common-fileevent-package-name-doc) | [Experimental] Name of the package that provided this file | | [`utimes.file.package.release`](#common-fileevent-package-release-doc) | [Experimental] Release of the package that provided this file | | [`utimes.file.package.source\_epoch`](#common-fileevent-package-source\_epoch-doc) | [Experimental] Epoch of the source package of the package that provided this file | | [`utimes.file.package.source\_release`](#common-fileevent-package-source\_release-doc) | [Experimental] Release of the source package of the package that provided this file | | [`utimes.file.package.source\_version`](#common-fileevent-package-source\_version-doc) | [Experimental] Full version of the source package of the package that provided this file | | [`utimes.file.package.version`](#common-fileevent-package-version-doc) | [Experimental] Full version of the package that provided this file | | [`utimes.file.path`](#common-fileevent-path-doc) | File's path | | [`utimes.file.path.length`](#common-string-length-doc) | Length of the corresponding element | | [`utimes.file.rights`](#common-filefields-rights-doc) | Rights of the file | | [`utimes.file.uid`](#common-filefields-uid-doc) | UID of the file's owner | | [`utimes.file.user`](#common-filefields-user-doc) | User of the file's owner | | [`utimes.retval`](#common-syscallevent-retval-doc) | Return value of the syscall | | [`utimes.syscall.path`](#utimes-syscall-path-doc) | Path argument of the syscall | ## Attributes documentation ### `\*.args` {#common-process-args-doc} Type: string Definition: Arguments of the process (as a string, excluding argv0) `\*.args` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` Example: {{< code-block lang="javascript" >}} exec.args == "-sV -p 22,53,110,143,4564 198.116.0-255.1-127" {{< /code-block >}} Matches any process with these exact arguments. Example: {{< code-block lang="javascript" >}} exec.args =~ "\* -F \* http\*" {{< /code-block >}} Matches any process that has the "-F" argument anywhere before an argument starting with "http". ### `\*.args\_flags` {#common-process-args\_flags-doc} Type: string Definition: Flags in the process arguments `\*.args\_flags` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` Example: {{< code-block lang="javascript" >}} exec.args\_flags in ["s"] && exec.args\_flags in ["V"] {{< /code-block >}} Matches any process with both "-s" and "-V" flags in its arguments. Also matches "-sV". ### `\*.args\_options` {#common-process-args\_options-doc} Type: string Definition: Argument of the process as options `\*.args\_options` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` Example: {{< code-block lang="javascript" >}} exec.args\_options in ["p=0-1024"] {{< /code-block >}} Matches any process that has either "-p 0-1024" or "--p=0-1024" in its arguments. ### `\*.args\_truncated` {#common-process-args\_truncated-doc} Type: bool Definition: Indicator of arguments truncation `\*.args\_truncated` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.argv` {#common-process-argv-doc} Type: string | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.014921407215297222,
0.03781352564692497,
-0.017974616959691048,
0.03350859135389328,
0.08567316830158234,
-0.04072636738419533,
0.038037944585084915,
0.06794185191392899,
0.038264237344264984,
0.011135551147162914,
0.06911394745111465,
0.007354407571256161,
-0.02307830937206745,
-0.0000... | 0.111547 |
{{< /code-block >}} Matches any process that has either "-p 0-1024" or "--p=0-1024" in its arguments. ### `\*.args\_truncated` {#common-process-args\_truncated-doc} Type: bool Definition: Indicator of arguments truncation `\*.args\_truncated` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.argv` {#common-process-argv-doc} Type: string Definition: Arguments of the process (as an array, excluding argv0) `\*.argv` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` Example: {{< code-block lang="javascript" >}} exec.argv in ["127.0.0.1"] {{< /code-block >}} Matches any process that has this IP address as one of its arguments. ### `\*.argv0` {#common-process-argv0-doc} Type: string Definition: First argument of the process `\*.argv0` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.auid` {#common-credentials-auid-doc} Type: int Definition: Login UID of the process `\*.auid` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.cap\_effective` {#common-credentials-cap\_effective-doc} Type: int Definition: Effective capability set of the process `\*.cap\_effective` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` Constants: [Kernel Capability constants](#kernel-capability-constants) ### `\*.cap\_permitted` {#common-credentials-cap\_permitted-doc} Type: int Definition: Permitted capability set of the process `\*.cap\_permitted` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` Constants: [Kernel Capability constants](#kernel-capability-constants) ### `\*.caps\_attempted` {#common-process-caps\_attempted-doc} Type: int Definition: Bitmask of the capabilities that the process attempted to use `\*.caps\_attempted` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` Constants: [Kernel Capability constants](#kernel-capability-constants) ### `\*.caps\_used` {#common-process-caps\_used-doc} Type: int Definition: Bitmask of the capabilities that the process successfully used `\*.caps\_used` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` Constants: [Kernel Capability constants](#kernel-capability-constants) ### `\*.change\_time` {#common-filefields-change\_time-doc} Type: int Definition: Change time (ctime) of the file `\*.change\_time` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.comm` {#common-process-comm-doc} Type: string Definition: Comm attribute of the process `\*.comm` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.created\_at` {#common-containercontext-created\_at-doc} Type: int Definition: Timestamp of the creation of the container `\*.created\_at` has 14 possible prefixes: `exec.container` `exit.container` `process.ancestors.container` `process.container` `process.parent.container` `ptrace.tracee.ancestors.container` `ptrace.tracee.container` `ptrace.tracee.parent.container` `setrlimit.target.ancestors.container` `setrlimit.target.container` `setrlimit.target.parent.container` `signal.target.ancestors.container` `signal.target.container` `signal.target.parent.container` ### `\*.created\_at` {#common-process-created\_at-doc} Type: int Definition: Timestamp of the creation of the process `\*.created\_at` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.data\_size` {#common-networkstats-data\_size-doc} Type: int Definition: Amount of data transmitted or received `\*.data\_size` has 2 possible prefixes: `network\_flow\_monitor.flows.egress` `network\_flow\_monitor.flows.ingress` ### `\*.egid` {#common-credentials-egid-doc} Type: int Definition: Effective GID of the process `\*.egid` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.egroup` {#common-credentials-egroup-doc} Type: string Definition: Effective group of the process `\*.egroup` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.envp` {#common-process-envp-doc} Type: string Definition: Environment variables of the process `\*.envp` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.envs` {#common-process-envs-doc} Type: string Definition: Environment variable names of the process `\*.envs` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.034411534667015076,
0.01039362233132124,
-0.059704843908548355,
-0.022737395018339157,
0.0019297068938612938,
-0.10272981226444244,
0.03636138141155243,
0.09394282102584839,
-0.040176086127758026,
0.002417917363345623,
-0.04423860087990761,
-0.013217419385910034,
-0.039268072694540024,
... | 0.128212 |
string Definition: Environment variables of the process `\*.envp` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.envs` {#common-process-envs-doc} Type: string Definition: Environment variable names of the process `\*.envs` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.envs\_truncated` {#common-process-envs\_truncated-doc} Type: bool Definition: Indicator of environment variables truncation `\*.envs\_truncated` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.euid` {#common-credentials-euid-doc} Type: int Definition: Effective UID of the process `\*.euid` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.euser` {#common-credentials-euser-doc} Type: string Definition: Effective user of the process `\*.euser` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.extension` {#common-fileevent-extension-doc} Type: string Definition: File's extension `\*.extension` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.file.destination.name` {#common-setxattrevent-file-destination-name-doc} Type: string Definition: Name of the extended attribute `\*.file.destination.name` has 2 possible prefixes: `removexattr` `setxattr` ### `\*.file.destination.namespace` {#common-setxattrevent-file-destination-namespace-doc} Type: string Definition: Namespace of the extended attribute `\*.file.destination.namespace` has 2 possible prefixes: `removexattr` `setxattr` ### `\*.filesystem` {#common-fileevent-filesystem-doc} Type: string Definition: File's filesystem `\*.filesystem` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.fsgid` {#common-credentials-fsgid-doc} Type: int Definition: FileSystem-gid of the process `\*.fsgid` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.fsgroup` {#common-credentials-fsgroup-doc} Type: string Definition: FileSystem-group of the process `\*.fsgroup` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.fsuid` {#common-credentials-fsuid-doc} Type: int Definition: FileSystem-uid of the process `\*.fsuid` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.fsuser` {#common-credentials-fsuser-doc} Type: string Definition: FileSystem-user of the process `\*.fsuser` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.gid` {#common-credentials-gid-doc} Type: int Definition: GID of the process `\*.gid` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.gid` {#common-filefields-gid-doc} Type: int Definition: GID of the file's owner `\*.gid` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.group` {#common-credentials-group-doc} Type: string Definition: Group of the process `\*.group` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.group` {#common-filefields-group-doc} Type: string Definition: Group of the file's owner `\*.group` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.0015039945719763637,
-0.04306500777602196,
-0.029968684539198875,
-0.06128250062465668,
0.014480967074632645,
-0.11177536100149155,
0.005022656638175249,
0.09306930005550385,
-0.031793490052223206,
0.04663414880633354,
-0.030874082818627357,
-0.07778144627809525,
0.0028341771103441715,
... | 0.07041 |
46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.hashes` {#common-fileevent-hashes-doc} Type: string Definition: [Experimental] List of cryptographic hashes computed for this file `\*.hashes` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.id` {#common-cgroupcontext-id-doc} Type: string Definition: ID of the cgroup `\*.id` has 14 possible prefixes: `exec.cgroup` `exit.cgroup` `process.ancestors.cgroup` `process.cgroup` `process.parent.cgroup` `ptrace.tracee.ancestors.cgroup` `ptrace.tracee.cgroup` `ptrace.tracee.parent.cgroup` `setrlimit.target.ancestors.cgroup` `setrlimit.target.cgroup` `setrlimit.target.parent.cgroup` `signal.target.ancestors.cgroup` `signal.target.cgroup` `signal.target.parent.cgroup` ### `\*.id` {#common-containercontext-id-doc} Type: string Definition: ID of the container `\*.id` has 14 possible prefixes: `exec.container` `exit.container` `process.ancestors.container` `process.container` `process.parent.container` `ptrace.tracee.ancestors.container` `ptrace.tracee.container` `ptrace.tracee.parent.container` `setrlimit.target.ancestors.container` `setrlimit.target.container` `setrlimit.target.parent.container` `signal.target.ancestors.container` `signal.target.container` `signal.target.parent.container` ### `\*.id` {#common-usersessioncontext-id-doc} Type: string Definition: Unique identifier of the user session, alias for either ssh\_session\_id or k8s\_session\_id, depending on the session type `\*.id` has 14 possible prefixes: `exec.user\_session` `exit.user\_session` `process.ancestors.user\_session` `process.parent.user\_session` `process.user\_session` `ptrace.tracee.ancestors.user\_session` `ptrace.tracee.parent.user\_session` `ptrace.tracee.user\_session` `setrlimit.target.ancestors.user\_session` `setrlimit.target.parent.user\_session` `setrlimit.target.user\_session` `signal.target.ancestors.user\_session` `signal.target.parent.user\_session` `signal.target.user\_session` ### `\*.identity` {#common-usersessioncontext-identity-doc} Type: string Definition: User identity of the user session, alias for either ssh\_client\_ip and ssh\_client\_port or k8s\_username, depending on the session type `\*.identity` has 14 possible prefixes: `exec.user\_session` `exit.user\_session` `process.ancestors.user\_session` `process.parent.user\_session` `process.user\_session` `ptrace.tracee.ancestors.user\_session` `ptrace.tracee.parent.user\_session` `ptrace.tracee.user\_session` `setrlimit.target.ancestors.user\_session` `setrlimit.target.parent.user\_session` `setrlimit.target.user\_session` `signal.target.ancestors.user\_session` `signal.target.parent.user\_session` `signal.target.user\_session` ### `\*.ifname` {#common-networkdevicecontext-ifname-doc} Type: string Definition: Interface ifname `\*.ifname` has 3 possible prefixes: `network.device` `network\_flow\_monitor.device` `packet.device` ### `\*.in\_upper\_layer` {#common-filefields-in\_upper\_layer-doc} Type: bool Definition: Indicator of the file layer, for example, in an OverlayFS `\*.in\_upper\_layer` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.inode` {#common-pathkey-inode-doc} Type: int Definition: Inode of the file `\*.inode` has 60 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.cgroup.file` `exec.file` `exec.interpreter.file` `exit.cgroup.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.cgroup.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.cgroup.file` `process.file` `process.interpreter.file` `process.parent.cgroup.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.cgroup.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.cgroup.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.cgroup.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.cgroup.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.cgroup.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.cgroup.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.cgroup.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.cgroup.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.cgroup.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.ip` {#common-ipportcontext-ip-doc} Type: IP/CIDR Definition: IP address `\*.ip` has 9 possible prefixes: `accept.addr` `bind.addr` `connect.addr` `network.destination` `network.source` `network\_flow\_monitor.flows.destination` `network\_flow\_monitor.flows.source` `packet.destination` `packet.source` ### `\*.is\_exec` {#common-process-is\_exec-doc} Type: bool Definition: Indicates whether the process entry is from a new binary execution `\*.is\_exec` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.is\_kworker` {#common-pidcontext-is\_kworker-doc} Type: bool Definition: Indicates whether the process is a kworker `\*.is\_kworker` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.is\_public` {#common-ipportcontext-is\_public-doc} Type: bool Definition: Whether the IP address belongs to a public network `\*.is\_public` has 9 possible prefixes: `accept.addr` `bind.addr` `connect.addr` `network.destination` `network.source` `network\_flow\_monitor.flows.destination` `network\_flow\_monitor.flows.source` `packet.destination` `packet.source` ### `\*.is\_thread` {#common-process-is\_thread-doc} Type: bool Definition: Indicates whether the process is considered a thread (that is, a child process that hasn't executed another program) `\*.is\_thread` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.k8s\_groups` {#common-k8ssessioncontext-k8s\_groups-doc} Type: string Definition: Kubernetes groups of the user that executed the process `\*.k8s\_groups` has 14 possible prefixes: `exec.user\_session` | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.08014056086540222,
-0.01980476826429367,
-0.07266129553318024,
-0.05246398225426674,
0.010956964455544949,
-0.04946805164217949,
-0.0045173875987529755,
0.12381592392921448,
0.0020012513268738985,
0.013675238937139511,
0.09158346056938171,
-0.03974592685699463,
0.010973316617310047,
0.0... | 0.089253 |
(that is, a child process that hasn't executed another program) `\*.is\_thread` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.k8s\_groups` {#common-k8ssessioncontext-k8s\_groups-doc} Type: string Definition: Kubernetes groups of the user that executed the process `\*.k8s\_groups` has 14 possible prefixes: `exec.user\_session` `exit.user\_session` `process.ancestors.user\_session` `process.parent.user\_session` `process.user\_session` `ptrace.tracee.ancestors.user\_session` `ptrace.tracee.parent.user\_session` `ptrace.tracee.user\_session` `setrlimit.target.ancestors.user\_session` `setrlimit.target.parent.user\_session` `setrlimit.target.user\_session` `signal.target.ancestors.user\_session` `signal.target.parent.user\_session` `signal.target.user\_session` ### `\*.k8s\_session\_id` {#common-k8ssessioncontext-k8s\_session\_id-doc} Type: int Definition: Unique identifier of the kubernetes session `\*.k8s\_session\_id` has 14 possible prefixes: `exec.user\_session` `exit.user\_session` `process.ancestors.user\_session` `process.parent.user\_session` `process.user\_session` `ptrace.tracee.ancestors.user\_session` `ptrace.tracee.parent.user\_session` `ptrace.tracee.user\_session` `setrlimit.target.ancestors.user\_session` `setrlimit.target.parent.user\_session` `setrlimit.target.user\_session` `signal.target.ancestors.user\_session` `signal.target.parent.user\_session` `signal.target.user\_session` ### `\*.k8s\_uid` {#common-k8ssessioncontext-k8s\_uid-doc} Type: string Definition: Kubernetes UID of the user that executed the process `\*.k8s\_uid` has 14 possible prefixes: `exec.user\_session` `exit.user\_session` `process.ancestors.user\_session` `process.parent.user\_session` `process.user\_session` `ptrace.tracee.ancestors.user\_session` `ptrace.tracee.parent.user\_session` `ptrace.tracee.user\_session` `setrlimit.target.ancestors.user\_session` `setrlimit.target.parent.user\_session` `setrlimit.target.user\_session` `signal.target.ancestors.user\_session` `signal.target.parent.user\_session` `signal.target.user\_session` ### `\*.k8s\_username` {#common-k8ssessioncontext-k8s\_username-doc} Type: string Definition: Kubernetes username of the user that executed the process `\*.k8s\_username` has 14 possible prefixes: `exec.user\_session` `exit.user\_session` `process.ancestors.user\_session` `process.parent.user\_session` `process.user\_session` `ptrace.tracee.ancestors.user\_session` `ptrace.tracee.parent.user\_session` `ptrace.tracee.user\_session` `setrlimit.target.ancestors.user\_session` `setrlimit.target.parent.user\_session` `setrlimit.target.user\_session` `signal.target.ancestors.user\_session` `signal.target.parent.user\_session` `signal.target.user\_session` ### `\*.l3\_protocol` {#common-networkcontext-l3\_protocol-doc} Type: int Definition: L3 protocol of the network packet `\*.l3\_protocol` has 2 possible prefixes: `network` `packet` Constants: [L3 protocols](#l3-protocols) ### `\*.l4\_protocol` {#common-networkcontext-l4\_protocol-doc} Type: int Definition: L4 protocol of the network packet `\*.l4\_protocol` has 2 possible prefixes: `network` `packet` Constants: [L4 protocols](#l4-protocols) ### `\*.length` {#common-string-length-doc} Type: int Definition: Length of the corresponding element `\*.length` has 98 possible prefixes: `cgroup\_write.file.name` `cgroup\_write.file.path` `chdir.file.name` `chdir.file.path` `chmod.file.name` `chmod.file.path` `chown.file.name` `chown.file.path` `dns.question.name` `exec.file.name` `exec.file.path` `exec.interpreter.file.name` `exec.interpreter.file.path` `exit.file.name` `exit.file.path` `exit.interpreter.file.name` `exit.interpreter.file.path` `link.file.destination.name` `link.file.destination.path` `link.file.name` `link.file.path` `load\_module.file.name` `load\_module.file.path` `mkdir.file.name` `mkdir.file.path` `mmap.file.name` `mmap.file.path` `network\_flow\_monitor.flows` `open.file.name` `open.file.path` `process.ancestors` `process.ancestors.file.name` `process.ancestors.file.path` `process.ancestors.interpreter.file.name` `process.ancestors.interpreter.file.path` `process.file.name` `process.file.path` `process.interpreter.file.name` `process.interpreter.file.path` `process.parent.file.name` `process.parent.file.path` `process.parent.interpreter.file.name` `process.parent.interpreter.file.path` `ptrace.tracee.ancestors` `ptrace.tracee.ancestors.file.name` `ptrace.tracee.ancestors.file.path` `ptrace.tracee.ancestors.interpreter.file.name` `ptrace.tracee.ancestors.interpreter.file.path` `ptrace.tracee.file.name` `ptrace.tracee.file.path` `ptrace.tracee.interpreter.file.name` `ptrace.tracee.interpreter.file.path` `ptrace.tracee.parent.file.name` `ptrace.tracee.parent.file.path` `ptrace.tracee.parent.interpreter.file.name` `ptrace.tracee.parent.interpreter.file.path` `removexattr.file.name` `removexattr.file.path` `rename.file.destination.name` `rename.file.destination.path` `rename.file.name` `rename.file.path` `rmdir.file.name` `rmdir.file.path` `setrlimit.target.ancestors` `setrlimit.target.ancestors.file.name` `setrlimit.target.ancestors.file.path` `setrlimit.target.ancestors.interpreter.file.name` `setrlimit.target.ancestors.interpreter.file.path` `setrlimit.target.file.name` `setrlimit.target.file.path` `setrlimit.target.interpreter.file.name` `setrlimit.target.interpreter.file.path` `setrlimit.target.parent.file.name` `setrlimit.target.parent.file.path` `setrlimit.target.parent.interpreter.file.name` `setrlimit.target.parent.interpreter.file.path` `setxattr.file.name` `setxattr.file.path` `signal.target.ancestors` `signal.target.ancestors.file.name` `signal.target.ancestors.file.path` `signal.target.ancestors.interpreter.file.name` `signal.target.ancestors.interpreter.file.path` `signal.target.file.name` `signal.target.file.path` `signal.target.interpreter.file.name` `signal.target.interpreter.file.path` `signal.target.parent.file.name` `signal.target.parent.file.path` `signal.target.parent.interpreter.file.name` `signal.target.parent.interpreter.file.path` `splice.file.name` `splice.file.path` `unlink.file.name` `unlink.file.path` `utimes.file.name` `utimes.file.path` ### `\*.mode` {#common-filefields-mode-doc} Type: int Definition: Mode of the file `\*.mode` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` Constants: [Inode mode constants](#inode-mode-constants) ### `\*.modification\_time` {#common-filefields-modification\_time-doc} Type: int Definition: Modification time (mtime) of the file `\*.modification\_time` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.mount\_detached` {#common-fileevent-mount\_detached-doc} Type: bool Definition: Indicates whether the file's mount is detached from the VFS `\*.mount\_detached` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.mount\_id` {#common-pathkey-mount\_id-doc} Type: int Definition: Mount ID of the file `\*.mount\_id` has 60 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.cgroup.file` `exec.file` `exec.interpreter.file` `exit.cgroup.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.cgroup.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.cgroup.file` `process.file` `process.interpreter.file` `process.parent.cgroup.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.cgroup.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.cgroup.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.cgroup.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.cgroup.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.cgroup.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.cgroup.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.cgroup.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.cgroup.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.cgroup.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.mount\_visible` {#common-fileevent-mount\_visible-doc} Type: bool Definition: Indicates whether the | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.04755673184990883,
-0.032244790345430374,
-0.015846630558371544,
-0.029002398252487183,
-0.013804728165268898,
-0.07827794551849365,
0.0324394591152668,
0.02634262852370739,
0.03465820848941803,
0.03780204802751541,
0.03655850514769554,
-0.0884065330028534,
-0.04801792651414871,
-0.0181... | 0.162351 |
`process.cgroup.file` `process.file` `process.interpreter.file` `process.parent.cgroup.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.cgroup.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.cgroup.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.cgroup.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.cgroup.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.cgroup.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.cgroup.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.cgroup.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.cgroup.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.cgroup.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.mount\_visible` {#common-fileevent-mount\_visible-doc} Type: bool Definition: Indicates whether the file's mount is visible in the VFS `\*.mount\_visible` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.name` {#common-fileevent-name-doc} Type: string Definition: File's basename `\*.name` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` Example: {{< code-block lang="javascript" >}} exec.file.name == "apt" {{< /code-block >}} Matches the execution of any file named apt. ### `\*.netns` {#common-networkdevicecontext-netns-doc} Type: int Definition: Interface NetNS ID `\*.netns` has 3 possible prefixes: `network.device` `network\_flow\_monitor.device` `packet.device` ### `\*.netns` {#common-pidcontext-netns-doc} Type: int Definition: NetNS ID of the process `\*.netns` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.network\_direction` {#common-networkcontext-network\_direction-doc} Type: int Definition: Network direction of the network packet `\*.network\_direction` has 2 possible prefixes: `network` `packet` Constants: [Network directions](#network-directions) ### `\*.package.epoch` {#common-fileevent-package-epoch-doc} Type: int Definition: [Experimental] Epoch of the package that provided this file `\*.package.epoch` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.package.name` {#common-fileevent-package-name-doc} Type: string Definition: [Experimental] Name of the package that provided this file `\*.package.name` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.package.release` {#common-fileevent-package-release-doc} Type: string Definition: [Experimental] Release of the package that provided this file `\*.package.release` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.package.source\_epoch` {#common-fileevent-package-source\_epoch-doc} Type: int Definition: [Experimental] Epoch of the source package of the package that provided this file `\*.package.source\_epoch` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.package.source\_release` {#common-fileevent-package-source\_release-doc} Type: string Definition: [Experimental] Release of the source package of the package that provided this file `\*.package.source\_release` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.package.source\_version` {#common-fileevent-package-source\_version-doc} Type: string Definition: [Experimental] | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.0684732124209404,
-0.002789516234770417,
-0.09333924949169159,
-0.03740740194916725,
0.027957703918218613,
-0.08085523545742035,
0.040165554732084274,
0.07061503082513809,
0.0009890934452414513,
0.005409212317317724,
0.05347200483083725,
-0.04029879719018936,
-0.0021099753212183714,
0.0... | 0.114844 |
`chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.package.source\_version` {#common-fileevent-package-source\_version-doc} Type: string Definition: [Experimental] Full version of the source package of the package that provided this file `\*.package.source\_version` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.package.version` {#common-fileevent-package-version-doc} Type: string Definition: [Experimental] Full version of the package that provided this file `\*.package.version` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.packet\_count` {#common-networkstats-packet\_count-doc} Type: int Definition: Count of network packets transmitted or received `\*.packet\_count` has 2 possible prefixes: `network\_flow\_monitor.flows.egress` `network\_flow\_monitor.flows.ingress` ### `\*.path` {#common-fileevent-path-doc} Type: string Definition: File's path `\*.path` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` Example: {{< code-block lang="javascript" >}} exec.file.path == "/usr/bin/apt" {{< /code-block >}} Matches the execution of the file located at /usr/bin/apt Example: {{< code-block lang="javascript" >}} open.file.path == "/etc/passwd" {{< /code-block >}} Matches any process opening the /etc/passwd file. ### `\*.pid` {#common-pidcontext-pid-doc} Type: int Definition: Process ID of the process (also called thread group ID) `\*.pid` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.port` {#common-ipportcontext-port-doc} Type: int Definition: Port number `\*.port` has 9 possible prefixes: `accept.addr` `bind.addr` `connect.addr` `network.destination` `network.source` `network\_flow\_monitor.flows.destination` `network\_flow\_monitor.flows.source` `packet.destination` `packet.source` ### `\*.ppid` {#common-process-ppid-doc} Type: int Definition: Parent process ID `\*.ppid` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.retval` {#common-syscallevent-retval-doc} Type: int Definition: Return value of the syscall `\*.retval` has 27 possible prefixes: `accept` `bind` `bpf` `chdir` `chmod` `chown` `connect` `link` `load\_module` `mkdir` `mmap` `mount` `mprotect` `open` `prctl` `ptrace` `removexattr` `rename` `rmdir` `setrlimit` `setsockopt` `setxattr` `signal` `splice` `unlink` `unload\_module` `utimes` Constants: [Error constants](#error-constants) ### `\*.rights` {#common-filefields-rights-doc} Type: int Definition: Rights of the file `\*.rights` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` Constants: [File mode constants](#file-mode-constants) ### `\*.session\_type` {#common-usersessioncontext-session\_type-doc} Type: int Definition: Type of the user session `\*.session\_type` has 14 possible prefixes: `exec.user\_session` `exit.user\_session` `process.ancestors.user\_session` `process.parent.user\_session` `process.user\_session` `ptrace.tracee.ancestors.user\_session` `ptrace.tracee.parent.user\_session` `ptrace.tracee.user\_session` `setrlimit.target.ancestors.user\_session` `setrlimit.target.parent.user\_session` `setrlimit.target.user\_session` `signal.target.ancestors.user\_session` `signal.target.parent.user\_session` `signal.target.user\_session` ### `\*.size` {#common-networkcontext-size-doc} Type: int Definition: Size in bytes of the network packet `\*.size` has 2 possible prefixes: `network` `packet` ### `\*.ssh\_auth\_method` {#common-sshsessioncontext-ssh\_auth\_method-doc} Type: int Definition: SSH authentication method used by the user `\*.ssh\_auth\_method` has 14 possible prefixes: `exec.user\_session` `exit.user\_session` `process.ancestors.user\_session` `process.parent.user\_session` `process.user\_session` `ptrace.tracee.ancestors.user\_session` `ptrace.tracee.parent.user\_session` `ptrace.tracee.user\_session` `setrlimit.target.ancestors.user\_session` `setrlimit.target.parent.user\_session` `setrlimit.target.user\_session` `signal.target.ancestors.user\_session` `signal.target.parent.user\_session` `signal.target.user\_session` Constants: [SSHAuthMethod](#sshauthmethod) ### `\*.ssh\_client\_ip` {#common-sshsessioncontext-ssh\_client\_ip-doc} Type: IP/CIDR Definition: SSH client IP of the user that executed the process `\*.ssh\_client\_ip` has 14 possible prefixes: `exec.user\_session` | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.07439444214105606,
0.00458516413345933,
-0.08020249009132385,
-0.057404208928346634,
0.03912830352783203,
-0.054250869899988174,
0.03232978284358978,
0.0893622413277626,
-0.020097045227885246,
0.0008683322812430561,
0.05336340516805649,
-0.03251522406935692,
-0.02129308506846428,
0.0332... | 0.106347 |
SSH authentication method used by the user `\*.ssh\_auth\_method` has 14 possible prefixes: `exec.user\_session` `exit.user\_session` `process.ancestors.user\_session` `process.parent.user\_session` `process.user\_session` `ptrace.tracee.ancestors.user\_session` `ptrace.tracee.parent.user\_session` `ptrace.tracee.user\_session` `setrlimit.target.ancestors.user\_session` `setrlimit.target.parent.user\_session` `setrlimit.target.user\_session` `signal.target.ancestors.user\_session` `signal.target.parent.user\_session` `signal.target.user\_session` Constants: [SSHAuthMethod](#sshauthmethod) ### `\*.ssh\_client\_ip` {#common-sshsessioncontext-ssh\_client\_ip-doc} Type: IP/CIDR Definition: SSH client IP of the user that executed the process `\*.ssh\_client\_ip` has 14 possible prefixes: `exec.user\_session` `exit.user\_session` `process.ancestors.user\_session` `process.parent.user\_session` `process.user\_session` `ptrace.tracee.ancestors.user\_session` `ptrace.tracee.parent.user\_session` `ptrace.tracee.user\_session` `setrlimit.target.ancestors.user\_session` `setrlimit.target.parent.user\_session` `setrlimit.target.user\_session` `signal.target.ancestors.user\_session` `signal.target.parent.user\_session` `signal.target.user\_session` ### `\*.ssh\_client\_port` {#common-sshsessioncontext-ssh\_client\_port-doc} Type: int Definition: SSH client port of the user that executed the process `\*.ssh\_client\_port` has 14 possible prefixes: `exec.user\_session` `exit.user\_session` `process.ancestors.user\_session` `process.parent.user\_session` `process.user\_session` `ptrace.tracee.ancestors.user\_session` `ptrace.tracee.parent.user\_session` `ptrace.tracee.user\_session` `setrlimit.target.ancestors.user\_session` `setrlimit.target.parent.user\_session` `setrlimit.target.user\_session` `signal.target.ancestors.user\_session` `signal.target.parent.user\_session` `signal.target.user\_session` ### `\*.ssh\_public\_key` {#common-sshsessioncontext-ssh\_public\_key-doc} Type: string Definition: SSH public key used for authentication (if applicable) `\*.ssh\_public\_key` has 14 possible prefixes: `exec.user\_session` `exit.user\_session` `process.ancestors.user\_session` `process.parent.user\_session` `process.user\_session` `ptrace.tracee.ancestors.user\_session` `ptrace.tracee.parent.user\_session` `ptrace.tracee.user\_session` `setrlimit.target.ancestors.user\_session` `setrlimit.target.parent.user\_session` `setrlimit.target.user\_session` `signal.target.ancestors.user\_session` `signal.target.parent.user\_session` `signal.target.user\_session` ### `\*.ssh\_session\_id` {#common-sshsessioncontext-ssh\_session\_id-doc} Type: int Definition: Unique identifier of the SSH user session on the host `\*.ssh\_session\_id` has 14 possible prefixes: `exec.user\_session` `exit.user\_session` `process.ancestors.user\_session` `process.parent.user\_session` `process.user\_session` `ptrace.tracee.ancestors.user\_session` `ptrace.tracee.parent.user\_session` `ptrace.tracee.user\_session` `setrlimit.target.ancestors.user\_session` `setrlimit.target.parent.user\_session` `setrlimit.target.user\_session` `signal.target.ancestors.user\_session` `signal.target.parent.user\_session` `signal.target.user\_session` ### `\*.tags` {#common-containercontext-tags-doc} Type: string Definition: Tags of the container `\*.tags` has 14 possible prefixes: `exec.container` `exit.container` `process.ancestors.container` `process.container` `process.parent.container` `ptrace.tracee.ancestors.container` `ptrace.tracee.container` `ptrace.tracee.parent.container` `setrlimit.target.ancestors.container` `setrlimit.target.container` `setrlimit.target.parent.container` `signal.target.ancestors.container` `signal.target.container` `signal.target.parent.container` ### `\*.tid` {#common-pidcontext-tid-doc} Type: int Definition: Thread ID of the thread `\*.tid` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.tty\_name` {#common-process-tty\_name-doc} Type: string Definition: Name of the TTY associated with the process `\*.tty\_name` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.type` {#common-networkcontext-type-doc} Type: int Definition: Type of the network packet `\*.type` has 2 possible prefixes: `network` `packet` Constants: [Network Protocol Types](#network-protocol-types) ### `\*.uid` {#common-credentials-uid-doc} Type: int Definition: UID of the process `\*.uid` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` ### `\*.uid` {#common-filefields-uid-doc} Type: int Definition: UID of the file's owner `\*.uid` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.user` {#common-credentials-user-doc} Type: string Definition: User of the process `\*.user` has 14 possible prefixes: `exec` `exit` `process` `process.ancestors` `process.parent` `ptrace.tracee` `ptrace.tracee.ancestors` `ptrace.tracee.parent` `setrlimit.target` `setrlimit.target.ancestors` `setrlimit.target.parent` `signal.target` `signal.target.ancestors` `signal.target.parent` Example: {{< code-block lang="javascript" >}} process.user == "root" {{< /code-block >}} Constrain an event to be triggered by a process running as the root user. ### `\*.user` {#common-filefields-user-doc} Type: string Definition: User of the file's owner `\*.user` has 46 possible prefixes: `cgroup\_write.file` `chdir.file` `chmod.file` `chown.file` `exec.file` `exec.interpreter.file` `exit.file` `exit.interpreter.file` `link.file` `link.file.destination` `load\_module.file` `mkdir.file` `mmap.file` `open.file` `process.ancestors.file` `process.ancestors.interpreter.file` `process.file` `process.interpreter.file` `process.parent.file` `process.parent.interpreter.file` `ptrace.tracee.ancestors.file` `ptrace.tracee.ancestors.interpreter.file` `ptrace.tracee.file` `ptrace.tracee.interpreter.file` `ptrace.tracee.parent.file` `ptrace.tracee.parent.interpreter.file` `removexattr.file` `rename.file` `rename.file.destination` `rmdir.file` `setrlimit.target.ancestors.file` `setrlimit.target.ancestors.interpreter.file` `setrlimit.target.file` `setrlimit.target.interpreter.file` `setrlimit.target.parent.file` `setrlimit.target.parent.interpreter.file` `setxattr.file` `signal.target.ancestors.file` `signal.target.ancestors.interpreter.file` `signal.target.file` `signal.target.interpreter.file` `signal.target.parent.file` `signal.target.parent.interpreter.file` `splice.file` `unlink.file` `utimes.file` ### `\*.version` {#common-cgroupcontext-version-doc} Type: int Definition: [Experimental] Version of the cgroup API `\*.version` has 14 possible prefixes: `exec.cgroup` `exit.cgroup` `process.ancestors.cgroup` `process.cgroup` `process.parent.cgroup` `ptrace.tracee.ancestors.cgroup` `ptrace.tracee.cgroup` `ptrace.tracee.parent.cgroup` `setrlimit.target.ancestors.cgroup` `setrlimit.target.cgroup` `setrlimit.target.parent.cgroup` `signal.target.ancestors.cgroup` `signal.target.cgroup` `signal.target.parent.cgroup` ### `accept.addr.family` {#accept-addr-family-doc} Type: int Definition: Address family ### `accept.addr.hostname` {#accept-addr-hostname-doc} Type: string Definition: Address hostname (if available) ### `bind.addr.family` {#bind-addr-family-doc} Type: int Definition: Address family ### `bind.protocol` {#bind-protocol-doc} Type: int Definition: Socket Protocol ### `bpf.cmd` {#bpf-cmd-doc} Type: int Definition: BPF command name Constants: [BPF commands](#bpf-commands) ### `bpf.map.name` {#bpf-map-name-doc} Type: string Definition: Name of the eBPF map (added in 7.35) ### `bpf.map.type` {#bpf-map-type-doc} Type: int Definition: Type of the eBPF map Constants: [BPF map types](#bpf-map-types) ### `bpf.prog.attach\_type` {#bpf-prog-attach\_type-doc} Type: int Definition: Attach | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.002549806609749794,
-0.017020773142576218,
-0.10237311571836472,
-0.0617673359811306,
-0.04975741356611252,
-0.0178670696914196,
0.021512160077691078,
0.06469659507274628,
-0.017097285017371178,
0.007551428396254778,
0.05457120016217232,
-0.06820079684257507,
-0.02080480009317398,
0.0474... | 0.059638 |
Socket Protocol ### `bpf.cmd` {#bpf-cmd-doc} Type: int Definition: BPF command name Constants: [BPF commands](#bpf-commands) ### `bpf.map.name` {#bpf-map-name-doc} Type: string Definition: Name of the eBPF map (added in 7.35) ### `bpf.map.type` {#bpf-map-type-doc} Type: int Definition: Type of the eBPF map Constants: [BPF map types](#bpf-map-types) ### `bpf.prog.attach\_type` {#bpf-prog-attach\_type-doc} Type: int Definition: Attach type of the eBPF program Constants: [BPF attach types](#bpf-attach-types) ### `bpf.prog.helpers` {#bpf-prog-helpers-doc} Type: int Definition: eBPF helpers used by the eBPF program (added in 7.35) Constants: [BPF helper functions](#bpf-helper-functions) ### `bpf.prog.name` {#bpf-prog-name-doc} Type: string Definition: Name of the eBPF program (added in 7.35) ### `bpf.prog.tag` {#bpf-prog-tag-doc} Type: string Definition: Hash (sha1) of the eBPF program (added in 7.35) ### `bpf.prog.type` {#bpf-prog-type-doc} Type: int Definition: Type of the eBPF program Constants: [BPF program types](#bpf-program-types) ### `capabilities.attempted` {#capabilities-attempted-doc} Type: int Definition: Bitmask of the capabilities that the process attempted to use since it started running Constants: [Kernel Capability constants](#kernel-capability-constants) ### `capabilities.used` {#capabilities-used-doc} Type: int Definition: Bitmask of the capabilities that the process successfully used since it started running Constants: [Kernel Capability constants](#kernel-capability-constants) ### `capset.cap\_effective` {#capset-cap\_effective-doc} Type: int Definition: Effective capability set of the process Constants: [Kernel Capability constants](#kernel-capability-constants) ### `capset.cap\_permitted` {#capset-cap\_permitted-doc} Type: int Definition: Permitted capability set of the process Constants: [Kernel Capability constants](#kernel-capability-constants) ### `cgroup\_write.pid` {#cgroup\_write-pid-doc} Type: int Definition: PID of the process added to the cgroup ### `chdir.syscall.path` {#chdir-syscall-path-doc} Type: string Definition: path argument of the syscall ### `chmod.file.destination.mode` {#chmod-file-destination-mode-doc} Type: int Definition: New mode of the chmod-ed file Constants: [File mode constants](#file-mode-constants) ### `chmod.file.destination.rights` {#chmod-file-destination-rights-doc} Type: int Definition: New rights of the chmod-ed file Constants: [File mode constants](#file-mode-constants) ### `chmod.syscall.mode` {#chmod-syscall-mode-doc} Type: int Definition: mode argument of the syscall ### `chmod.syscall.path` {#chmod-syscall-path-doc} Type: string Definition: path argument of the syscall ### `chown.file.destination.gid` {#chown-file-destination-gid-doc} Type: int Definition: New GID of the chown-ed file's owner ### `chown.file.destination.group` {#chown-file-destination-group-doc} Type: string Definition: New group of the chown-ed file's owner ### `chown.file.destination.uid` {#chown-file-destination-uid-doc} Type: int Definition: New UID of the chown-ed file's owner ### `chown.file.destination.user` {#chown-file-destination-user-doc} Type: string Definition: New user of the chown-ed file's owner ### `chown.syscall.gid` {#chown-syscall-gid-doc} Type: int Definition: GID argument of the syscall ### `chown.syscall.path` {#chown-syscall-path-doc} Type: string Definition: Path argument of the syscall ### `chown.syscall.uid` {#chown-syscall-uid-doc} Type: int Definition: UID argument of the syscall ### `connect.addr.family` {#connect-addr-family-doc} Type: int Definition: Address family ### `connect.addr.hostname` {#connect-addr-hostname-doc} Type: string Definition: Address hostname (if available) ### `connect.protocol` {#connect-protocol-doc} Type: int Definition: Socket Protocol ### `dns.id` {#dns-id-doc} Type: int Definition: [Experimental] the DNS request ID ### `dns.question.class` {#dns-question-class-doc} Type: int Definition: the class looked up by the DNS question Constants: [DNS qclasses](#dns-qclasses) ### `dns.question.count` {#dns-question-count-doc} Type: int Definition: the total count of questions in the DNS request ### `dns.question.length` {#dns-question-length-doc} Type: int Definition: the total DNS request size in bytes ### `dns.question.name` {#dns-question-name-doc} Type: string Definition: the queried domain name ### `dns.question.type` {#dns-question-type-doc} Type: int Definition: a two octet code which specifies the DNS question type Constants: [DNS qtypes](#dns-qtypes) ### `dns.response.code` {#dns-response-code-doc} Type: int Definition: Response code of the DNS response according to RFC 1035 Constants: [DNS Responses](#dns-responses) ### `event.async` {#event-async-doc} Type: bool Definition: True if the syscall was asynchronous ### `event.hostname` {#event-hostname-doc} Type: string Definition: Hostname associated with the event ### `event.origin` {#event-origin-doc} Type: string Definition: Origin of the event ### `event.os` {#event-os-doc} Type: string Definition: Operating system of the event ### `event.rule.tags` {#event-rule-tags-doc} Type: string Definition: Tags associated with the rule that's used to evaluate the event ### `event.service` {#event-service-doc} Type: string Definition: Service associated with the event ### `event.signature` {#event-signature-doc} Type: string Definition: Signature of the process pid and its cgroup with agent secret key ### `event.source` {#event-source-doc} Type: string Definition: [Experimental] Source of the event. Can be either | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.019401665776968002,
-0.033693887293338776,
0.0034430664964020252,
0.00311772502027452,
-0.024349238723516464,
0.057058900594711304,
0.02704654261469841,
0.044880546629428864,
-0.08177457004785538,
-0.003115041647106409,
0.014505445025861263,
-0.13374511897563934,
-0.03911800682544708,
0... | 0.111013 |
rule that's used to evaluate the event ### `event.service` {#event-service-doc} Type: string Definition: Service associated with the event ### `event.signature` {#event-signature-doc} Type: string Definition: Signature of the process pid and its cgroup with agent secret key ### `event.source` {#event-source-doc} Type: string Definition: [Experimental] Source of the event. Can be either 'runtime' or 'snapshot'. ### `event.timestamp` {#event-timestamp-doc} Type: int Definition: Timestamp of the event ### `exec.file.metadata.abi` {#exec-file-metadata-abi-doc} Type: int Definition: [Experimental] ABI of the file (only for executable files) Constants: [ABI](#abi) ### `exec.file.metadata.architecture` {#exec-file-metadata-architecture-doc} Type: int Definition: [Experimental] Architecture of the file (only for executable files) Constants: [Architecture](#architecture) ### `exec.file.metadata.compression` {#exec-file-metadata-compression-doc} Type: int Definition: [Experimental] Compression type of the file (only for compressed files) Constants: [CompressionType](#compressiontype) ### `exec.file.metadata.is\_executable` {#exec-file-metadata-is\_executable-doc} Type: bool Definition: [Experimental] Tells if the file is executable or not ### `exec.file.metadata.is\_garble\_obfuscated` {#exec-file-metadata-is\_garble\_obfuscated-doc} Type: bool Definition: [Experimental] Tells if the binary has been obfuscated using garble ### `exec.file.metadata.is\_upx\_packed` {#exec-file-metadata-is\_upx\_packed-doc} Type: bool Definition: [Experimental] Tells if the binary has been packed using UPX ### `exec.file.metadata.size` {#exec-file-metadata-size-doc} Type: int Definition: [Experimental] Size of the file ### `exec.file.metadata.type` {#exec-file-metadata-type-doc} Type: int Definition: [Experimental] Type of the file Constants: [FileType](#filetype) ### `exec.syscall.path` {#exec-syscall-path-doc} Type: string Definition: path argument of the syscall ### `exit.cause` {#exit-cause-doc} Type: int Definition: Cause of the process termination (one of EXITED, SIGNALED, COREDUMPED) ### `exit.code` {#exit-code-doc} Type: int Definition: Exit code of the process or number of the signal that caused the process to terminate ### `imds.aws.is\_imds\_v2` {#imds-aws-is\_imds\_v2-doc} Type: bool Definition: a boolean which specifies if the IMDS event follows IMDSv1 or IMDSv2 conventions ### `imds.aws.security\_credentials.type` {#imds-aws-security\_credentials-type-doc} Type: string Definition: the security credentials type ### `imds.cloud\_provider` {#imds-cloud\_provider-doc} Type: string Definition: the intended cloud provider of the IMDS event ### `imds.host` {#imds-host-doc} Type: string Definition: the host of the HTTP protocol ### `imds.server` {#imds-server-doc} Type: string Definition: the server header of a response ### `imds.type` {#imds-type-doc} Type: string Definition: the type of IMDS event ### `imds.url` {#imds-url-doc} Type: string Definition: the queried IMDS URL ### `imds.user\_agent` {#imds-user\_agent-doc} Type: string Definition: the user agent of the HTTP client ### `link.syscall.destination.path` {#link-syscall-destination-path-doc} Type: string Definition: Destination path argument of the syscall ### `link.syscall.path` {#link-syscall-path-doc} Type: string Definition: Path argument of the syscall ### `load\_module.args` {#load\_module-args-doc} Type: string Definition: Parameters (as a string) of the new kernel module ### `load\_module.args\_truncated` {#load\_module-args\_truncated-doc} Type: bool Definition: Indicates if the arguments were truncated or not ### `load\_module.argv` {#load\_module-argv-doc} Type: string Definition: Parameters (as an array) of the new kernel module ### `load\_module.loaded\_from\_memory` {#load\_module-loaded\_from\_memory-doc} Type: bool Definition: Indicates if the kernel module was loaded from memory ### `load\_module.name` {#load\_module-name-doc} Type: string Definition: Name of the new kernel module ### `mkdir.file.destination.mode` {#mkdir-file-destination-mode-doc} Type: int Definition: Mode of the new directory Constants: [File mode constants](#file-mode-constants) ### `mkdir.file.destination.rights` {#mkdir-file-destination-rights-doc} Type: int Definition: Rights of the new directory Constants: [File mode constants](#file-mode-constants) ### `mkdir.syscall.mode` {#mkdir-syscall-mode-doc} Type: int Definition: Mode of the new directory ### `mkdir.syscall.path` {#mkdir-syscall-path-doc} Type: string Definition: Path argument of the syscall ### `mmap.flags` {#mmap-flags-doc} Type: int Definition: memory segment flags Constants: [MMap flags](#mmap-flags) ### `mmap.protection` {#mmap-protection-doc} Type: int Definition: memory segment protection Constants: [Protection constants](#protection-constants) ### `mount.detached` {#mount-detached-doc} Type: bool Definition: Mount is detached from the VFS ### `mount.fs\_type` {#mount-fs\_type-doc} Type: string Definition: Type of the mounted file system ### `mount.mountpoint.path` {#mount-mountpoint-path-doc} Type: string Definition: Path of the mount point ### `mount.root.path` {#mount-root-path-doc} Type: string Definition: Root path of the mount ### `mount.source.path` {#mount-source-path-doc} Type: string Definition: Source path of a bind mount ### `mount.syscall.fs\_type` {#mount-syscall-fs\_type-doc} Type: string Definition: File system type argument of the syscall ### `mount.syscall.mountpoint.path` {#mount-syscall-mountpoint-path-doc} Type: string Definition: Mount point path argument of the syscall ### `mount.syscall.source.path` {#mount-syscall-source-path-doc} Type: string Definition: Source path argument of | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.07960481196641922,
0.07856012880802155,
-0.05622215196490288,
-0.07516845315694809,
0.04544248431921005,
-0.05113731324672699,
0.01565425656735897,
0.05117698386311531,
0.044797591865062714,
0.04042709246277809,
0.004422560799866915,
-0.04911617934703827,
-0.01564321294426918,
-0.020145... | 0.140814 |
the mount ### `mount.source.path` {#mount-source-path-doc} Type: string Definition: Source path of a bind mount ### `mount.syscall.fs\_type` {#mount-syscall-fs\_type-doc} Type: string Definition: File system type argument of the syscall ### `mount.syscall.mountpoint.path` {#mount-syscall-mountpoint-path-doc} Type: string Definition: Mount point path argument of the syscall ### `mount.syscall.source.path` {#mount-syscall-source-path-doc} Type: string Definition: Source path argument of the syscall ### `mount.visible` {#mount-visible-doc} Type: bool Definition: Mount is not visible in the VFS ### `mprotect.req\_protection` {#mprotect-req\_protection-doc} Type: int Definition: new memory segment protection Constants: [Virtual Memory flags](#virtual-memory-flags) ### `mprotect.vm\_protection` {#mprotect-vm\_protection-doc} Type: int Definition: initial memory segment protection Constants: [Virtual Memory flags](#virtual-memory-flags) ### `network\_flow\_monitor.flows.l3\_protocol` {#network\_flow\_monitor-flows-l3\_protocol-doc} Type: int Definition: L3 protocol of the network packet Constants: [L3 protocols](#l3-protocols) ### `network\_flow\_monitor.flows.l4\_protocol` {#network\_flow\_monitor-flows-l4\_protocol-doc} Type: int Definition: L4 protocol of the network packet Constants: [L4 protocols](#l4-protocols) ### `open.file.destination.mode` {#open-file-destination-mode-doc} Type: int Definition: Mode of the created file Constants: [File mode constants](#file-mode-constants) ### `open.flags` {#open-flags-doc} Type: int Definition: Flags used when opening the file Constants: [Open flags](#open-flags) ### `open.syscall.flags` {#open-syscall-flags-doc} Type: int Definition: Flags argument of the syscall ### `open.syscall.mode` {#open-syscall-mode-doc} Type: int Definition: Mode argument of the syscall ### `open.syscall.path` {#open-syscall-path-doc} Type: string Definition: Path argument of the syscall ### `packet.filter` {#packet-filter-doc} Type: string Definition: pcap filter expression ### `packet.tls.version` {#packet-tls-version-doc} Type: int Definition: TLS version ### `prctl.is\_name\_truncated` {#prctl-is\_name\_truncated-doc} Type: bool Definition: Indicates that the name field is truncated ### `prctl.new\_name` {#prctl-new\_name-doc} Type: string Definition: New name of the process ### `prctl.option` {#prctl-option-doc} Type: int Definition: prctl option ### `ptrace.request` {#ptrace-request-doc} Type: int Definition: ptrace request Constants: [Ptrace constants](#ptrace-constants) ### `rename.syscall.destination.path` {#rename-syscall-destination-path-doc} Type: string Definition: Destination path argument of the syscall ### `rename.syscall.path` {#rename-syscall-path-doc} Type: string Definition: Path argument of the syscall ### `rmdir.syscall.path` {#rmdir-syscall-path-doc} Type: string Definition: Path argument of the syscall ### `selinux.bool.name` {#selinux-bool-name-doc} Type: string Definition: SELinux boolean name ### `selinux.bool.state` {#selinux-bool-state-doc} Type: string Definition: SELinux boolean new value ### `selinux.bool\_commit.state` {#selinux-bool\_commit-state-doc} Type: bool Definition: Indicator of a SELinux boolean commit operation ### `selinux.enforce.status` {#selinux-enforce-status-doc} Type: string Definition: SELinux enforcement status (one of "enforcing", "permissive", "disabled") ### `setgid.egid` {#setgid-egid-doc} Type: int Definition: New effective GID of the process ### `setgid.egroup` {#setgid-egroup-doc} Type: string Definition: New effective group of the process ### `setgid.fsgid` {#setgid-fsgid-doc} Type: int Definition: New FileSystem GID of the process ### `setgid.fsgroup` {#setgid-fsgroup-doc} Type: string Definition: New FileSystem group of the process ### `setgid.gid` {#setgid-gid-doc} Type: int Definition: New GID of the process ### `setgid.group` {#setgid-group-doc} Type: string Definition: New group of the process ### `setrlimit.resource` {#setrlimit-resource-doc} Type: int Definition: Resource type being limited Constants: [Resource limit types](#resource-limit-types) ### `setrlimit.rlim\_cur` {#setrlimit-rlim\_cur-doc} Type: int Definition: Current (soft) limit value ### `setrlimit.rlim\_max` {#setrlimit-rlim\_max-doc} Type: int Definition: Maximum (hard) limit value ### `setsockopt.filter\_hash` {#setsockopt-filter\_hash-doc} Type: string Definition: Hash of the currently attached filter using sha256. Only available if the optname is `SO\_ATTACH\_FILTER` ### `setsockopt.filter\_instructions` {#setsockopt-filter\_instructions-doc} Type: string Definition: Instructions of the currently attached filter. Only available if the optname is `SO\_ATTACH\_FILTER` ### `setsockopt.filter\_len` {#setsockopt-filter\_len-doc} Type: int Definition: Length of the currently attached filter. Only available if the optname is `SO\_ATTACH\_FILTER` ### `setsockopt.is\_filter\_truncated` {#setsockopt-is\_filter\_truncated-doc} Type: bool Definition: Indicates that the currently attached filter is truncated. Only available if the optname is `SO\_ATTACH\_FILTER` ### `setsockopt.level` {#setsockopt-level-doc} Type: int Definition: Socket level ### `setsockopt.optname` {#setsockopt-optname-doc} Type: int Definition: Socket option name ### `setsockopt.socket\_family` {#setsockopt-socket\_family-doc} Type: int Definition: Socket family ### `setsockopt.socket\_protocol` {#setsockopt-socket\_protocol-doc} Type: int Definition: Socket protocol ### `setsockopt.socket\_type` {#setsockopt-socket\_type-doc} Type: int Definition: Socket type ### `setsockopt.used\_immediates` {#setsockopt-used\_immediates-doc} Type: int Definition: List of immediate values used in the currently attached filter. Only available if the optname is `SO\_ATTACH\_FILTER` ### `setuid.euid` {#setuid-euid-doc} Type: int Definition: New effective UID of the process ### `setuid.euser` {#setuid-euser-doc} Type: string Definition: New effective user of the process ### `setuid.fsuid` | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.0019084725063294172,
-0.03078773058950901,
-0.027864033356308937,
0.020835986360907555,
0.07667060941457748,
-0.037869811058044434,
0.003514263080433011,
0.0663917064666748,
0.026026589795947075,
0.011260938830673695,
0.0700778067111969,
-0.029557595029473305,
-0.03565673530101776,
0.008... | 0.065523 |
type ### `setsockopt.used\_immediates` {#setsockopt-used\_immediates-doc} Type: int Definition: List of immediate values used in the currently attached filter. Only available if the optname is `SO\_ATTACH\_FILTER` ### `setuid.euid` {#setuid-euid-doc} Type: int Definition: New effective UID of the process ### `setuid.euser` {#setuid-euser-doc} Type: string Definition: New effective user of the process ### `setuid.fsuid` {#setuid-fsuid-doc} Type: int Definition: New FileSystem UID of the process ### `setuid.fsuser` {#setuid-fsuser-doc} Type: string Definition: New FileSystem user of the process ### `setuid.uid` {#setuid-uid-doc} Type: int Definition: New UID of the process ### `setuid.user` {#setuid-user-doc} Type: string Definition: New user of the process ### `signal.pid` {#signal-pid-doc} Type: int Definition: Target PID ### `signal.type` {#signal-type-doc} Type: int Definition: Signal type (ex: SIGHUP, SIGINT, SIGQUIT, etc) Constants: [Signal constants](#signal-constants) ### `splice.pipe\_entry\_flag` {#splice-pipe\_entry\_flag-doc} Type: int Definition: Entry flag of the "fd\_out" pipe passed to the splice syscall Constants: [Pipe buffer flags](#pipe-buffer-flags) ### `splice.pipe\_exit\_flag` {#splice-pipe\_exit\_flag-doc} Type: int Definition: Exit flag of the "fd\_out" pipe passed to the splice syscall Constants: [Pipe buffer flags](#pipe-buffer-flags) ### `sysctl.action` {#sysctl-action-doc} Type: int Definition: Action performed on the system control parameter Constants: [SysCtl Actions](#sysctl-actions) ### `sysctl.file\_position` {#sysctl-file\_position-doc} Type: int Definition: Position in the sysctl control parameter file at which the action occurred ### `sysctl.name` {#sysctl-name-doc} Type: string Definition: Name of the system control parameter ### `sysctl.name\_truncated` {#sysctl-name\_truncated-doc} Type: bool Definition: Indicates that the name field is truncated ### `sysctl.old\_value` {#sysctl-old\_value-doc} Type: string Definition: Old value of the system control parameter ### `sysctl.old\_value\_truncated` {#sysctl-old\_value\_truncated-doc} Type: bool Definition: Indicates that the old value field is truncated ### `sysctl.value` {#sysctl-value-doc} Type: string Definition: New and/or current value for the system control parameter depending on the action type ### `sysctl.value\_truncated` {#sysctl-value\_truncated-doc} Type: bool Definition: Indicates that the value field is truncated ### `unlink.flags` {#unlink-flags-doc} Type: int Definition: Flags of the unlink syscall Constants: [Unlink flags](#unlink-flags) ### `unlink.syscall.dirfd` {#unlink-syscall-dirfd-doc} Type: int Definition: Directory file descriptor argument of the syscall ### `unlink.syscall.flags` {#unlink-syscall-flags-doc} Type: int Definition: Flags argument of the syscall ### `unlink.syscall.path` {#unlink-syscall-path-doc} Type: string Definition: Path argument of the syscall ### `unload\_module.name` {#unload\_module-name-doc} Type: string Definition: Name of the kernel module that was deleted ### `utimes.syscall.path` {#utimes-syscall-path-doc} Type: string Definition: Path argument of the syscall ## Constants Constants are used to improve the readability of your rules. Some constants are common to all architectures, others are specific to some architectures. ### `ABI` {#abi} ABI used for binary compilation. | Name | Architectures | | ---- |---------------| | `BIT32` | all | | `BIT64` | all | | `UNKNOWN\_ABI` | all | ### `Architecture` {#architecture} Architecture of the binary. | Name | Architectures | | ---- |---------------| | `X86` | all | | `X86\_64` | all | | `ARM` | all | | `ARM64` | all | | `UNKNOWN\_ARCHITECTURE` | all | ### `BPF attach types` {#bpf-attach-types} BPF attach types are the supported eBPF program attach types. | Name | Architectures | | ---- |---------------| | `BPF\_CGROUP\_INET\_INGRESS` | all | | `BPF\_CGROUP\_INET\_EGRESS` | all | | `BPF\_CGROUP\_INET\_SOCK\_CREATE` | all | | `BPF\_CGROUP\_SOCK\_OPS` | all | | `BPF\_SK\_SKB\_STREAM\_PARSER` | all | | `BPF\_SK\_SKB\_STREAM\_VERDICT` | all | | `BPF\_CGROUP\_DEVICE` | all | | `BPF\_SK\_MSG\_VERDICT` | all | | `BPF\_CGROUP\_INET4\_BIND` | all | | `BPF\_CGROUP\_INET6\_BIND` | all | | `BPF\_CGROUP\_INET4\_CONNECT` | all | | `BPF\_CGROUP\_INET6\_CONNECT` | all | | `BPF\_CGROUP\_INET4\_POST\_BIND` | all | | `BPF\_CGROUP\_INET6\_POST\_BIND` | all | | `BPF\_CGROUP\_UDP4\_SENDMSG` | all | | `BPF\_CGROUP\_UDP6\_SENDMSG` | all | | `BPF\_LIRC\_MODE2` | all | | `BPF\_FLOW\_DISSECTOR` | all | | `BPF\_CGROUP\_SYSCTL` | all | | `BPF\_CGROUP\_UDP4\_RECVMSG` | all | | `BPF\_CGROUP\_UDP6\_RECVMSG` | all | | `BPF\_CGROUP\_GETSOCKOPT` | all | | `BPF\_CGROUP\_SETSOCKOPT` | all | | `BPF\_TRACE\_RAW\_TP` | all | | `BPF\_TRACE\_FENTRY` | all | | `BPF\_TRACE\_FEXIT` | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.034469105303287506,
0.04130478575825691,
-0.06360726058483124,
0.01876978389918804,
0.006734915543347597,
-0.02942795678973198,
0.11059395968914032,
0.0939326360821724,
-0.013778836466372013,
-0.0028622690588235855,
0.025284748524427414,
-0.060451067984104156,
-0.035421449691057205,
0.0... | 0.144328 |
all | | `BPF\_LIRC\_MODE2` | all | | `BPF\_FLOW\_DISSECTOR` | all | | `BPF\_CGROUP\_SYSCTL` | all | | `BPF\_CGROUP\_UDP4\_RECVMSG` | all | | `BPF\_CGROUP\_UDP6\_RECVMSG` | all | | `BPF\_CGROUP\_GETSOCKOPT` | all | | `BPF\_CGROUP\_SETSOCKOPT` | all | | `BPF\_TRACE\_RAW\_TP` | all | | `BPF\_TRACE\_FENTRY` | all | | `BPF\_TRACE\_FEXIT` | all | | `BPF\_MODIFY\_RETURN` | all | | `BPF\_LSM\_MAC` | all | | `BPF\_TRACE\_ITER` | all | | `BPF\_CGROUP\_INET4\_GETPEERNAME` | all | | `BPF\_CGROUP\_INET6\_GETPEERNAME` | all | | `BPF\_CGROUP\_INET4\_GETSOCKNAME` | all | | `BPF\_CGROUP\_INET6\_GETSOCKNAME` | all | | `BPF\_XDP\_DEVMAP` | all | | `BPF\_CGROUP\_INET\_SOCK\_RELEASE` | all | | `BPF\_XDP\_CPUMAP` | all | | `BPF\_SK\_LOOKUP` | all | | `BPF\_XDP` | all | | `BPF\_SK\_SKB\_VERDICT` | all | ### `BPF commands` {#bpf-commands} BPF commands are used to specify a command to a bpf syscall. | Name | Architectures | | ---- |---------------| | `BPF\_MAP\_CREATE` | all | | `BPF\_MAP\_LOOKUP\_ELEM` | all | | `BPF\_MAP\_UPDATE\_ELEM` | all | | `BPF\_MAP\_DELETE\_ELEM` | all | | `BPF\_MAP\_GET\_NEXT\_KEY` | all | | `BPF\_PROG\_LOAD` | all | | `BPF\_OBJ\_PIN` | all | | `BPF\_OBJ\_GET` | all | | `BPF\_PROG\_ATTACH` | all | | `BPF\_PROG\_DETACH` | all | | `BPF\_PROG\_TEST\_RUN` | all | | `BPF\_PROG\_RUN` | all | | `BPF\_PROG\_GET\_NEXT\_ID` | all | | `BPF\_MAP\_GET\_NEXT\_ID` | all | | `BPF\_PROG\_GET\_FD\_BY\_ID` | all | | `BPF\_MAP\_GET\_FD\_BY\_ID` | all | | `BPF\_OBJ\_GET\_INFO\_BY\_FD` | all | | `BPF\_PROG\_QUERY` | all | | `BPF\_RAW\_TRACEPOINT\_OPEN` | all | | `BPF\_BTF\_LOAD` | all | | `BPF\_BTF\_GET\_FD\_BY\_ID` | all | | `BPF\_TASK\_FD\_QUERY` | all | | `BPF\_MAP\_LOOKUP\_AND\_DELETE\_ELEM` | all | | `BPF\_MAP\_FREEZE` | all | | `BPF\_BTF\_GET\_NEXT\_ID` | all | | `BPF\_MAP\_LOOKUP\_BATCH` | all | | `BPF\_MAP\_LOOKUP\_AND\_DELETE\_BATCH` | all | | `BPF\_MAP\_UPDATE\_BATCH` | all | | `BPF\_MAP\_DELETE\_BATCH` | all | | `BPF\_LINK\_CREATE` | all | | `BPF\_LINK\_UPDATE` | all | | `BPF\_LINK\_GET\_FD\_BY\_ID` | all | | `BPF\_LINK\_GET\_NEXT\_ID` | all | | `BPF\_ENABLE\_STATS` | all | | `BPF\_ITER\_CREATE` | all | | `BPF\_LINK\_DETACH` | all | | `BPF\_PROG\_BIND\_MAP` | all | ### `BPF helper functions` {#bpf-helper-functions} BPF helper functions are the supported BPF helper functions. | Name | Architectures | | ---- |---------------| | `BPF\_UNSPEC` | all | | `BPF\_MAP\_LOOKUP\_ELEM` | all | | `BPF\_MAP\_UPDATE\_ELEM` | all | | `BPF\_MAP\_DELETE\_ELEM` | all | | `BPF\_PROBE\_READ` | all | | `BPF\_KTIME\_GET\_NS` | all | | `BPF\_TRACE\_PRINTK` | all | | `BPF\_GET\_PRANDOM\_U32` | all | | `BPF\_GET\_SMP\_PROCESSOR\_ID` | all | | `BPF\_SKB\_STORE\_BYTES` | all | | `BPF\_L3\_CSUM\_REPLACE` | all | | `BPF\_L4\_CSUM\_REPLACE` | all | | `BPF\_TAIL\_CALL` | all | | `BPF\_CLONE\_REDIRECT` | all | | `BPF\_GET\_CURRENT\_PID\_TGID` | all | | `BPF\_GET\_CURRENT\_UID\_GID` | all | | `BPF\_GET\_CURRENT\_COMM` | all | | `BPF\_GET\_CGROUP\_CLASSID` | all | | `BPF\_SKB\_VLAN\_PUSH` | all | | `BPF\_SKB\_VLAN\_POP` | all | | `BPF\_SKB\_GET\_TUNNEL\_KEY` | all | | `BPF\_SKB\_SET\_TUNNEL\_KEY` | all | | `BPF\_PERF\_EVENT\_READ` | all | | `BPF\_REDIRECT` | all | | `BPF\_GET\_ROUTE\_REALM` | all | | `BPF\_PERF\_EVENT\_OUTPUT` | all | | `BPF\_SKB\_LOAD\_BYTES` | all | | `BPF\_GET\_STACKID` | all | | `BPF\_CSUM\_DIFF` | all | | `BPF\_SKB\_GET\_TUNNEL\_OPT` | all | | `BPF\_SKB\_SET\_TUNNEL\_OPT` | all | | `BPF\_SKB\_CHANGE\_PROTO` | all | | `BPF\_SKB\_CHANGE\_TYPE` | all | | `BPF\_SKB\_UNDER\_CGROUP` | all | | `BPF\_GET\_HASH\_RECALC` | all | | `BPF\_GET\_CURRENT\_TASK` | all | | `BPF\_PROBE\_WRITE\_USER` | all | | `BPF\_CURRENT\_TASK\_UNDER\_CGROUP` | all | | `BPF\_SKB\_CHANGE\_TAIL` | all | | `BPF\_SKB\_PULL\_DATA` | all | | `BPF\_CSUM\_UPDATE` | all | | `BPF\_SET\_HASH\_INVALID` | all | | `BPF\_GET\_NUMA\_NODE\_ID` | all | | `BPF\_SKB\_CHANGE\_HEAD` | all | | `BPF\_XDP\_ADJUST\_HEAD` | all | | `BPF\_PROBE\_READ\_STR` | all | | `BPF\_GET\_SOCKET\_COOKIE` | all | | `BPF\_GET\_SOCKET\_UID` | all | | `BPF\_SET\_HASH` | all | | `BPF\_SETSOCKOPT` | all | | `BPF\_SKB\_ADJUST\_ROOM` | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.013144641183316708,
-0.05585642158985138,
-0.10103894025087357,
-0.019244976341724396,
-0.001721951412037015,
-0.04378335550427437,
0.12226629257202148,
0.05041886121034622,
-0.016115080565214157,
-0.006929493974894285,
0.08319371938705444,
-0.059128377586603165,
0.0016998345963656902,
-... | 0.111615 |
| all | | `BPF\_SET\_HASH\_INVALID` | all | | `BPF\_GET\_NUMA\_NODE\_ID` | all | | `BPF\_SKB\_CHANGE\_HEAD` | all | | `BPF\_XDP\_ADJUST\_HEAD` | all | | `BPF\_PROBE\_READ\_STR` | all | | `BPF\_GET\_SOCKET\_COOKIE` | all | | `BPF\_GET\_SOCKET\_UID` | all | | `BPF\_SET\_HASH` | all | | `BPF\_SETSOCKOPT` | all | | `BPF\_SKB\_ADJUST\_ROOM` | all | | `BPF\_REDIRECT\_MAP` | all | | `BPF\_SK\_REDIRECT\_MAP` | all | | `BPF\_SOCK\_MAP\_UPDATE` | all | | `BPF\_XDP\_ADJUST\_META` | all | | `BPF\_PERF\_EVENT\_READ\_VALUE` | all | | `BPF\_PERF\_PROG\_READ\_VALUE` | all | | `BPF\_GETSOCKOPT` | all | | `BPF\_OVERRIDE\_RETURN` | all | | `BPF\_SOCK\_OPS\_CB\_FLAGS\_SET` | all | | `BPF\_MSG\_REDIRECT\_MAP` | all | | `BPF\_MSG\_APPLY\_BYTES` | all | | `BPF\_MSG\_CORK\_BYTES` | all | | `BPF\_MSG\_PULL\_DATA` | all | | `BPF\_BIND` | all | | `BPF\_XDP\_ADJUST\_TAIL` | all | | `BPF\_SKB\_GET\_XFRM\_STATE` | all | | `BPF\_GET\_STACK` | all | | `BPF\_SKB\_LOAD\_BYTES\_RELATIVE` | all | | `BPF\_FIB\_LOOKUP` | all | | `BPF\_SOCK\_HASH\_UPDATE` | all | | `BPF\_MSG\_REDIRECT\_HASH` | all | | `BPF\_SK\_REDIRECT\_HASH` | all | | `BPF\_LWT\_PUSH\_ENCAP` | all | | `BPF\_LWT\_SEG6\_STORE\_BYTES` | all | | `BPF\_LWT\_SEG6\_ADJUST\_SRH` | all | | `BPF\_LWT\_SEG6\_ACTION` | all | | `BPF\_RC\_REPEAT` | all | | `BPF\_RC\_KEYDOWN` | all | | `BPF\_SKB\_CGROUP\_ID` | all | | `BPF\_GET\_CURRENT\_CGROUP\_ID` | all | | `BPF\_GET\_LOCAL\_STORAGE` | all | | `BPF\_SK\_SELECT\_REUSEPORT` | all | | `BPF\_SKB\_ANCESTOR\_CGROUP\_ID` | all | | `BPF\_SK\_LOOKUP\_TCP` | all | | `BPF\_SK\_LOOKUP\_UDP` | all | | `BPF\_SK\_RELEASE` | all | | `BPF\_MAP\_PUSH\_ELEM` | all | | `BPF\_MAP\_POP\_ELEM` | all | | `BPF\_MAP\_PEEK\_ELEM` | all | | `BPF\_MSG\_PUSH\_DATA` | all | | `BPF\_MSG\_POP\_DATA` | all | | `BPF\_RC\_POINTER\_REL` | all | | `BPF\_SPIN\_LOCK` | all | | `BPF\_SPIN\_UNLOCK` | all | | `BPF\_SK\_FULLSOCK` | all | | `BPF\_TCP\_SOCK` | all | | `BPF\_SKB\_ECN\_SET\_CE` | all | | `BPF\_GET\_LISTENER\_SOCK` | all | | `BPF\_SKC\_LOOKUP\_TCP` | all | | `BPF\_TCP\_CHECK\_SYNCOOKIE` | all | | `BPF\_SYSCTL\_GET\_NAME` | all | | `BPF\_SYSCTL\_GET\_CURRENT\_VALUE` | all | | `BPF\_SYSCTL\_GET\_NEW\_VALUE` | all | | `BPF\_SYSCTL\_SET\_NEW\_VALUE` | all | | `BPF\_STRTOL` | all | | `BPF\_STRTOUL` | all | | `BPF\_SK\_STORAGE\_GET` | all | | `BPF\_SK\_STORAGE\_DELETE` | all | | `BPF\_SEND\_SIGNAL` | all | | `BPF\_TCP\_GEN\_SYNCOOKIE` | all | | `BPF\_SKB\_OUTPUT` | all | | `BPF\_PROBE\_READ\_USER` | all | | `BPF\_PROBE\_READ\_KERNEL` | all | | `BPF\_PROBE\_READ\_USER\_STR` | all | | `BPF\_PROBE\_READ\_KERNEL\_STR` | all | | `BPF\_TCP\_SEND\_ACK` | all | | `BPF\_SEND\_SIGNAL\_THREAD` | all | | `BPF\_JIFFIES64` | all | | `BPF\_READ\_BRANCH\_RECORDS` | all | | `BPF\_GET\_NS\_CURRENT\_PID\_TGID` | all | | `BPF\_XDP\_OUTPUT` | all | | `BPF\_GET\_NETNS\_COOKIE` | all | | `BPF\_GET\_CURRENT\_ANCESTOR\_CGROUP\_ID` | all | | `BPF\_SK\_ASSIGN` | all | | `BPF\_KTIME\_GET\_BOOT\_NS` | all | | `BPF\_SEQ\_PRINTF` | all | | `BPF\_SEQ\_WRITE` | all | | `BPF\_SK\_CGROUP\_ID` | all | | `BPF\_SK\_ANCESTOR\_CGROUP\_ID` | all | | `BPF\_RINGBUF\_OUTPUT` | all | | `BPF\_RINGBUF\_RESERVE` | all | | `BPF\_RINGBUF\_SUBMIT` | all | | `BPF\_RINGBUF\_DISCARD` | all | | `BPF\_RINGBUF\_QUERY` | all | | `BPF\_CSUM\_LEVEL` | all | | `BPF\_SKC\_TO\_TCP6\_SOCK` | all | | `BPF\_SKC\_TO\_TCP\_SOCK` | all | | `BPF\_SKC\_TO\_TCP\_TIMEWAIT\_SOCK` | all | | `BPF\_SKC\_TO\_TCP\_REQUEST\_SOCK` | all | | `BPF\_SKC\_TO\_UDP6\_SOCK` | all | | `BPF\_GET\_TASK\_STACK` | all | | `BPF\_LOAD\_HDR\_OPT` | all | | `BPF\_STORE\_HDR\_OPT` | all | | `BPF\_RESERVE\_HDR\_OPT` | all | | `BPF\_INODE\_STORAGE\_GET` | all | | `BPF\_INODE\_STORAGE\_DELETE` | all | | `BPF\_D\_PATH` | all | | `BPF\_COPY\_FROM\_USER` | all | | `BPF\_SNPRINTF\_BTF` | all | | `BPF\_SEQ\_PRINTF\_BTF` | all | | `BPF\_SKB\_CGROUP\_CLASSID` | all | | `BPF\_REDIRECT\_NEIGH` | all | | `BPF\_PER\_CPU\_PTR` | all | | `BPF\_THIS\_CPU\_PTR` | all | | `BPF\_REDIRECT\_PEER` | all | | `BPF\_TASK\_STORAGE\_GET` | all | | `BPF\_TASK\_STORAGE\_DELETE` | all | | `BPF\_GET\_CURRENT\_TASK\_BTF` | all | | `BPF\_BPRM\_OPTS\_SET` | all | | `BPF\_KTIME\_GET\_COARSE\_NS` | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.02434401959180832,
-0.03536320477724075,
-0.09589911997318268,
-0.03580767661333084,
-0.0029694470576941967,
-0.024976877495646477,
0.09041132777929306,
0.019924797117710114,
-0.018265489488840103,
0.017014099285006523,
0.07096506655216217,
-0.05041263625025749,
0.014995502308011055,
-0.... | 0.127373 |
| all | | `BPF\_SKB\_CGROUP\_CLASSID` | all | | `BPF\_REDIRECT\_NEIGH` | all | | `BPF\_PER\_CPU\_PTR` | all | | `BPF\_THIS\_CPU\_PTR` | all | | `BPF\_REDIRECT\_PEER` | all | | `BPF\_TASK\_STORAGE\_GET` | all | | `BPF\_TASK\_STORAGE\_DELETE` | all | | `BPF\_GET\_CURRENT\_TASK\_BTF` | all | | `BPF\_BPRM\_OPTS\_SET` | all | | `BPF\_KTIME\_GET\_COARSE\_NS` | all | | `BPF\_IMA\_INODE\_HASH` | all | | `BPF\_SOCK\_FROM\_FILE` | all | | `BPF\_CHECK\_MTU` | all | | `BPF\_FOR\_EACH\_MAP\_ELEM` | all | | `BPF\_SNPRINTF` | all | ### `BPF map types` {#bpf-map-types} BPF map types are the supported eBPF map types. | Name | Architectures | | ---- |---------------| | `BPF\_MAP\_TYPE\_UNSPEC` | all | | `BPF\_MAP\_TYPE\_HASH` | all | | `BPF\_MAP\_TYPE\_ARRAY` | all | | `BPF\_MAP\_TYPE\_PROG\_ARRAY` | all | | `BPF\_MAP\_TYPE\_PERF\_EVENT\_ARRAY` | all | | `BPF\_MAP\_TYPE\_PERCPU\_HASH` | all | | `BPF\_MAP\_TYPE\_PERCPU\_ARRAY` | all | | `BPF\_MAP\_TYPE\_STACK\_TRACE` | all | | `BPF\_MAP\_TYPE\_CGROUP\_ARRAY` | all | | `BPF\_MAP\_TYPE\_LRU\_HASH` | all | | `BPF\_MAP\_TYPE\_LRU\_PERCPU\_HASH` | all | | `BPF\_MAP\_TYPE\_LPM\_TRIE` | all | | `BPF\_MAP\_TYPE\_ARRAY\_OF\_MAPS` | all | | `BPF\_MAP\_TYPE\_HASH\_OF\_MAPS` | all | | `BPF\_MAP\_TYPE\_DEVMAP` | all | | `BPF\_MAP\_TYPE\_SOCKMAP` | all | | `BPF\_MAP\_TYPE\_CPUMAP` | all | | `BPF\_MAP\_TYPE\_XSKMAP` | all | | `BPF\_MAP\_TYPE\_SOCKHASH` | all | | `BPF\_MAP\_TYPE\_CGROUP\_STORAGE` | all | | `BPF\_MAP\_TYPE\_REUSEPORT\_SOCKARRAY` | all | | `BPF\_MAP\_TYPE\_PERCPU\_CGROUP\_STORAGE` | all | | `BPF\_MAP\_TYPE\_QUEUE` | all | | `BPF\_MAP\_TYPE\_STACK` | all | | `BPF\_MAP\_TYPE\_SK\_STORAGE` | all | | `BPF\_MAP\_TYPE\_DEVMAP\_HASH` | all | | `BPF\_MAP\_TYPE\_STRUCT\_OPS` | all | | `BPF\_MAP\_TYPE\_RINGBUF` | all | | `BPF\_MAP\_TYPE\_INODE\_STORAGE` | all | | `BPF\_MAP\_TYPE\_TASK\_STORAGE` | all | ### `BPF program types` {#bpf-program-types} BPF program types are the supported eBPF program types. | Name | Architectures | | ---- |---------------| | `BPF\_PROG\_TYPE\_UNSPEC` | all | | `BPF\_PROG\_TYPE\_SOCKET\_FILTER` | all | | `BPF\_PROG\_TYPE\_KPROBE` | all | | `BPF\_PROG\_TYPE\_SCHED\_CLS` | all | | `BPF\_PROG\_TYPE\_SCHED\_ACT` | all | | `BPF\_PROG\_TYPE\_TRACEPOINT` | all | | `BPF\_PROG\_TYPE\_XDP` | all | | `BPF\_PROG\_TYPE\_PERF\_EVENT` | all | | `BPF\_PROG\_TYPE\_CGROUP\_SKB` | all | | `BPF\_PROG\_TYPE\_CGROUP\_SOCK` | all | | `BPF\_PROG\_TYPE\_LWT\_IN` | all | | `BPF\_PROG\_TYPE\_LWT\_OUT` | all | | `BPF\_PROG\_TYPE\_LWT\_XMIT` | all | | `BPF\_PROG\_TYPE\_SOCK\_OPS` | all | | `BPF\_PROG\_TYPE\_SK\_SKB` | all | | `BPF\_PROG\_TYPE\_CGROUP\_DEVICE` | all | | `BPF\_PROG\_TYPE\_SK\_MSG` | all | | `BPF\_PROG\_TYPE\_RAW\_TRACEPOINT` | all | | `BPF\_PROG\_TYPE\_CGROUP\_SOCK\_ADDR` | all | | `BPF\_PROG\_TYPE\_LWT\_SEG6LOCAL` | all | | `BPF\_PROG\_TYPE\_LIRC\_MODE2` | all | | `BPF\_PROG\_TYPE\_SK\_REUSEPORT` | all | | `BPF\_PROG\_TYPE\_FLOW\_DISSECTOR` | all | | `BPF\_PROG\_TYPE\_CGROUP\_SYSCTL` | all | | `BPF\_PROG\_TYPE\_RAW\_TRACEPOINT\_WRITABLE` | all | | `BPF\_PROG\_TYPE\_CGROUP\_SOCKOPT` | all | | `BPF\_PROG\_TYPE\_TRACING` | all | | `BPF\_PROG\_TYPE\_STRUCT\_OPS` | all | | `BPF\_PROG\_TYPE\_EXT` | all | | `BPF\_PROG\_TYPE\_LSM` | all | | `BPF\_PROG\_TYPE\_SK\_LOOKUP` | all | ### `Boolean constants` {#boolean-constants} Boolean constants are the supported boolean constants. | Name | Architectures | | ---- |---------------| | `true` | all | | `false` | all | ### `CompressionType` {#compressiontype} Compression algorithm. | Name | Architectures | | ---- |---------------| | `NONE` | all | | `GZIP` | all | | `ZIP` | all | | `ZSTD` | all | | `7Z` | all | | `BZIP2` | all | | `XZ` | all | ### `DNS Responses` {#dns-responses} DNS Responses are the supported response codes | Name | Architectures | | ---- |---------------| | `NOERROR` | all | | `FORMERR` | all | | `SERVFAIL` | all | | `NXDOMAIN` | all | | `NOTIMP` | all | | `REFUSED` | all | | `YXDOMAIN` | all | | `YXRRSET` | all | | `NXRRSET` | all | | `NOTAUTH` | all | | `NOTZONE` | all | | `BADVERS` | all | | `BADSIG` | all | | `BADKEY` | all | | `BADTIME` | all | | `BADMODE` | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.005450709257274866,
-0.004018779844045639,
-0.13089174032211304,
-0.03143433853983879,
0.025085093453526497,
-0.04036776348948479,
0.0944637879729271,
0.020564241334795952,
-0.04960968717932701,
0.03344561159610748,
0.06457483023405075,
-0.030193649232387543,
0.04471762105822563,
-0.0774... | 0.115842 |
| all | | `YXDOMAIN` | all | | `YXRRSET` | all | | `NXRRSET` | all | | `NOTAUTH` | all | | `NOTZONE` | all | | `BADVERS` | all | | `BADSIG` | all | | `BADKEY` | all | | `BADTIME` | all | | `BADMODE` | all | | `BADNAME` | all | | `BADALG` | all | ### `DNS qclasses` {#dns-qclasses} DNS qclasses are the supported DNS query classes. | Name | Architectures | | ---- |---------------| | `CLASS\_INET` | all | | `CLASS\_CSNET` | all | | `CLASS\_CHAOS` | all | | `CLASS\_HESIOD` | all | | `CLASS\_NONE` | all | | `CLASS\_ANY` | all | ### `DNS qtypes` {#dns-qtypes} DNS qtypes are the supported DNS query types. | Name | Architectures | | ---- |---------------| | `None` | all | | `A` | all | | `NS` | all | | `MD` | all | | `MF` | all | | `CNAME` | all | | `SOA` | all | | `MB` | all | | `MG` | all | | `MR` | all | | `NULL` | all | | `PTR` | all | | `HINFO` | all | | `MINFO` | all | | `MX` | all | | `TXT` | all | | `RP` | all | | `AFSDB` | all | | `X25` | all | | `ISDN` | all | | `RT` | all | | `NSAPPTR` | all | | `SIG` | all | | `KEY` | all | | `PX` | all | | `GPOS` | all | | `AAAA` | all | | `LOC` | all | | `NXT` | all | | `EID` | all | | `NIMLOC` | all | | `SRV` | all | | `ATMA` | all | | `NAPTR` | all | | `KX` | all | | `CERT` | all | | `DNAME` | all | | `OPT` | all | | `APL` | all | | `DS` | all | | `SSHFP` | all | | `RRSIG` | all | | `NSEC` | all | | `DNSKEY` | all | | `DHCID` | all | | `NSEC3` | all | | `NSEC3PARAM` | all | | `TLSA` | all | | `SMIMEA` | all | | `HIP` | all | | `NINFO` | all | | `RKEY` | all | | `TALINK` | all | | `CDS` | all | | `CDNSKEY` | all | | `OPENPGPKEY` | all | | `CSYNC` | all | | `ZONEMD` | all | | `SVCB` | all | | `HTTPS` | all | | `SPF` | all | | `UINFO` | all | | `UID` | all | | `GID` | all | | `UNSPEC` | all | | `NID` | all | | `L32` | all | | `L64` | all | | `LP` | all | | `EUI48` | all | | `EUI64` | all | | `URI` | all | | `CAA` | all | | `AVC` | all | | `TKEY` | all | | `TSIG` | all | | `IXFR` | all | | `AXFR` | all | | `MAILB` | all | | `MAILA` | all | | `ANY` | all | | `TA` | all | | `DLV` | all | | `Reserved` | all | ### `Error constants` {#error-constants} Error constants are the supported error constants. | Name | Architectures | | ---- |---------------| | `E2BIG` | all | | `EACCES` | all | | `EADDRINUSE` | all | | `EADDRNOTAVAIL` | all | | `EADV` | all | | `EAFNOSUPPORT` | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.09350581467151642,
-0.023325806483626366,
-0.03147399052977562,
-0.01709398254752159,
-0.11915869265794754,
-0.029599931091070175,
-0.022516604512929916,
-0.05424943566322327,
-0.028244417160749435,
-0.011622476391494274,
-0.020766496658325195,
-0.046007461845874786,
-0.001811779919080436... | 0.025693 |
| all | ### `Error constants` {#error-constants} Error constants are the supported error constants. | Name | Architectures | | ---- |---------------| | `E2BIG` | all | | `EACCES` | all | | `EADDRINUSE` | all | | `EADDRNOTAVAIL` | all | | `EADV` | all | | `EAFNOSUPPORT` | all | | `EAGAIN` | all | | `EALREADY` | all | | `EBADE` | all | | `EBADF` | all | | `EBADFD` | all | | `EBADMSG` | all | | `EBADR` | all | | `EBADRQC` | all | | `EBADSLT` | all | | `EBFONT` | all | | `EBUSY` | all | | `ECANCELED` | all | | `ECHILD` | all | | `ECHRNG` | all | | `ECOMM` | all | | `ECONNABORTED` | all | | `ECONNREFUSED` | all | | `ECONNRESET` | all | | `EDEADLK` | all | | `EDEADLOCK` | all | | `EDESTADDRREQ` | all | | `EDOM` | all | | `EDOTDOT` | all | | `EDQUOT` | all | | `EEXIST` | all | | `EFAULT` | all | | `EFBIG` | all | | `EHOSTDOWN` | all | | `EHOSTUNREACH` | all | | `EIDRM` | all | | `EILSEQ` | all | | `EINPROGRESS` | all | | `EINTR` | all | | `EINVAL` | all | | `EIO` | all | | `EISCONN` | all | | `EISDIR` | all | | `EISNAM` | all | | `EKEYEXPIRED` | all | | `EKEYREJECTED` | all | | `EKEYREVOKED` | all | | `EL2HLT` | all | | `EL2NSYNC` | all | | `EL3HLT` | all | | `EL3RST` | all | | `ELIBACC` | all | | `ELIBBAD` | all | | `ELIBEXEC` | all | | `ELIBMAX` | all | | `ELIBSCN` | all | | `ELNRNG` | all | | `ELOOP` | all | | `EMEDIUMTYPE` | all | | `EMFILE` | all | | `EMLINK` | all | | `EMSGSIZE` | all | | `EMULTIHOP` | all | | `ENAMETOOLONG` | all | | `ENAVAIL` | all | | `ENETDOWN` | all | | `ENETRESET` | all | | `ENETUNREACH` | all | | `ENFILE` | all | | `ENOANO` | all | | `ENOBUFS` | all | | `ENOCSI` | all | | `ENODATA` | all | | `ENODEV` | all | | `ENOENT` | all | | `ENOEXEC` | all | | `ENOKEY` | all | | `ENOLCK` | all | | `ENOLINK` | all | | `ENOMEDIUM` | all | | `ENOMEM` | all | | `ENOMSG` | all | | `ENONET` | all | | `ENOPKG` | all | | `ENOPROTOOPT` | all | | `ENOSPC` | all | | `ENOSR` | all | | `ENOSTR` | all | | `ENOSYS` | all | | `ENOTBLK` | all | | `ENOTCONN` | all | | `ENOTDIR` | all | | `ENOTEMPTY` | all | | `ENOTNAM` | all | | `ENOTRECOVERABLE` | all | | `ENOTSOCK` | all | | `ENOTSUP` | all | | `ENOTTY` | all | | `ENOTUNIQ` | all | | `ENXIO` | all | | `EOPNOTSUPP` | all | | `EOVERFLOW` | all | | `EOWNERDEAD` | all | | `EPERM` | all | | `EPFNOSUPPORT` | all | | `EPIPE` | all | | `EPROTO` | all | | `EPROTONOSUPPORT` | all | | `EPROTOTYPE` | all | | `ERANGE` | all | | `EREMCHG` | all | | `EREMOTE` | all | | `EREMOTEIO` | all | | `ERESTART` | all | | `ERFKILL` | all | | `EROFS` | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.001061403308995068,
0.026355063542723656,
-0.11069314181804657,
-0.01779896952211857,
-0.010642140172421932,
-0.04767938330769539,
-0.0050699952989816666,
0.07340525090694427,
-0.1094403937458992,
-0.021187465637922287,
0.05913873761892319,
-0.13099320232868195,
0.04692002758383751,
-0.... | 0.128441 |
all | | `EPROTO` | all | | `EPROTONOSUPPORT` | all | | `EPROTOTYPE` | all | | `ERANGE` | all | | `EREMCHG` | all | | `EREMOTE` | all | | `EREMOTEIO` | all | | `ERESTART` | all | | `ERFKILL` | all | | `EROFS` | all | | `ESHUTDOWN` | all | | `ESOCKTNOSUPPORT` | all | | `ESPIPE` | all | | `ESRCH` | all | | `ESRMNT` | all | | `ESTALE` | all | | `ESTRPIPE` | all | | `ETIME` | all | | `ETIMEDOUT` | all | | `ETOOMANYREFS` | all | | `ETXTBSY` | all | | `EUCLEAN` | all | | `EUNATCH` | all | | `EUSERS` | all | | `EWOULDBLOCK` | all | | `EXDEV` | all | | `EXFULL` | all | ### `File mode constants` {#file-mode-constants} File mode constants are the supported file permissions as well as constants for the set-user-ID, set-group-ID, and sticky bits. | Name | Architectures | | ---- |---------------| | `S\_ISUID` | all | | `S\_ISGID` | all | | `S\_ISVTX` | all | | `S\_IRWXU` | all | | `S\_IRUSR` | all | | `S\_IWUSR` | all | | `S\_IXUSR` | all | | `S\_IRWXG` | all | | `S\_IRGRP` | all | | `S\_IWGRP` | all | | `S\_IXGRP` | all | | `S\_IRWXO` | all | | `S\_IROTH` | all | | `S\_IWOTH` | all | | `S\_IXOTH` | all | ### `FileType` {#filetype} File types. | Name | Architectures | | ---- |---------------| | `EMPTY` | all | | `SHELL\_SCRIPT` | all | | `TEXT` | all | | `COMPRESSED` | all | | `ENCRYPTED` | all | | `BINARY` | all | | `LINUX\_EXECUTABLE` | all | | `WINDOWS\_EXECUTABLE` | all | | `MACOS\_EXECUTABLE` | all | | `FILE\_LESS` | all | ### `Inode mode constants` {#inode-mode-constants} Inode mode constants are the supported file type constants as well as the file mode constants. | Name | Architectures | | ---- |---------------| | `S\_IFMT` | all | | `S\_IFSOCK` | all | | `S\_IFLNK` | all | | `S\_IFREG` | all | | `S\_IFBLK` | all | | `S\_IFDIR` | all | | `S\_IFCHR` | all | | `S\_IFIFO` | all | | `S\_ISUID` | all | | `S\_ISGID` | all | | `S\_ISVTX` | all | | `S\_IRWXU` | all | | `S\_IRUSR` | all | | `S\_IWUSR` | all | | `S\_IXUSR` | all | | `S\_IRWXG` | all | | `S\_IRGRP` | all | | `S\_IWGRP` | all | | `S\_IXGRP` | all | | `S\_IRWXO` | all | | `S\_IROTH` | all | | `S\_IWOTH` | all | | `S\_IXOTH` | all | ### `Kernel Capability constants` {#kernel-capability-constants} Kernel Capability constants are the supported Linux Kernel Capability. | Name | Architectures | | ---- |---------------| | `CAP\_AUDIT\_CONTROL` | all | | `CAP\_AUDIT\_READ` | all | | `CAP\_AUDIT\_WRITE` | all | | `CAP\_BLOCK\_SUSPEND` | all | | `CAP\_BPF` | all | | `CAP\_CHECKPOINT\_RESTORE` | all | | `CAP\_CHOWN` | all | | `CAP\_DAC\_OVERRIDE` | all | | `CAP\_DAC\_READ\_SEARCH` | all | | `CAP\_FOWNER` | all | | `CAP\_FSETID` | all | | `CAP\_IPC\_LOCK` | all | | `CAP\_IPC\_OWNER` | all | | `CAP\_KILL` | all | | `CAP\_LEASE` | all | | `CAP\_LINUX\_IMMUTABLE` | all | | `CAP\_MAC\_ADMIN` | all | | `CAP\_MAC\_OVERRIDE` | all | | `CAP\_MKNOD` | all | | `CAP\_NET\_ADMIN` | all | | `CAP\_NET\_BIND\_SERVICE` | all | | `CAP\_NET\_BROADCAST` | all | | `CAP\_NET\_RAW` | all | | `CAP\_PERFMON` | all | | `CAP\_SETFCAP` | all | | `CAP\_SETGID` | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.03716031461954117,
0.035074632614851,
-0.01570410281419754,
-0.05335057154297829,
-0.011660673655569553,
-0.052170269191265106,
0.051337264478206635,
0.07871013134717941,
0.0007952137384563684,
0.037335094064474106,
0.08456464111804962,
-0.05605434253811836,
0.03231814131140709,
-0.08009... | 0.131077 |
| all | | `CAP\_MAC\_ADMIN` | all | | `CAP\_MAC\_OVERRIDE` | all | | `CAP\_MKNOD` | all | | `CAP\_NET\_ADMIN` | all | | `CAP\_NET\_BIND\_SERVICE` | all | | `CAP\_NET\_BROADCAST` | all | | `CAP\_NET\_RAW` | all | | `CAP\_PERFMON` | all | | `CAP\_SETFCAP` | all | | `CAP\_SETGID` | all | | `CAP\_SETPCAP` | all | | `CAP\_SETUID` | all | | `CAP\_SYSLOG` | all | | `CAP\_SYS\_ADMIN` | all | | `CAP\_SYS\_BOOT` | all | | `CAP\_SYS\_CHROOT` | all | | `CAP\_SYS\_MODULE` | all | | `CAP\_SYS\_NICE` | all | | `CAP\_SYS\_PACCT` | all | | `CAP\_SYS\_PTRACE` | all | | `CAP\_SYS\_RAWIO` | all | | `CAP\_SYS\_RESOURCE` | all | | `CAP\_SYS\_TIME` | all | | `CAP\_SYS\_TTY\_CONFIG` | all | | `CAP\_WAKE\_ALARM` | all | ### `L3 protocols` {#l3-protocols} L3 protocols are the supported Layer 3 protocols. | Name | Architectures | | ---- |---------------| | `ETH\_P\_LOOP` | all | | `ETH\_P\_PUP` | all | | `ETH\_P\_PUPAT` | all | | `ETH\_P\_TSN` | all | | `ETH\_P\_IP` | all | | `ETH\_P\_X25` | all | | `ETH\_P\_ARP` | all | | `ETH\_P\_BPQ` | all | | `ETH\_P\_IEEEPUP` | all | | `ETH\_P\_IEEEPUPAT` | all | | `ETH\_P\_BATMAN` | all | | `ETH\_P\_DEC` | all | | `ETH\_P\_DNADL` | all | | `ETH\_P\_DNARC` | all | | `ETH\_P\_DNART` | all | | `ETH\_P\_LAT` | all | | `ETH\_P\_DIAG` | all | | `ETH\_P\_CUST` | all | | `ETH\_P\_SCA` | all | | `ETH\_P\_TEB` | all | | `ETH\_P\_RARP` | all | | `ETH\_P\_ATALK` | all | | `ETH\_P\_AARP` | all | | `ETH\_P\_8021\_Q` | all | | `ETH\_P\_ERSPAN` | all | | `ETH\_P\_IPX` | all | | `ETH\_P\_IPV6` | all | | `ETH\_P\_PAUSE` | all | | `ETH\_P\_SLOW` | all | | `ETH\_P\_WCCP` | all | | `ETH\_P\_MPLSUC` | all | | `ETH\_P\_MPLSMC` | all | | `ETH\_P\_ATMMPOA` | all | | `ETH\_P\_PPPDISC` | all | | `ETH\_P\_PPPSES` | all | | `ETH\_P\_\_LINK\_CTL` | all | | `ETH\_P\_ATMFATE` | all | | `ETH\_P\_PAE` | all | | `ETH\_P\_AOE` | all | | `ETH\_P\_8021\_AD` | all | | `ETH\_P\_802\_EX1` | all | | `ETH\_P\_TIPC` | all | | `ETH\_P\_MACSEC` | all | | `ETH\_P\_8021\_AH` | all | | `ETH\_P\_MVRP` | all | | `ETH\_P\_1588` | all | | `ETH\_P\_NCSI` | all | | `ETH\_P\_PRP` | all | | `ETH\_P\_FCOE` | all | | `ETH\_P\_IBOE` | all | | `ETH\_P\_TDLS` | all | | `ETH\_P\_FIP` | all | | `ETH\_P\_80221` | all | | `ETH\_P\_HSR` | all | | `ETH\_P\_NSH` | all | | `ETH\_P\_LOOPBACK` | all | | `ETH\_P\_QINQ1` | all | | `ETH\_P\_QINQ2` | all | | `ETH\_P\_QINQ3` | all | | `ETH\_P\_EDSA` | all | | `ETH\_P\_IFE` | all | | `ETH\_P\_AFIUCV` | all | | `ETH\_P\_8023\_MIN` | all | | `ETH\_P\_IPV6\_HOP\_BY\_HOP` | all | | `ETH\_P\_8023` | all | | `ETH\_P\_AX25` | all | | `ETH\_P\_ALL` | all | | `ETH\_P\_8022` | all | | `ETH\_P\_SNAP` | all | | `ETH\_P\_DDCMP` | all | | `ETH\_P\_WANPPP` | all | | `ETH\_P\_PPPMP` | all | | `ETH\_P\_LOCALTALK` | all | | `ETH\_P\_CAN` | all | | `ETH\_P\_CANFD` | all | | `ETH\_P\_PPPTALK` | all | | `ETH\_P\_TR8022` | all | | `ETH\_P\_MOBITEX` | all | | `ETH\_P\_CONTROL` | all | | `ETH\_P\_IRDA` | all | | `ETH\_P\_ECONET` | all | | `ETH\_P\_HDLC` | all | | `ETH\_P\_ARCNET` | all | | `ETH\_P\_DSA` | all | | `ETH\_P\_TRAILER` | all | | `ETH\_P\_PHONET` | all | | `ETH\_P\_IEEE802154` | all | | `ETH\_P\_CAIF` | all | | `ETH\_P\_XDSA` | all | | `ETH\_P\_MAP` | all | ### `L4 | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.0597769059240818,
-0.0819581001996994,
-0.059249985963106155,
-0.04129205271601677,
0.04540783911943436,
-0.047449275851249695,
0.10947631299495697,
0.027210701256990433,
-0.06605815142393112,
0.03649355471134186,
0.09335318207740784,
-0.01356463972479105,
0.05870658904314041,
-0.0103217... | 0.109267 |
| all | | `ETH\_P\_HDLC` | all | | `ETH\_P\_ARCNET` | all | | `ETH\_P\_DSA` | all | | `ETH\_P\_TRAILER` | all | | `ETH\_P\_PHONET` | all | | `ETH\_P\_IEEE802154` | all | | `ETH\_P\_CAIF` | all | | `ETH\_P\_XDSA` | all | | `ETH\_P\_MAP` | all | ### `L4 protocols` {#l4-protocols} L4 protocols are the supported Layer 4 protocols. | Name | Architectures | | ---- |---------------| | `IP\_PROTO\_IP` | all | | `IP\_PROTO\_ICMP` | all | | `IP\_PROTO\_IGMP` | all | | `IP\_PROTO\_IPIP` | all | | `IP\_PROTO\_TCP` | all | | `IP\_PROTO\_EGP` | all | | `IP\_PROTO\_IGP` | all | | `IP\_PROTO\_PUP` | all | | `IP\_PROTO\_UDP` | all | | `IP\_PROTO\_IDP` | all | | `IP\_PROTO\_TP` | all | | `IP\_PROTO\_DCCP` | all | | `IP\_PROTO\_IPV6` | all | | `IP\_PROTO\_RSVP` | all | | `IP\_PROTO\_GRE` | all | | `IP\_PROTO\_ESP` | all | | `IP\_PROTO\_AH` | all | | `IP\_PROTO\_ICMPV6` | all | | `IP\_PROTO\_MTP` | all | | `IP\_PROTO\_BEETPH` | all | | `IP\_PROTO\_ENCAP` | all | | `IP\_PROTO\_PIM` | all | | `IP\_PROTO\_COMP` | all | | `IP\_PROTO\_SCTP` | all | | `IP\_PROTO\_UDPLITE` | all | | `IP\_PROTO\_MPLS` | all | | `IP\_PROTO\_RAW` | all | ### `LinkageType` {#linkagetype} Linkage types. | Name | Architectures | | ---- |---------------| | `NONE` | all | | `STATIC` | all | | `DYNAMIC` | all | ### `MMap flags` {#mmap-flags} MMap flags are the supported flags for the mmap syscall. | Name | Architectures | | ---- |---------------| | `MAP\_SHARED` | all | | `MAP\_PRIVATE` | all | | `MAP\_SHARED\_VALIDATE` | all | | `MAP\_ANON` | all | | `MAP\_ANONYMOUS` | all | | `MAP\_DENYWRITE` | all | | `MAP\_EXECUTABLE` | all | | `MAP\_FIXED` | all | | `MAP\_FIXED\_NOREPLACE` | all | | `MAP\_GROWSDOWN` | all | | `MAP\_HUGETLB` | all | | `MAP\_LOCKED` | all | | `MAP\_NONBLOCK` | all | | `MAP\_NORESERVE` | all | | `MAP\_POPULATE` | all | | `MAP\_STACK` | all | | `MAP\_SYNC` | all | | `MAP\_UNINITIALIZED` | all | | `MAP\_HUGE\_16KB` | all | | `MAP\_HUGE\_64KB` | all | | `MAP\_HUGE\_512KB` | all | | `MAP\_HUGE\_1MB` | all | | `MAP\_HUGE\_2MB` | all | | `MAP\_HUGE\_8MB` | all | | `MAP\_HUGE\_16MB` | all | | `MAP\_HUGE\_32MB` | all | | `MAP\_HUGE\_256MB` | all | | `MAP\_HUGE\_512MB` | all | | `MAP\_HUGE\_1GB` | all | | `MAP\_HUGE\_2GB` | all | | `MAP\_HUGE\_16GB` | all | | `MAP\_32BIT` | amd64 | ### `Network Address Family constants` {#network-address-family-constants} Network Address Family constants are the supported network address families. | Name | Architectures | | ---- |---------------| | `AF\_UNSPEC` | all | | `AF\_LOCAL` | all | | `AF\_UNIX` | all | | `AF\_FILE` | all | | `AF\_INET` | all | | `AF\_AX25` | all | | `AF\_IPX` | all | | `AF\_APPLETALK` | all | | `AF\_NETROM` | all | | `AF\_BRIDGE` | all | | `AF\_ATMPVC` | all | | `AF\_X25` | all | | `AF\_INET6` | all | | `AF\_ROSE` | all | | `AF\_DECnet` | all | | `AF\_NETBEUI` | all | | `AF\_SECURITY` | all | | `AF\_KEY` | all | | `AF\_NETLINK` | all | | `AF\_ROUTE` | all | | `AF\_PACKET` | all | | `AF\_ASH` | all | | `AF\_ECONET` | all | | `AF\_ATMSVC` | all | | `AF\_RDS` | all | | `AF\_SNA` | all | | `AF\_IRDA` | all | | `AF\_PPPOX` | all | | `AF\_WANPIPE` | all | | `AF\_LLC` | all | | `AF\_IB` | all | | `AF\_MPLS` | all | | `AF\_CAN` | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.01251976378262043,
-0.011367984116077423,
-0.023800231516361237,
-0.08701911568641663,
0.020492935553193092,
0.05839853733778,
-0.04548340663313866,
-0.007041555363684893,
-0.07372282445430756,
0.016848133876919746,
0.0784708708524704,
-0.0670875534415245,
-0.004529896192252636,
-0.00682... | 0.018288 |
all | | `AF\_ATMSVC` | all | | `AF\_RDS` | all | | `AF\_SNA` | all | | `AF\_IRDA` | all | | `AF\_PPPOX` | all | | `AF\_WANPIPE` | all | | `AF\_LLC` | all | | `AF\_IB` | all | | `AF\_MPLS` | all | | `AF\_CAN` | all | | `AF\_TIPC` | all | | `AF\_BLUETOOTH` | all | | `AF\_IUCV` | all | | `AF\_RXRPC` | all | | `AF\_ISDN` | all | | `AF\_PHONET` | all | | `AF\_IEEE802154` | all | | `AF\_CAIF` | all | | `AF\_ALG` | all | | `AF\_NFC` | all | | `AF\_VSOCK` | all | | `AF\_KCM` | all | | `AF\_QIPCRTR` | all | | `AF\_SMC` | all | | `AF\_XDP` | all | | `AF\_MAX` | all | ### `Network Protocol Types` {#network-protocol-types} Types of specific network protocols. | Name | Architectures | | ---- |---------------| | `ICMP\_ECHO\_REQUEST` | all | | `ICMP\_ECHO\_REPLY` | all | | `ICMP\_ROUTER\_SOLICITATION` | all | | `ICMP\_ROUTER\_ADVERTISEMENT` | all | | `ICMP\_NEIGHBOR\_SOLICITATION` | all | | `ICMP\_NEIGHBOR\_ADVERTISEMENT` | all | | `ICMP\_V6\_ECHO\_REQUEST` | all | | `ICMP\_V6\_ECHO\_REPLY` | all | | `ICMP\_V6\_ROUTER\_SOLICITATION` | all | | `ICMP\_V6\_ROUTER\_ADVERTISEMENT` | all | | `ICMP\_V6\_NEIGHBOR\_SOLICITATION` | all | | `ICMP\_V6\_NEIGHBOR\_ADVERTISEMENT` | all | ### `Network directions` {#network-directions} Network directions are the supported directions of network packets. | Name | Architectures | | ---- |---------------| | `INGRESS` | all | | `EGRESS` | all | ### `Open flags` {#open-flags} Open flags are the supported flags for the open syscall. | Name | Architectures | | ---- |---------------| | `O\_RDONLY` | all | | `O\_WRONLY` | all | | `O\_RDWR` | all | | `O\_APPEND` | all | | `O\_CREAT` | all | | `O\_EXCL` | all | | `O\_SYNC` | all | | `O\_TRUNC` | all | | `O\_ACCMODE` | all | | `O\_ASYNC` | all | | `O\_CLOEXEC` | all | | `O\_DIRECT` | all | | `O\_DIRECTORY` | all | | `O\_DSYNC` | all | | `O\_FSYNC` | all | | `O\_NDELAY` | all | | `O\_NOATIME` | all | | `O\_NOCTTY` | all | | `O\_NOFOLLOW` | all | | `O\_NONBLOCK` | all | | `O\_RSYNC` | all | ### `Pipe buffer flags` {#pipe-buffer-flags} Pipe buffer flags are the supported flags for a pipe buffer. | Name | Architectures | | ---- |---------------| | `PIPE\_BUF\_FLAG\_LRU` | all | | `PIPE\_BUF\_FLAG\_ATOMIC` | all | | `PIPE\_BUF\_FLAG\_GIFT` | all | | `PIPE\_BUF\_FLAG\_PACKET` | all | | `PIPE\_BUF\_FLAG\_CAN\_MERGE` | all | | `PIPE\_BUF\_FLAG\_WHOLE` | all | | `PIPE\_BUF\_FLAG\_LOSS` | all | ### `PrCtl Options` {#prctl-options} PrCtl Options are the supported options for the prctl event | Name | Architectures | | ---- |---------------| | `PR\_CAP\_AMBIENT` | all | | `PR\_CAPBSET\_READ` | all | | `PR\_CAPBSET\_DROP` | all | | `PR\_SET\_CHILD\_SUBREAPER` | all | | `PR\_GET\_CHILD\_SUBREAPER` | all | | `PR\_SET\_DUMPABLE` | all | | `PR\_GET\_DUMPABLE` | all | | `PR\_SET\_ENDIAN` | all | | `PR\_GET\_ENDIAN` | all | | `PR\_SET\_FP\_MODE` | all | | `PR\_GET\_FP\_MODE` | all | | `PR\_SET\_FPEMU` | all | | `PR\_GET\_FPEMU` | all | | `PR\_SET\_FPEXC` | all | | `PR\_GET\_FPEXC` | all | | `PR\_SET\_IO\_FLUSHER` | all | | `PR\_GET\_IO\_FLUSHER` | all | | `PR\_SET\_KEEPCAPS` | all | | `PR\_GET\_KEEPCAPS` | all | | `PR\_MCE\_KILL` | all | | `PR\_MCE\_KILL\_GET` | all | | `PR\_SET\_MM` | all | | `PR\_SET\_VMA` | all | | `PR\_MPX\_ENABLE\_MANAGEMENT` | all | | `PR\_MPX\_DISABLE\_MANAGEMENT` | all | | `PR\_SET\_NAME` | all | | `PR\_GET\_NAME` | all | | `PR\_SET\_NO\_NEW\_PRIVS` | all | | `PR\_GET\_NO\_NEW\_PRIVS` | all | | `PR\_PAC\_RESET\_KEYS` | all | | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.054263994097709656,
-0.02425079233944416,
-0.044206805527210236,
-0.07596184313297272,
-0.09272538870573044,
-0.023625466972589493,
0.09014404565095901,
0.01453786063939333,
-0.014768405817449093,
0.009022751823067665,
0.12834356725215912,
-0.03045310266315937,
0.053888462483882904,
-0.... | 0.127648 |
`PR\_MCE\_KILL\_GET` | all | | `PR\_SET\_MM` | all | | `PR\_SET\_VMA` | all | | `PR\_MPX\_ENABLE\_MANAGEMENT` | all | | `PR\_MPX\_DISABLE\_MANAGEMENT` | all | | `PR\_SET\_NAME` | all | | `PR\_GET\_NAME` | all | | `PR\_SET\_NO\_NEW\_PRIVS` | all | | `PR\_GET\_NO\_NEW\_PRIVS` | all | | `PR\_PAC\_RESET\_KEYS` | all | | `PR\_SET\_PDEATHSIG` | all | | `PR\_GET\_PDEATHSIG` | all | | `PR\_SET\_PTRACER` | all | | `PR\_SET\_SECCOMP` | all | | `PR\_GET\_SECCOMP` | all | | `PR\_SET\_SECUREBITS` | all | | `PR\_GET\_SECUREBITS` | all | | `PR\_GET\_SPECULATION\_CTRL` | all | | `PR\_SET\_SPECULATION\_CTRL` | all | | `PR\_SVE\_SET\_VL` | all | | `PR\_SVE\_GET\_VL` | all | | `PR\_SET\_SYSCALL\_USER\_DISPATCH` | all | | `PR\_SET\_TAGGED\_ADDR\_CTRL` | all | | `PR\_GET\_TAGGED\_ADDR\_CTRL` | all | | `PR\_TASK\_PERF\_EVENTS\_DISABLE` | all | | `PR\_TASK\_PERF\_EVENTS\_ENABLE` | all | | `PR\_SET\_THP\_DISABLE` | all | | `PR\_GET\_THP\_DISABLE` | all | | `PR\_GET\_TID\_ADDRESS` | all | | `PR\_SET\_TIMERSLACK` | all | | `PR\_GET\_TIMERSLACK` | all | | `PR\_SET\_TIMING` | all | | `PR\_GET\_TIMING` | all | | `PR\_SET\_TSC` | all | | `PR\_GET\_TSC` | all | | `PR\_SET\_UNALIGN` | all | | `PR\_GET\_UNALIGN` | all | | `PR\_GET\_AUXV` | all | | `PR\_SET\_MDWE` | all | | `PR\_GET\_MDWE` | all | | `PR\_RISCV\_SET\_ICACHE\_FLUSH\_CTX` | all | ### `Protection constants` {#protection-constants} Protection constants are the supported protections for the mmap syscall. | Name | Architectures | | ---- |---------------| | `PROT\_NONE` | all | | `PROT\_READ` | all | | `PROT\_WRITE` | all | | `PROT\_EXEC` | all | | `PROT\_GROWSDOWN` | all | | `PROT\_GROWSUP` | all | ### `Ptrace constants` {#ptrace-constants} Ptrace constants are the supported ptrace commands for the ptrace syscall. | Name | Architectures | | ---- |---------------| | `PTRACE\_TRACEME` | all | | `PTRACE\_PEEKTEXT` | all | | `PTRACE\_PEEKDATA` | all | | `PTRACE\_PEEKUSR` | all | | `PTRACE\_POKETEXT` | all | | `PTRACE\_POKEDATA` | all | | `PTRACE\_POKEUSR` | all | | `PTRACE\_CONT` | all | | `PTRACE\_KILL` | all | | `PTRACE\_SINGLESTEP` | all | | `PTRACE\_ATTACH` | all | | `PTRACE\_DETACH` | all | | `PTRACE\_SYSCALL` | all | | `PTRACE\_SETOPTIONS` | all | | `PTRACE\_GETEVENTMSG` | all | | `PTRACE\_GETSIGINFO` | all | | `PTRACE\_SETSIGINFO` | all | | `PTRACE\_GETREGSET` | all | | `PTRACE\_SETREGSET` | all | | `PTRACE\_SEIZE` | all | | `PTRACE\_INTERRUPT` | all | | `PTRACE\_LISTEN` | all | | `PTRACE\_PEEKSIGINFO` | all | | `PTRACE\_GETSIGMASK` | all | | `PTRACE\_SETSIGMASK` | all | | `PTRACE\_SECCOMP\_GET\_FILTER` | all | | `PTRACE\_SECCOMP\_GET\_METADATA` | all | | `PTRACE\_GET\_SYSCALL\_INFO` | all | | `PTRACE\_GETFPREGS` | amd64, arm | | `PTRACE\_SETFPREGS` | amd64, arm | | `PTRACE\_GETFPXREGS` | amd64 | | `PTRACE\_SETFPXREGS` | amd64 | | `PTRACE\_OLDSETOPTIONS` | amd64, arm | | `PTRACE\_GET\_THREAD\_AREA` | amd64, arm | | `PTRACE\_SET\_THREAD\_AREA` | amd64 | | `PTRACE\_ARCH\_PRCTL` | amd64 | | `PTRACE\_SYSEMU` | amd64, arm64 | | `PTRACE\_SYSEMU\_SINGLESTEP` | amd64, arm64 | | `PTRACE\_SINGLEBLOCK` | amd64 | | `PTRACE\_GETCRUNCHREGS` | arm | | `PTRACE\_GETFDPIC` | arm | | `PTRACE\_GETFDPIC\_EXEC` | arm | | `PTRACE\_GETFDPIC\_INTERP` | arm | | `PTRACE\_GETHBPREGS` | arm | | `PTRACE\_GETVFPREGS` | arm | | `PTRACE\_GETWMMXREGS` | arm | | `PTRACE\_SETCRUNCHREGS` | arm | | `PTRACE\_SETHBPREGS` | arm | | `PTRACE\_SETVFPREGS` | arm | | `PTRACE\_SETWMMXREGS` | arm | | `PTRACE\_SET\_SYSCALL` | arm | | `PTRACE\_PEEKMTETAGS` | arm64 | | `PTRACE\_POKEMTETAGS` | arm64 | ### `Resource limit types` {#resource-limit-types} Resource limit types are the supported resource types for setrlimit syscall. | Name | Architectures | | ---- |---------------| | `RLIMIT\_CPU` | all | | `RLIMIT\_FSIZE` | all | | `RLIMIT\_DATA` | all | | `RLIMIT\_STACK` | all | | `RLIMIT\_CORE` | all | | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.00419327337294817,
-0.024783195927739143,
-0.1302284300327301,
-0.017331745475530624,
-0.01352817565202713,
-0.025012832134962082,
0.12749333679676056,
0.05112349987030029,
-0.034682441502809525,
0.10165803879499435,
0.14703743159770966,
-0.027170125395059586,
0.10555584728717804,
-0.063... | 0.145868 |
### `Resource limit types` {#resource-limit-types} Resource limit types are the supported resource types for setrlimit syscall. | Name | Architectures | | ---- |---------------| | `RLIMIT\_CPU` | all | | `RLIMIT\_FSIZE` | all | | `RLIMIT\_DATA` | all | | `RLIMIT\_STACK` | all | | `RLIMIT\_CORE` | all | | `RLIMIT\_RSS` | all | | `RLIMIT\_NPROC` | all | | `RLIMIT\_NOFILE` | all | | `RLIMIT\_MEMLOCK` | all | | `RLIMIT\_AS` | all | | `RLIMIT\_LOCKS` | all | | `RLIMIT\_SIGPENDING` | all | | `RLIMIT\_MSGQUEUE` | all | | `RLIMIT\_NICE` | all | | `RLIMIT\_RTPRIO` | all | | `RLIMIT\_RTTIME` | all | ### `SSHAuthMethod` {#sshauthmethod} SSH authentication methods. | Name | Architectures | | ---- |---------------| | `password` | all | | `public\_key` | all | | `unknown` | all | ### `SetSockopt Levels` {#setsockopt-levels} SetSockopt Levels are the supported levels for the setsockopt event. | Name | Architectures | | ---- |---------------| | `IPPROTO\_IP` | all | | `SOL\_SOCKET` | all | | `IPPROTO\_TCP` | all | | `IPPROTO\_UDP` | all | | `IPPROTO\_IPV6` | all | | `IPPROTO\_ICMPV6` | all | ### `SetSockopt Options` {#setsockopt-options} SetSockopt Options are the supported options for the setsockopt event when the level is IPPROTO\_IP. | Name | Architectures | | ---- |---------------| | `IP\_TOS` | all | | `IP\_TTL` | all | | `IP\_HDRINCL` | all | | `IP\_OPTIONS` | all | | `IP\_ROUTER\_ALERT` | all | | `IP\_RECVOPTS` | all | | `IP\_RETOPTS` | all | | `IP\_PKTINFO` | all | | `IP\_PKTOPTIONS` | all | | `IP\_MTU\_DISCOVER` | all | | `IP\_RECVERR` | all | | `IP\_RECVTTL` | all | | `IP\_RECVTOS` | all | | `IP\_MTU` | all | | `IP\_FREEBIND` | all | | `IP\_IPSEC\_POLICY` | all | | `IP\_XFRM\_POLICY` | all | | `IP\_PASSSEC` | all | | `IP\_TRANSPARENT` | all | | `IP\_ORIGDSTADDR` | all | | `IP\_MINTTL` | all | | `IP\_NODEFRAG` | all | | `IP\_CHECKSUM` | all | | `IP\_BIND\_ADDRESS\_NO\_PORT` | all | | `IP\_RECVFRAGSIZE` | all | | `IP\_RECVERR\_RFC4884` | all | | `IP\_MULTICAST\_IF` | all | | `IP\_MULTICAST\_TTL` | all | | `IP\_MULTICAST\_LOOP` | all | | `IP\_ADD\_MEMBERSHIP` | all | | `IP\_DROP\_MEMBERSHIP` | all | | `IP\_UNBLOCK\_SOURCE` | all | | `IP\_BLOCK\_SOURCE` | all | | `IP\_ADD\_SOURCE\_MEMBERSHIP` | all | | `IP\_DROP\_SOURCE\_MEMBERSHIP` | all | | `IP\_MSFILTER` | all | | `MCAST\_JOIN\_GROUP` | all | | `MCAST\_BLOCK\_SOURCE` | all | | `MCAST\_UNBLOCK\_SOURCE` | all | | `MCAST\_LEAVE\_GROUP` | all | | `MCAST\_JOIN\_SOURCE\_GROUP` | all | | `MCAST\_LEAVE\_SOURCE\_GROUP` | all | | `MCAST\_MSFILTER` | all | | `IP\_MULTICAST\_ALL` | all | | `IP\_UNICAST\_IF` | all | | `SO\_DEBUG` | all | | `SO\_REUSEADDR` | all | | `SO\_TYPE` | all | | `SO\_ERROR` | all | | `SO\_DONTROUTE` | all | | `SO\_BROADCAST` | all | | `SO\_SNDBUF` | all | | `SO\_RCVBUF` | all | | `SO\_KEEPALIVE` | all | | `SO\_OOBINLINE` | all | | `SO\_NO\_CHECK` | all | | `SO\_PRIORITY` | all | | `SO\_LINGER` | all | | `SO\_BSDCOMPAT` | all | | `SO\_REUSEPORT` | all | | `SO\_PASSCRED` | all | | `SO\_PEERCRED` | all | | `SO\_RCVLOWAT` | all | | `SO\_SNDLOWAT` | all | | `SO\_RCVTIMEO\_OLD` | all | | `SO\_SNDTIMEO\_OLD` | all | | `SO\_SECURITY\_AUTHENTICATION` | all | | `SO\_SECURITY\_ENCRYPTION\_TRANSPORT` | all | | `SO\_SECURITY\_ENCRYPTION\_NETWORK` | all | | `SO\_BINDTODEVICE` | all | | `SO\_ATTACH\_FILTER` | all | | `SO\_DETACH\_FILTER` | all | | `SO\_PEERNAME` | all | | `SO\_TIMESTAMP\_OLD` | all | | `SO\_ACCEPTCONN` | all | | `SO\_PEERSEC` | all | | `SO\_SNDBUFFORCE` | all | | `SO\_RCVBUFFORCE` | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.025309031829237938,
-0.0341203510761261,
-0.10375484824180603,
0.003467890666797757,
-0.009156109765172005,
-0.07376319915056229,
0.019587399438023567,
0.06424940377473831,
-0.10460905730724335,
-0.03596501797437668,
-0.013731843791902065,
-0.04282570257782936,
-0.032911498099565506,
-0... | 0.154084 |
all | | `SO\_SECURITY\_ENCRYPTION\_NETWORK` | all | | `SO\_BINDTODEVICE` | all | | `SO\_ATTACH\_FILTER` | all | | `SO\_DETACH\_FILTER` | all | | `SO\_PEERNAME` | all | | `SO\_TIMESTAMP\_OLD` | all | | `SO\_ACCEPTCONN` | all | | `SO\_PEERSEC` | all | | `SO\_SNDBUFFORCE` | all | | `SO\_RCVBUFFORCE` | all | | `SO\_PASSSEC` | all | | `SO\_TIMESTAMPNS\_OLD` | all | | `SO\_MARK` | all | | `SO\_TIMESTAMPING\_OLD` | all | | `SO\_PROTOCOL` | all | | `SO\_DOMAIN` | all | | `SO\_RXQ\_OVFL` | all | | `SO\_WIFI\_STATUS` | all | | `SO\_PEEK\_OFF` | all | | `SO\_NOFCS` | all | | `SO\_LOCK\_FILTER` | all | | `SO\_SELECT\_ERR\_QUEUE` | all | | `SO\_BUSY\_POLL` | all | | `SO\_MAX\_PACING\_RATE` | all | | `SO\_BPF\_EXTENSIONS` | all | | `SO\_INCOMING\_CPU` | all | | `SO\_ATTACH\_BPF` | all | | `SO\_ATTACH\_REUSEPORT\_CBPF` | all | | `SO\_ATTACH\_REUSEPORT\_EBPF` | all | | `SO\_CNX\_ADVICE` | all | | `SCM\_TIMESTAMPING\_OPT\_STATS` | all | | `SO\_MEMINFO` | all | | `SO\_INCOMING\_NAPI\_ID` | all | | `SO\_COOKIE` | all | | `SCM\_TIMESTAMPING\_PKTINFO` | all | | `SO\_PEERGROUPS` | all | | `SO\_ZEROCOPY` | all | | `SO\_TXTIME` | all | | `SO\_BINDTOIFINDEX` | all | | `SO\_TIMESTAMP\_NEW` | all | | `SO\_TIMESTAMPNS\_NEW` | all | | `SO\_TIMESTAMPING\_NEW` | all | | `SO\_RCVTIMEO\_NEW` | all | | `SO\_SNDTIMEO\_NEW` | all | | `SO\_DETACH\_REUSEPORT\_BPF` | all | | `SO\_PREFER\_BUSY\_POLL` | all | | `SO\_BUSY\_POLL\_BUDGET` | all | | `SO\_NETNS\_COOKIE` | all | | `SO\_BUF\_LOCK` | all | | `SO\_RESERVE\_MEM` | all | | `SO\_TXREHASH` | all | | `SO\_RCVMARK` | all | | `SO\_PASSPIDFD` | all | | `SO\_PEERPIDFD` | all | | `SO\_DEVMEM\_LINEAR` | all | | `SO\_DEVMEM\_DMABUF` | all | | `SO\_DEVMEM\_DONTNEED` | all | | `SCM\_TS\_OPT\_ID` | all | | `SO\_RCVPRIORITY` | all | | `TCP\_NODELAY` | all | | `TCP\_MAXSEG` | all | | `TCP\_CORK` | all | | `TCP\_KEEPIDLE` | all | | `TCP\_KEEPINTVL` | all | | `TCP\_KEEPCNT` | all | | `TCP\_SYNCNT` | all | | `TCP\_LINGER2` | all | | `TCP\_DEFER\_ACCEPT` | all | | `TCP\_WINDOW\_CLAMP` | all | | `TCP\_INFO` | all | | `TCP\_QUICKACK` | all | | `TCP\_CONGESTION` | all | | `TCP\_MD5SIG` | all | | `TCP\_THIN\_LINEAR\_TIMEOUTS` | all | | `TCP\_THIN\_DUPACK` | all | | `TCP\_USER\_TIMEOUT` | all | | `TCP\_REPAIR` | all | | `TCP\_REPAIR\_QUEUE` | all | | `TCP\_QUEUE\_SEQ` | all | | `TCP\_REPAIR\_OPTIONS` | all | | `TCP\_FASTOPEN` | all | | `TCP\_TIMESTAMP` | all | | `TCP\_NOTSENT\_LOWAT` | all | | `TCP\_CC\_INFO` | all | | `TCP\_SAVE\_SYN` | all | | `TCP\_SAVED\_SYN` | all | | `TCP\_REPAIR\_WINDOW` | all | | `TCP\_FASTOPEN\_CONNECT` | all | | `TCP\_ULP` | all | | `TCP\_MD5SIG\_EXT` | all | | `TCP\_FASTOPEN\_KEY` | all | | `TCP\_FASTOPEN\_NO\_COOKIE` | all | | `TCP\_ZEROCOPY\_RECEIVE` | all | | `TCP\_INQ` | all | | `TCP\_TX\_DELAY` | all | | `IPV6\_ADDRFORM` | all | | `IPV6\_2292PKTINFO` | all | | `IPV6\_2292HOPOPTS` | all | | `IPV6\_2292DSTOPTS` | all | | `IPV6\_2292RTHDR` | all | | `IPV6\_2292PKTOPTIONS` | all | | `IPV6\_2292HOPLIMIT` | all | | `IPV6\_FLOWINFO` | all | | `IPV6\_UNICAST\_HOPS` | all | | `IPV6\_MULTICAST\_IF` | all | | `IPV6\_MULTICAST\_HOPS` | all | | `IPV6\_MULTICAST\_LOOP` | all | | `IPV6\_ADD\_MEMBERSHIP` | all | | `IPV6\_DROP\_MEMBERSHIP` | all | | `IPV6\_ROUTER\_ALERT` | all | | `IPV6\_MTU\_DISCOVER` | all | | `IPV6\_MTU` | all | | `IPV6\_RECVERR` | all | | `IPV6\_V6ONLY` | all | | `IPV6\_JOIN\_ANYCAST` | all | | `IPV6\_LEAVE\_ANYCAST` | all | | `IPV6\_MULTICAST\_ALL` | all | | `IPV6\_ROUTER\_ALERT\_ISOLATE` | all | | `IPV6\_RECVERR\_RFC4884` | all | | `IPV6\_FLOWLABEL\_MGR` | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.01012983825057745,
0.005521084181964397,
-0.06138480082154274,
-0.043158236891031265,
-0.01583915762603283,
0.01160728931427002,
0.12332179397344589,
-0.01697452738881111,
-0.039785631000995636,
0.01912308856844902,
0.09412278234958649,
-0.03697163984179497,
0.04173174127936363,
-0.02950... | 0.045192 |
all | | `IPV6\_MTU\_DISCOVER` | all | | `IPV6\_MTU` | all | | `IPV6\_RECVERR` | all | | `IPV6\_V6ONLY` | all | | `IPV6\_JOIN\_ANYCAST` | all | | `IPV6\_LEAVE\_ANYCAST` | all | | `IPV6\_MULTICAST\_ALL` | all | | `IPV6\_ROUTER\_ALERT\_ISOLATE` | all | | `IPV6\_RECVERR\_RFC4884` | all | | `IPV6\_FLOWLABEL\_MGR` | all | | `IPV6\_FLOWINFO\_SEND` | all | | `IPV6\_IPSEC\_POLICY` | all | | `IPV6\_XFRM\_POLICY` | all | | `IPV6\_HDRINCL` | all | | `IPV6\_RECVPKTINFO` | all | | `IPV6\_PKTINFO` | all | | `IPV6\_RECVHOPLIMIT` | all | | `IPV6\_HOPLIMIT` | all | | `IPV6\_RECVHOPOPTS` | all | | `IPV6\_HOPOPTS` | all | | `IPV6\_RTHDRDSTOPTS` | all | | `IPV6\_RECVRTHDR` | all | | `IPV6\_RTHDR` | all | | `IPV6\_RECVDSTOPTS` | all | | `IPV6\_DSTOPTS` | all | | `IPV6\_RECVPATHMTU` | all | | `IPV6\_PATHMTU` | all | | `IPV6\_DONTFRAG` | all | | `IPV6\_RECVTCLASS` | all | | `IPV6\_TCLASS` | all | | `IPV6\_AUTOFLOWLABEL` | all | | `IPV6\_ADDR\_PREFERENCES` | all | | `IPV6\_MINHOPCOUNT` | all | | `IPV6\_ORIGDSTADDR` | all | | `IPV6\_TRANSPARENT` | all | | `IPV6\_UNICAST\_IF` | all | | `IPV6\_RECVFRAGSIZE` | all | | `IPV6\_FREEBIND` | all | ### `Signal constants` {#signal-constants} Signal constants are the supported signals for the kill syscall. | Name | Architectures | | ---- |---------------| | `SIGHUP` | all | | `SIGINT` | all | | `SIGQUIT` | all | | `SIGILL` | all | | `SIGTRAP` | all | | `SIGABRT` | all | | `SIGIOT` | all | | `SIGBUS` | all | | `SIGFPE` | all | | `SIGKILL` | all | | `SIGUSR1` | all | | `SIGSEGV` | all | | `SIGUSR2` | all | | `SIGPIPE` | all | | `SIGALRM` | all | | `SIGTERM` | all | | `SIGSTKFLT` | all | | `SIGCHLD` | all | | `SIGCONT` | all | | `SIGSTOP` | all | | `SIGTSTP` | all | | `SIGTTIN` | all | | `SIGTTOU` | all | | `SIGURG` | all | | `SIGXCPU` | all | | `SIGXFSZ` | all | | `SIGVTALRM` | all | | `SIGPROF` | all | | `SIGWINCH` | all | | `SIGIO` | all | | `SIGPOLL` | all | | `SIGPWR` | all | | `SIGSYS` | all | ### `Socket types` {#socket-types} Socket types are the supported socket types. | Name | Architectures | | ---- |---------------| | `SOCK\_STREAM` | all | | `SOCK\_DGRAM` | all | | `SOCK\_RAW` | all | | `SOCK\_RDM` | all | | `SOCK\_SEQPACKET` | all | | `SOCK\_DCCP` | all | | `SOCK\_PACKET` | all | ### `SysCtl Actions` {#sysctl-actions} SysCtl Actions are the supported actions for the sysctl event. | Name | Architectures | | ---- |---------------| | `SYSCTL\_READ` | all | | `SYSCTL\_WRITE` | all | ### `Unlink flags` {#unlink-flags} Unlink flags are the supported flags for the unlink syscall. | Name | Architectures | | ---- |---------------| | `AT\_REMOVEDIR` | all | ### `UserSessionTypes` {#usersessiontypes} UserSessionTypes are the supported user session types. | Name | Architectures | | ---- |---------------| | `unknown` | all | | `k8s` | all | | `ssh` | all | ### `Virtual Memory flags` {#virtual-memory-flags} Virtual Memory flags define the protection of a virtual memory segment. | Name | Architectures | | ---- |---------------| | `VM\_NONE` | all | | `VM\_READ` | all | | `VM\_WRITE` | all | | `VM\_EXEC` | all | | `VM\_SHARED` | all | | `VM\_MAYREAD` | all | | `VM\_MAYWRITE` | all | | `VM\_MAYEXEC` | all | | `VM\_MAYSHARE` | all | | `VM\_GROWSDOWN` | all | | | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
-0.03102501854300499,
-0.038588572293519974,
-0.04252878203988075,
-0.06981641054153442,
0.045076288282871246,
-0.015055801719427109,
-0.05160536989569664,
-0.03376396745443344,
-0.034245673567056656,
-0.004640805535018444,
0.07673341035842896,
-0.006641600746661425,
-0.007498389575630426,
... | 0.098493 |
`VM\_NONE` | all | | `VM\_READ` | all | | `VM\_WRITE` | all | | `VM\_EXEC` | all | | `VM\_SHARED` | all | | `VM\_MAYREAD` | all | | `VM\_MAYWRITE` | all | | `VM\_MAYEXEC` | all | | `VM\_MAYSHARE` | all | | `VM\_GROWSDOWN` | all | | `VM\_UFFD\_MISSING` | all | | `VM\_PFNMAP` | all | | `VM\_UFFD\_WP` | all | | `VM\_LOCKED` | all | | `VM\_IO` | all | | `VM\_SEQ\_READ` | all | | `VM\_RAND\_READ` | all | | `VM\_DONTCOPY` | all | | `VM\_DONTEXPAND` | all | | `VM\_LOCKONFAULT` | all | | `VM\_ACCOUNT` | all | | `VM\_NORESERVE` | all | | `VM\_HUGETLB` | all | | `VM\_SYNC` | all | | `VM\_ARCH\_1` | all | | `VM\_WIPEONFORK` | all | | `VM\_DONTDUMP` | all | | `VM\_SOFTDIRTY` | all | | `VM\_MIXEDMAP` | all | | `VM\_HUGEPAGE` | all | | `VM\_NOHUGEPAGE` | all | | `VM\_MERGEABLE` | all | {{< partial name="whats-next/whats-next.html" >}} [1]: /security/threats/agent | https://github.com/DataDog/datadog-agent/blob/main//docs/cloud-workload-security/linux_expressions.md | main | datadog-agent | [
0.02371032163500786,
-0.004290933720767498,
-0.04312731325626373,
-0.01585463620722294,
0.036783892661333084,
-0.017843278124928474,
0.04982889071106911,
-0.010123180225491524,
-0.007530138827860355,
0.08063043653964996,
0.1461789309978485,
-0.0199953094124794,
0.016401086002588272,
-0.053... | 0.113311 |
# Datadog Agent  [](https://codecov.io/github/DataDog/datadog-agent?branch=main) [](https://godoc.org/github.com/DataDog/datadog-agent) ----- Welcome to the wonderful world of developing the Datadog Agent. Here we document how we do things, advanced debugging techniques, coding conventions & best practices, the internals of our testing infrastructure, and so much more. If you are intrigued, continue reading. If not, continue all the same :point\_down\_tone2: ## Getting started First, you'll want to set up the [development requirements](setup/required.md). ## Agent development guidelines To know more about the general design of the Agent and how to add code and features read our section on [Components](components/overview.md). ## Navigation Desktop readers can use keyboard shortcuts to navigate. | Keys | Action | | --- | --- | | * `,` (comma) * `p` | Navigate to the "previous" page | | * `.` (period) * `n` | Navigate to the "next" page | | * `/` * `s` | Display the search modal | | https://github.com/DataDog/datadog-agent/blob/main//docs/public/index.md | main | datadog-agent | [
-0.0860801562666893,
0.00004172464832663536,
-0.05072825774550438,
0.0017972530331462622,
0.038499992340803146,
-0.11218142509460449,
-0.05623374879360199,
-0.005929899401962757,
-0.06131230667233467,
0.019127195701003075,
0.033497635275125504,
0.002694896189495921,
0.0631357803940773,
-0.... | 0.124964 |
# Set up optional development features ----- ## Tab completion <<>> /// tip There is also limited tab completion support for the legacy `invoke` tasks. Here's an example: ``` echo "source <(dda inv --print-completion-script zsh)" >> ~/.zshrc ``` /// ## Pre-commit hooks The CI runs a number of required checks using [pre-commit](https://pre-commit.com) and running those locally can speed up the development process. 1. Install `pre-commit` by running the following command. ``` dda self pip install pre-commit ``` 1. Use `dda` to configure the pre-commit hooks. ``` dda inv setup.pre-commit ``` | https://github.com/DataDog/datadog-agent/blob/main//docs/public/setup/optional.md | main | datadog-agent | [
-0.027926025912165642,
-0.023464128375053406,
-0.003296897979453206,
-0.06379339098930359,
0.0030139361042529345,
-0.1152992844581604,
-0.07362162321805954,
0.008164254017174244,
-0.06254531443119049,
0.0801759660243988,
0.010756160132586956,
-0.09015944600105286,
-0.016846908256411552,
0.... | -0.012953 |
# Set up your local machine manually ----- These instructions are maintained on a best-effort basis. Prefer using the [developer environment](../tutorials/dev/env.md) instead. ## Prerequisites Be sure that you already set up the [development requirements](required.md). /// warning Building the Agent for Windows requires using the [build image](https://github.com/DataDog/datadog-agent-buildimages/tree/main/windows). Setting up a local Windows environment is not officially supported. /// ## Build tools CMake version 3.15 or later and a C++ compiler are required for building the Agent. ## Python The Agent embeds a full-fledged CPython interpreter so it requires the development files to be available in the dev env. The Agent can embed Python 3, you will need development files for the version you want to support. If you're on OSX/macOS, install <<>> with [Homebrew](https://brew.sh): ``` brew install python@<<>> ``` On Linux, depending on the distribution, you might need to explicitly install the development files, for example on Ubuntu: ``` sudo apt-get install python<<>>-dev ``` On Windows, install <<>> via the [official installer](https://www.python.org/downloads/) brings along all the development files needed: /// warning If you don't use one of the Python versions that are explicitly supported, you may have problems running the built Agent's Python checks, especially if using a virtualenv. At this time, only Python <<>> is confirmed to work as expected in the development environment. /// ### Python Dependencies To protect and isolate your system-wide python installation, a python virtual environment is \_highly\_ recommended (though optional). It will help keep a self-contained development environment and ensure a clean system Python. /// note Due to the [way some virtual environments handle executable paths](https://bugs.python.org/issue22213) (e.g. `python -m venv`), not all virtual environment options will be able to run the built Agent correctly. At this time, the only confirmed virtual environment creator that is known for sure to work is `virtualenv`. /// - Install the virtualenv module: ``` python3 -m pip install virtualenv ``` - Create the virtual environment: ``` virtualenv $GOPATH/src/github.com/DataDog/datadog-agent/venv ``` - [Activate the virtualenv](https://virtualenv.pypa.io/en/latest/user\_guide.html#activators) (OS-dependent). This must be done for every new terminal before you start. If using virtual environments when running the built Agent, you may need to override the built Agent's search path for Python check packages using the `PYTHONPATH` variable (your target path must have the [pre-requisite core integration packages installed](https://datadoghq.dev/integrations-core/setup/) though). ```sh PYTHONPATH="./venv/lib/python<<>>/site-packages:$PYTHONPATH" ./agent run ... ``` See also some notes in [./checks](https://github.com/DataDog/datadog-agent/tree/main/docs/dev/checks) about running custom python checks. ## Golang You must [install Golang](https://golang.org/doc/install) version `<<>>` or later. Make sure that `$GOPATH/bin` is in your `$PATH`, otherwise [tooling](required.md#tooling) cannot use any additional tool it might need. /// note Versions of Golang that aren't an exact match to the version specified in our build images (see e.g. [here](https://github.com/DataDog/datadog-agent-buildimages/blob/c025473ee467ee6d884d532e4c12c7d982ce8fe1/circleci/Dockerfile#L43)) may not be able to build the agent and/or the [rtloader](https://github.com/DataDog/datadog-agent/tree/main/rtloader) binary properly. /// ### Installing tools From the root of `datadog-agent`, run `dda inv install-tools` to install go tooling. This uses `go` to install the necessary dependencies. ## System or Embedded? When working on the Agent codebase you can choose among two different ways to build the binary, informally named \_System\_ and \_Embedded\_ builds. For most contribution scenarios you should rely on the System build (the default) and use the Embedded one only for specific use cases. Let's explore the differences. ### System build \_System\_ builds use your operating system's standard system libraries to satisfy the Agent's external dependencies. Since, for example, macOS 10.11 may provide a different version of Python than macOS 10.12, system builds on each of these platforms may produce different Agent binaries. If this doesn't matter to you—perhaps you just want to contribute a quick bugfix—do a System build; it's easier and faster than an | https://github.com/DataDog/datadog-agent/blob/main//docs/public/setup/manual.md | main | datadog-agent | [
0.01342781912535429,
0.03388736769556999,
-0.009767536073923111,
-0.012730245478451252,
-0.02048685774207115,
-0.021427612751722336,
-0.0781903862953186,
0.021900668740272522,
-0.06470376253128052,
-0.009485555812716484,
-0.00919110607355833,
-0.11039628088474274,
0.05442801117897034,
0.02... | -0.039809 |
Since, for example, macOS 10.11 may provide a different version of Python than macOS 10.12, system builds on each of these platforms may produce different Agent binaries. If this doesn't matter to you—perhaps you just want to contribute a quick bugfix—do a System build; it's easier and faster than an Embedded build. System build is the default for all build and test tasks, so you don't need to configure anything there. But to make sure you have system copies of all the Agent's dependencies, skip the \_Embedded build\_ section below and read on to see how to install them via your usual package manager (apt, yum, brew, etc). ### Embedded build \_Embedded\_ builds download specifically-versioned dependencies and compile them locally from sources. We run Embedded builds to create Datadog's official Agent releases (i.e. RPMs, debs, etc), and while you can run the same builds while developing locally, the process is as slow as it sounds. Hence, you should only use them when you care about reproducible builds. For example: \* you want to build an agent binary that can be used as-is to replace the binary of an existing agent installation \* some dependencies are not available on your system \* you're working or debugging at a very low level: let's say you're adding a function to the Python bindings, you want to make sure you're using the exact same versions of Python as the official Agent packages Embedded builds rely on [Omnibus](https://github.com/chef/omnibus) to download and build dependencies, so you need a recent `ruby` environment with `bundler` installed. See [How to build agent distribution packages](../how-to/build/distributions.md) for more details. ### Systemd The agent is able to collect systemd journal logs using a wrapper on the systemd utility library. On Ubuntu/Debian: ``` sudo apt-get install libsystemd-dev ``` On Redhat/CentOS: ``` sudo yum install systemd-devel ``` ## Doxygen We use [Doxygen](http://www.doxygen.nl) to generate the documentation for the `rtloader` part of the Agent. To generate it (using the `dda inv rtloader.generate-doc` command), you'll need to have Doxygen installed on your system and available in your `$PATH`. You can compile and install Doxygen from source with the instructions available [here](http://www.doxygen.nl/manual/install.html). Alternatively, you can use already-compiled Doxygen binaries from [here](http://www.doxygen.nl/download.html). To get the dependency graphs, you may also need to install the `dot` executable from [graphviz](http://www.graphviz.org/) and add it to your `$PATH`. ## Pre-commit hooks It is optional but recommended to install `pre-commit` to run a number of checks done by the CI locally. ### Installation To install it, run: ```sh python3 -m pip install pre-commit GOFLAGS=-buildvcs=false pre-commit install # buildvcs avoids errors when getting go dependencies ``` The `shellcheck` pre-commit hook requires having the `shellcheck` binary installed and in your `$PATH`. To install it, run: ```sh dda inv install-shellcheck --destination ``` (by default, the shellcheck binary is installed in `/usr/local/bin`). ### Skipping `pre-commit` If you want to skip `pre-commit` for a specific commit you can add `--no-verify` to the `git commit` command. ### Running `pre-commit` manually If you want to run one of the checks manually, you can run `pre-commit run `. You can run it on all files with the `--all-files` flag. ```sh pre-commit run flake8 --all-files # run flake8 on all files ``` See `pre-commit run --help` for further options. ## Setting up Visual Studio Code Dev Container /// tip Using the [developer environment](../tutorials/dev/env.md) approach is recommended. /// [Microsoft Visual Studio Code](https://code.visualstudio.com/download) with the [devcontainer plugin](https://code.visualstudio.com/docs/remote/containers) allow to use a container as remote development environment in vscode. It simplify and isolate the dependencies needed to develop in this repository. To configure the vscode editor to use a container as remote development environment you | https://github.com/DataDog/datadog-agent/blob/main//docs/public/setup/manual.md | main | datadog-agent | [
-0.02359849028289318,
0.0015989448875188828,
-0.005588230211287737,
-0.007797259837388992,
0.0206559170037508,
-0.09947548806667328,
-0.07526891678571701,
0.042931027710437775,
-0.04436007887125015,
-0.04495292529463768,
0.03760411962866783,
-0.040644120424985886,
0.058174021542072296,
0.0... | -0.002956 |
environment](../tutorials/dev/env.md) approach is recommended. /// [Microsoft Visual Studio Code](https://code.visualstudio.com/download) with the [devcontainer plugin](https://code.visualstudio.com/docs/remote/containers) allow to use a container as remote development environment in vscode. It simplify and isolate the dependencies needed to develop in this repository. To configure the vscode editor to use a container as remote development environment you need to: - Install the [devcontainer plugin](https://code.visualstudio.com/docs/remote/containers) and the [golang language plugin](https://code.visualstudio.com/docs/languages/go). - Run the following command `dda inv vscode.setup-devcontainer --image ""`. This command will create the devcontainer configuration file `./devcontainer/devcontainer.json`. - Start or restart your vscode editor. - A pop-up should show-up to propose to "reopen in container" your workspace. - The first start, it might propose you to install the golang plugin dependencies/tooling. | https://github.com/DataDog/datadog-agent/blob/main//docs/public/setup/manual.md | main | datadog-agent | [
0.034388743340969086,
-0.061162710189819336,
-0.018712442368268967,
-0.012290089391171932,
-0.014225641265511513,
0.016587762162089348,
-0.11394935846328735,
0.052067872136831284,
-0.001776176504790783,
0.011294199153780937,
-0.023884836584329605,
-0.06378325819969177,
-0.058039747178554535,... | 0.012985 |
# Set up development requirements ----- ## Tooling The `dda` [CLI](https://datadoghq.dev/datadog-agent-dev/) is required in all aspects of development and must be available on `PATH`. <<>> ## Docker [Docker](https://docs.docker.com/get-started/docker-overview/) is required for both running the developer environment and building images containing the Agent. /// tab | macOS 1. Install [Docker Desktop for Mac](https://docs.docker.com/desktop/setup/install/mac-install/). 1. Right-click the Docker taskbar item and update \*\*Preferences > File Sharing\*\* with any locations you need to open. /// /// tab | Windows 1. Install [Docker Desktop for Windows](https://docs.docker.com/desktop/setup/install/windows-install/). 1. Right-click the Docker taskbar item and update \*\*Settings > Shared Drives\*\* with any locations you need to open e.g. `C:\`. /// /// tab | Linux Install Docker Desktop for your distribution: //// tab | Ubuntu [Docker Desktop for Ubuntu](https://docs.docker.com/desktop/setup/install/linux/ubuntu/) //// //// tab | Debian [Docker Desktop for Debian](https://docs.docker.com/desktop/setup/install/linux/debian/) //// //// tab | Fedora [Docker Desktop for Fedora](https://docs.docker.com/desktop/setup/install/linux/fedora/) //// //// tab | Arch [Docker Desktop for Arch](https://docs.docker.com/desktop/setup/install/linux/archlinux/) //// //// tab | RHEL [Docker Desktop for RHEL](https://docs.docker.com/desktop/setup/install/linux/rhel/) //// /// ## SSH Accessing and contributing to the Datadog Agent repositories requires using [SSH](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/about-ssh). Your local SSH agent must be [configured](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) with a key that is [added](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) to your GitHub account. If these requirements are met, you can skip this section. ### Key generation Run the following command to generate a new SSH key, replacing `` with one of the email addresses associated with your GitHub account. This email will be used for every Git commit you make to the Datadog Agent repositories. ``` ssh-keygen -t ed25519 -C "" ``` It should then ask you for the path in which to save the key. It's recommended to name the key `dda` and save it in the same directory as the default location. ``` Enter file in which to save the key (/root/.ssh/id\_ed25519): /root/.ssh/dda ``` Finally, you will be asked to enter an optional [passphrase](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases). ### Key awareness Add the key from the previous step to your local SSH agent. ``` ssh-add /root/.ssh/dda ``` Running the following command should now display the key. ``` ssh-add -L ``` Follow GitHub's [guide](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) for adding the key to your GitHub account and [test](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/testing-your-ssh-connection) that it works. The path to the public key is the path to the key from the previous step with a `.pub` file extension e.g. `/root/.ssh/dda.pub`. ## Next steps Follow the developer environment [tutorial](../tutorials/dev/env.md) to get started. | https://github.com/DataDog/datadog-agent/blob/main//docs/public/setup/required.md | main | datadog-agent | [
0.0067917159758508205,
-0.008252669125795364,
0.04432517662644386,
-0.07781195640563965,
-0.036385878920555115,
-0.06582694500684738,
-0.04717913269996643,
0.01381387747824192,
-0.038710881024599075,
0.0204016026109457,
0.0034275406505912542,
-0.0868459939956665,
0.045251596719026566,
0.01... | -0.017198 |
# Creating go modules in the Agent project \*\*The Datadog Agent is not meant to be imported as a Go library.\*\* However, certain parts of it can be exposed as a library by making use of [nested Go modules](https://github.com/go-modules-by-example/index/blob/master/009\_submodules/README.md). This allows for exposing parts of the codebase without needing to extract the code to a different repository, and helps avoid `replace` directive clashes. /// warning At present the Go modules offer no public stability guarantees and are intended for internal consumption by Datadog only. /// ## Creating a new module 1. Determine the packages that you want to expose and their dependencies. /// info You might need to refactor the code to have an exportable package, because the `replace` directives that we use might be incompatible with your project. /// 1. Create a directory for the module: ```bash cd ~/my\_path\_to/datadog-agent && mkdir mymodule ``` 2. Initialize a new Go module: ```bash cd path/to/mymodule && go mod init && go mod tidy ``` This will create the `go.mod` and `go.sum` files in the module's root folder. \*\*Ensure the `go version` line matches the version in the main `go.mod` file.\*\* 1. Create a package file named `doc.go` in your new module based on this template: ```go /// doc.go // Unless explicitly stated otherwise all files in this repository are licensed // under the Apache License Version 2.0. // This product includes software developed at Datadog (https://www.datadoghq.com/). // Copyright 2025-present Datadog, Inc. package mymodule ``` 2. Update the `modules.yml` file at the root of the repository, adding a section for your new module. See [`modules.yml`](#the-modulesyml-file) for more details. Here are a couple of example configurations: /// details type: example open: False ```yaml my/module: condition: is\_linux used\_by\_otel: true ``` ```yaml my/module: independent: false lint\_targets: - ./pkg - ./cmd - ./comp targets: - ./pkg - ./cmd - ./comp ``` /// 3. Update dependent modules. For each module depending on your new module, add: - A `require` directive in its `go.mod` containing the new module's path with version `v0.0.0`: ``` // Other module's go.mod file require ( // ... github.com/DataDog/datadog-agent/path/to/module v0.0.0 // ... ) ``` /// note Make sure to also include any dependencies ! /// /// tip You can do this by running `go get github.com/DataDog/datadog-agent/path/to/mymodule` from the root folder of the other module. This will also add `require` directives for all required dependencies and compute the `go.sum` changes. /// - A [`replace` directive](https://go.dev/ref/mod#go-mod-file-replac) in the main `go.mod` file to replace the module with the local path: ``` // main go.mod file replace ( github.com/DataDog/datadog-agent/path/to/module => ./path/to/module ) ``` /// example See this example PR: [#17350](https://github.com/DataDog/datadog-agent/pull/17350/files) /// 4. Cleanup and tidy. Run the following commands to generate the update `go.work` and `go.sum` files: ```bash dda inv modules.go-work go mod tidy ``` ## Nested go module tagging and versioning A few invoke tasks are available that help with automatically updating module versions and tags: \* `dda inv release.tag-modules` > Creates tags for Go nested modules for a given Datadog Agent version. /// info For Agent version `7.X.Y` the module will have version `v0.X.Y`. /// \* `dda inv release.update-modules` > Updates the internal dependencies between the different Agent nested go modules. /// info The `release.update-modules` task is also called automatically by the invoke tasks used as part of the release process: \* `dda inv release.create-rc` \* `dda inv release.finish` The `release.tag-modules` task is also called by the `release.tag-version` invoke task, using the same commit as the main module, with a tag of the form `path/to/module/v0.X.Y`. /// ## The `modules.yml` file The `modules.yml` file gathers all go module configurations. Each module is listed even if this module has | https://github.com/DataDog/datadog-agent/blob/main//docs/public/how-to/go/modules.md | main | datadog-agent | [
-0.017563151195645332,
-0.002743896096944809,
-0.07231460511684418,
-0.03825173154473305,
-0.008283153176307678,
0.010148006491363049,
0.015061059966683388,
0.035852786153554916,
-0.04498840123414993,
-0.049530934542417526,
0.08362520486116409,
0.00396669702604413,
0.07347039133310318,
0.0... | -0.018394 |
inv release.finish` The `release.tag-modules` task is also called by the `release.tag-version` invoke task, using the same commit as the main module, with a tag of the form `path/to/module/v0.X.Y`. /// ## The `modules.yml` file The `modules.yml` file gathers all go module configurations. Each module is listed even if this module has default attributes or is ignored. For each module, you can specify: \* `default` - for modules with default attribute values \* `ignored` - for ignored modules. To create a special configuration, the attributes of the `GoModule` class can be overriden - see the definition [here](/tasks/libs/common/gomodules.py) for the list of attributes and their details. /// tip This file can be linted and checked by using `dda inv modules.validate [--fix-format]`. /// /// example ```yaml modules: .: independent: false lint\_targets: - ./pkg - ./cmd - ./comp test\_targets: - ./pkg - ./cmd - ./comp comp/api/api/def: used\_by\_otel: true comp/api/authtoken: default test/integration/serverless/src: ignored tools/retry\_file\_dump: should\_test\_condition: never independent: false should\_tag: false ``` /// | https://github.com/DataDog/datadog-agent/blob/main//docs/public/how-to/go/modules.md | main | datadog-agent | [
0.008375978097319603,
0.019126031547784805,
-0.06537184864282608,
-0.025205589830875397,
0.04219662770628929,
-0.0060137673281133175,
0.006567030213773251,
0.03857868164777756,
-0.07603944838047028,
-0.07156546413898468,
0.10329780727624893,
0.03857734054327011,
-0.026780907064676285,
0.09... | -0.008099 |
# Agent Configuration This doc describes how to define new configuration parameters for the Agent. 1. Define your config. 2. Add it to the config template (optional). 3. Use your config in your code. 4. Request a review from the Agent configuration team (team/agent-configuration) If you have any questions, head over to #agent-configuration and ask (datadog internal). ## 1. Define Your Config A config must be declared before it can be used. If you don't do this, the Agent will log warnings about missing config at runtime that look like: ``` WARN | config keyconfig key "config.subsystem.bananas" is unknown ``` There are multiple places a config can be defined: \* Above all else, \*\*prefer consistency\*\*. If there's existing similar config, put the new config item alongside that existing config. \* If you want your config to be defined by the user in `system-probe.yml` then your declaration belongs in [`system\_probe.go`]. \* Otherwise it lives in the default `datadog-agent.yaml` file and goes in [`config.go`]. [`config.go`]: https://github.com/DataDog/datadog-agent/blob/7a12f1ccad639e79a0c09f8eaa8c92cd08ce1ae1/pkg/config/setup/config.go [`system\_probe.go`]: https://github.com/DataDog/datadog-agent/blob/7a12f1ccad639e79a0c09f8eaa8c92cd08ce1ae1/pkg/config/setup/system\_probe.go ## 2. Add to Template By default newly declared configs are not added to the sample config file a user sees. If you want your config to appear in the sample config file, add it to the [config template]. [config template]: https://github.com/DataDog/datadog-agent/blob/7a12f1ccad639e79a0c09f8eaa8c92cd08ce1ae1/pkg/config/config\_template.yaml ## 3. Use Your Config You can access your configured value (or the declared default) using the config `model.Reader`. For example: ```go if cfg.GetBool("config.subsystem.bananas") { // Go bananas } ``` See the [package documentation] for available methods. [package documentation]: https://pkg.go.dev/github.com/DataDog/datadog-agent/pkg/config/model#Reader ## 4. Request a Review! Please add this label to your PRs: `team/agent-configuration` This will summon a config wizard who can review your changes and suggest any changes. | https://github.com/DataDog/datadog-agent/blob/main//docs/public/how-to/go/config.md | main | datadog-agent | [
0.007184459362179041,
-0.021839747205376625,
-0.08813302218914032,
0.034702084958553314,
-0.02097424678504467,
-0.027705175802111626,
0.01673518307507038,
0.058654990047216415,
-0.12018077075481415,
-0.026192782446742058,
0.06120800971984863,
-0.049417294561862946,
0.10760537534952164,
-0.... | 0.06548 |
# How to run unit tests ----- The `dda inv test` command runs Go tests and is a thin wrapper around [gotestsum](https://github.com/gotestyourself/gotestsum). ## Test selection The Go module to test may be selected with the `-m`/`--module` flag using a relative path, defaulting to `.`. The `-t`/`--targets` flag is used to select the targets to test using a comma-separated list of relative paths within the given module. For example, the following command runs tests for the `pkg/collector/check` and `pkg/aggregator` root packages. ``` dda inv test --targets=pkg/collector/check,pkg/aggregator ``` /// note If no module nor targets are set then the tests for all modules and targets are executed, which may be time-consuming. /// ## Race detection The `-r`/`--race` flag enables Go's built-in [data race detector](https://go.dev/doc/articles/race\_detector). | https://github.com/DataDog/datadog-agent/blob/main//docs/public/how-to/test/unit.md | main | datadog-agent | [
-0.03024960681796074,
-0.01268136128783226,
-0.08827246725559235,
-0.026255406439304352,
0.07558118551969528,
-0.09109803289175034,
-0.032722409814596176,
0.010254877619445324,
-0.0452798493206501,
-0.045406099408864975,
0.09665931016206741,
-0.03703521564602852,
-0.05174217373132706,
0.04... | 0.064894 |
# Running E2E tests End-to-End (E2E) tests validate complete user workflows in production-like environments with real infrastructure and external services. The Datadog Agent uses the [test-infra-definitions](https://github.com/DataDog/datadog-agent/test/e2e-framework) framework to provision and manage test environments. Tests are stored in the [test/new-e2e](../../../../test/new-e2e/) folder. ## Prerequisites /// admonition | Datadog Employees Only type: warning E2E testing requires access to Datadog's internal cloud infrastructure and is currently limited to Datadog employees. This limitation is temporary and may be expanded in the future. /// ### Software Requirements Before running E2E tests, ensure you have the following installed: - \*\*Go 1.22 or later\*\* - \*\*Python 3.9+\*\* - \*\*dda tooling\*\* - Install by following the [development requirements](../../setup/required.md) ### Cloud Provider Setup #### AWS Configuration E2E tests require access to the `agent-sandbox` AWS account: 1. \*\*Role Access\*\*: Ensure you have the `account-admin` role on the `agent-sandbox` account 2. \*\*AWS Keypair\*\*: Set up an existing AWS keypair for your account 3. \*\*Authentication\*\*: Validate your connection with login using aws-vault: ```bash aws-vault login sso-agent-sandbox-account-admin ``` #### GCP Configuration (for GKE tests) If you plan to run tests on Google Kubernetes Engine: 1. \*\*Install GKE Plugin\*\*: Install the GKE authentication plugin 2. \*\*PATH Configuration\*\*: Add the plugin to your system PATH 3. \*\*Authentication\*\*: Validate your connection with GCP authentication: ```bash gcloud auth application-default login ``` ### Environment Configuration Set up the required environment variables: 1. \*\*Pulumi Configuration\*\*: Set `PULUMI\_CONFIG\_PASSPHRASE` in your terminal rc file (`.bashrc`, `.zshrc`, etc.) ```bash export PULUMI\_CONFIG\_PASSPHRASE="your-random-password" ``` /// tip Generate a secure random password using 1Password or your preferred password manager. You can use `security` on macOS to safely get this password. /// ## Setting Up the Development Environment E2E tests should be run within a [developer environment](../../tutorials/dev/env.md) to ensure consistency and proper isolation. ### Start a Developer Environment 1. \*\*Clone the repository\*\* (if using local checkout): ```bash git clone https://github.com/DataDog/datadog-agent.git cd datadog-agent ``` 2. \*\*Start the environment\*\* The following example is for an amd64 environment: ```bash dda env dev start --id devenv-amd --arch amd64 ``` Or use a remote clone for better isolation: ```bash dda env dev start --clone ``` 3. \*\*Enter the environment shell\*\*: ```bash dda env dev shell --id devenv-amd ``` For detailed information about developer environments, see the [Using developer environments](../../tutorials/dev/env.md) tutorial. ## Running E2E Tests ### Basic Test Execution E2E tests are located in the `test/new-e2e/` directory. To run a basic test use the invoke task `new-e2e-tests.run`, specifying a target folder relative to `test/new-e2e/`: ```bash # Run a simple VM test dda inv new-e2e-tests.run --targets=./examples --run=^TestVMSuite$ ``` Replace ./examples with your subfolder. This also supports the golang testing flag --run and --skip to target specific tests using go test syntax. See go help testflag for details. ```bash inv new-e2e-tests.run --targets=./examples --run=TestMyLocalKindSuite/TestClusterAgentInstalled ``` You can also run it with go test, from test/new-e2e ```bash cd test/new-e2e && go test ./examples -timeout 0 -run=^TestVMSuite$ ``` While developing a test you might want to keep the remote instance alive to iterate faster. You can skip the resources deletion using dev mode with the environment variable `E2E\_DEV\_MODE`. You can force this in the terminal ```bash E2E\_DEV\_MODE=true inv -e new-e2e-tests.run --targets ./examples --run=^TestVMSuite$ ``` or for instance add it in the `go.testEnvVars` if you are using a VSCode-based IDE ``` "go.testEnvVars": { "E2E\_DEV\_MODE": "true", }, ``` ### Test with Local Agent Packages /// admonition | Limitations type: warning Local packaging is curently limited to DEB packages, only for Linux and Macos computers. This method relies on updating an existing agent package with the local Go binaries. As a consequence, this is incompatible with tests related to the agent packaging or the python integration. /// From a developer environment | https://github.com/DataDog/datadog-agent/blob/main//docs/public/how-to/test/e2e.md | main | datadog-agent | [
-0.034417685121297836,
-0.03300763666629791,
0.013514471240341663,
-0.015193256549537182,
0.0027610782999545336,
-0.12489002197980881,
-0.07255512475967407,
0.050417859107255936,
-0.05078592151403427,
-0.011430551297962666,
0.02905595302581787,
-0.07801811397075653,
0.03874918445944786,
0.... | 0.009692 |
Local packaging is curently limited to DEB packages, only for Linux and Macos computers. This method relies on updating an existing agent package with the local Go binaries. As a consequence, this is incompatible with tests related to the agent packaging or the python integration. /// From a developer environment (see [Using developer environments](../../tutorials/dev/env.md)), you can create the agent package with your local code using: ```bash dda inv omnibus.build-repackaged-agent ``` You can then execute your E2E tests with the associated command: ```bash # Run tests with a specific agent version dda inv new-e2e-tests.run --targets ./examples --run TestVMSuiteEx5 --local-package $(pwd)/omnibus ``` Make sure to replace `examples` with the package you want to test and to target the test you want to run with `--run`. ### Test with Local Agent Image /// admonition | Limitations type: warning This method relies on updating an existing Agent image with the local Go binaries. It only works for Docker images and must be considered as a solution for testing only. /// Build the Agent binary and the Docker image, using this command: ```bash dda inv [--core-opts] agent.hacky-dev-image-build [--base-image=STRING --push --signed-pull --target-image=STRING] ``` The command uses `dda inv agent.build` to generate the Go binaries. The generated image embeds this binary, a debugger and auto-completion for the agent commands. By default, the image is names `agent` unless you override it with the `--target-image` option. Then push the image to a registry: ```bash # Login to ECR aws-vault exec sso-agent-sandbox-account-admin -- \ aws ecr get-login-password --region us-east-1 | \ docker login --username AWS --password-stdin 376334461865.dkr.ecr.us-east-1.amazonaws.com # Push the image docker push 376334461865.dkr.ecr.us-east-1.amazonaws.com/agent-e2e-tests:$USER ``` And finally, execute your E2E tests with the associated command: ```bash # Run Ubuntu tests inv -e new-e2e-tests.run --targets ./tests/containers \ --run TestDockerSuite/TestDSDWithUDP \ --agent-image 376334461865.dkr.ecr.us-east-1.amazonaws.com/agent-e2e-tests:$USER ``` ## Test Framework Usage ### Environment Provisioning E2E tests use Pulumi-based provisioning to create real infrastructure: ```go package examples import ( "testing" "github.com/DataDog/datadog-agent/test/e2e-framework/testing/e2e" "github.com/DataDog/datadog-agent/test/e2e-framework/testing/environments" awshost "github.com/DataDog/datadog-agent/test/e2e-framework/testing/provisioners/aws/host" ) type vmSuite struct { e2e.BaseSuite[environments.Host] } func TestVMSuite(t \*testing.T) { suiteParams := []e2e.SuiteOption{ e2e.WithProvisioner(awshost.ProvisionerNoAgentNoFakeIntake()), } e2e.Run(t, &vmSuite{}, suiteParams...) } ``` ### Available Provisioners The framework provides several provisioners for different scenarios: - \*\*AWS Host\*\*: `awshost.Provisioner\*()` - Provision EC2 instances - \*\*Kubernetes\*\*: `eks.Provisioner\*()` - Provision EKS clusters - \*\*Docker\*\*: Container-based provisioning - \*\*Multi-platform\*\*: Cross-platform test scenarios ### Test Validation E2E tests should validate complete workflows: ```go func (v \*vmSuite) TestAgentInstallation() { vm := v.Env().RemoteHost // Install agent \_, err := vm.Execute("sudo apt-get install datadog-agent") v.Require().NoError(err) // Verify agent is running out, err := vm.Execute("sudo systemctl status datadog-agent") v.Require().NoError(err) v.Require().Contains(out, "active (running)") // Validate metric submission v.Eventually(func() bool { return v.Env().FakeIntake.GetMetricCount() > 0 }, 30\*time.Second, 1\*time.Second) } ``` ## Test Categories and Scenarios ### Installation and Deployment Tests - Fresh installation on clean systems - Package manager installations (APT, YUM, MSI) - Container deployment validation - Kubernetes operator deployment ### Upgrade and Migration Tests - Agent version upgrades - Configuration migration - Rollback scenarios - Zero-downtime upgrades ### Platform Integration Tests - Cloud provider integrations (AWS, Azure, GCP) - Container runtime compatibility (Docker, containerd, CRI-O) - Kubernetes version compatibility - Operating system support validation ### Performance and Scale Tests - High-throughput metric collection - Resource consumption validation - Memory leak detection - Long-running stability tests ### Security and Compliance Tests - Security configuration validation - Compliance framework testing - Permission and access control verification - Secure communication validation ## Best Practices ### Test Design - \*\*Single Responsibility\*\*: Each test should validate one specific workflow - \*\*Clear Assertions\*\*: Use descriptive assertion messages - \*\*Proper Timeouts\*\*: Set appropriate timeouts for operations - \*\*Resource Management\*\*: Always clean up created resources ### Performance Considerations - \*\*Parallel Execution\*\*: | https://github.com/DataDog/datadog-agent/blob/main//docs/public/how-to/test/e2e.md | main | datadog-agent | [
0.00916252564638853,
0.00391762051731348,
0.00949804950505495,
-0.05634327605366707,
0.04414036497473717,
-0.10639001429080963,
-0.05483836308121681,
0.034718576818704605,
-0.09733735024929047,
0.022801218554377556,
0.07518107444047928,
-0.10423833876848221,
-0.013724973425269127,
0.039087... | -0.014259 |
verification - Secure communication validation ## Best Practices ### Test Design - \*\*Single Responsibility\*\*: Each test should validate one specific workflow - \*\*Clear Assertions\*\*: Use descriptive assertion messages - \*\*Proper Timeouts\*\*: Set appropriate timeouts for operations - \*\*Resource Management\*\*: Always clean up created resources ### Performance Considerations - \*\*Parallel Execution\*\*: Design tests to run in parallel when possible - \*\*Resource Efficiency\*\*: Reuse infrastructure when appropriate - \*\*Test Duration\*\*: Keep individual tests under 10 minutes when possible ### Maintenance - \*\*Regular Updates\*\*: Keep test environments updated with latest agent versions - \*\*Documentation\*\*: Document test scenarios and expected outcomes - \*\*Monitoring\*\*: Monitor test execution times and failure rates - \*\*Version Compatibility\*\*: Test against supported platform versions ## See Also - [Test Categories](../../guidelines/testing/test-categories.md) - Understanding different test types - [Unit Testing](unit.md) - Running unit tests - [Using Developer Environments](../../tutorials/dev/env.md) - Setting up development environments - [test-infra-definitions](https://github.com/DataDog/datadog-agent/test/e2e-framework) - Infrastructure provisioning framework | https://github.com/DataDog/datadog-agent/blob/main//docs/public/how-to/test/e2e.md | main | datadog-agent | [
-0.0548725351691246,
0.04566729813814163,
-0.059501439332962036,
0.020280953496694565,
0.012038213200867176,
-0.07629445195198059,
-0.051626674830913544,
-0.02913891151547432,
-0.04739532992243767,
-0.0010033327853307128,
-0.008581211790442467,
-0.05450727045536041,
0.03369853273034096,
0.... | 0.124495 |
# How to perform static analysis ----- CI enforces static analysis checks for code, configuration, documentation, and more. ## Go Go code can be analyzed with the `dda inv linter.go` command. This uses [golangci-lint](https://github.com/golangci/golangci-lint) which is an aggregator for several linters. The configuration is defined in the [.golangci.yml](https://github.com/DataDog/datadog-agent/blob/main/.golangci.yml) file. The `linters` key defines the list of linters we enable. /// tip You can ignore linter issues on specific lines of code with the [nolint directive](https://golangci-lint.run/docs/linters/false-positives/#nolint-directive). /// ## Python The `dda inv linter.python` command performs analysis on Python code. This uses [Ruff](https://github.com/astral-sh/ruff) for linting and formatting, and also ([for now](https://github.com/astral-sh/ruff/issues/872)) [Vulture](https://github.com/jendrikseipp/vulture) to find unused code. /// tip Ruff supports several ways to [suppress errors](https://docs.astral.sh/ruff/linter/#error-suppression) in your code. /// ## Other All analysis tasks are prefixed by `linter.` and may be shown by running `dda inv --list`. | https://github.com/DataDog/datadog-agent/blob/main//docs/public/how-to/test/static-analysis.md | main | datadog-agent | [
-0.05460427701473236,
0.0203722957521677,
-0.07983460277318954,
0.007071488071233034,
0.012090509757399559,
-0.0668787881731987,
-0.00048422737745568156,
0.032582640647888184,
-0.06813904643058777,
-0.04894668608903885,
0.06396625190973282,
-0.0004499917267821729,
0.008203842677175999,
0.0... | 0.1049 |
# Windows Troubleshooting Prior to 7.23, Agent binaries (Datadog Agent, Process Agent, Trace Agent, etc.) on Windows contain symbol information. Starting from 7.23, Agent binaries on Windows have debugging information stripped. The original files are packed in a file called debug package. ## Prerequisite To debug Agent process, Golang Runtime, Git and Golang Delve must be installed. Download the matching debug package. If the MSI file is `datadog-agent-7.23.0-x86\_64.msi`, the debug package should be `datadog-agent-7.23.0-x86\_64.debug.zip`. ## Live Debugging Delve debugger on Windows cannot attach to the service process. The corresponding Windows service must be stopped and disabled. For pre 7.23, start the Agent executable in the interactive session. For 7.23 or later version, find the file in the debug package. For `agent.exe`, the file in debug package is under `\src\datadog-agent\src\github.com\DataDog\datadog-agent\bin\agent\agent.exe.debug`. You might find the same file under `\omnibus-ruby\src\cf-root\bin`. Use either one is fine. Copy the file to replace the executable file you want to debug, start the agent executable in the interactive session. Use `dlv attach PID` to attach to the running process and start debugging. ## Non-live Debugging Use `dlv core DUMPFILE EXEFILE` to debug against a dump file. For 7.23 or newer, the EXEFILE is the .debug file in the debug package. | https://github.com/DataDog/datadog-agent/blob/main//docs/public/how-to/debug-agents/windows.md | main | datadog-agent | [
0.0023614747915416956,
0.012888307683169842,
-0.04473119601607323,
-0.011567175388336182,
0.008404124528169632,
-0.011581996455788612,
0.001958225155249238,
-0.021668488159775734,
-0.033620890229940414,
0.025393148884177208,
0.0832393616437912,
-0.05427277460694313,
-0.011229585856199265,
... | 0.071519 |
# Linux Troubleshooting ## Generating and using core dumps on Linux ### Generating core dumps on Agent crashes There are two ways to generate core dumps when the Agent crashes on Linux. Starting on version 7.27 the Datadog Agent includes the `go\_core\_dump` option that, when enabled, makes any Agent process generate a core dump when it crashes. This is the simplest option and it can generate core dumps so long as the crash happens after the internal packages (configuration, logging...) finish initializing. /// note | Core dump drop locations Where core dumps end up depends on the pattern set in `/proc/sys/kernel/core\_pattern`: \* If you are in an OS that uses `systemd`, the core dump will be sent to `coredumpctl` . \* Otherwise, you may need to set the `/proc/sys/kernel/core\_pattern` to a folder that can be written to by the user that will run the Agent. /// example To use the `/var/crash/` folder, set the pattern to `/var/crash/core-%e-%p-%t`. /// /// For previous versions of the Agent and for crashes that happen before initialization (e.g. during Go runtime initialization or during configuration initialization), you need to set the crashing setting manually. To do this follow these steps: 1. Set the user limit for core dump maximum size limit to a high-enough value. For example, you can set it to be arbitrarily big by running `ulimit -c unlimited`. 2. Run any of the Datadog Agents debug packages manually, setting the `GOTRACEBACK` environment variable to `crash`. This will send a `SIGABRT` signal to the Agent process and trigger the creation of a core dump. ### Inspecting a core dump Use `dlv core DUMPFILE EXEFILE` to debug against a dump file. You need to use the debug binaries in the debug package to as the `EXEFILE`. See the [delve section](index.md#delve) for more information on using delve. | https://github.com/DataDog/datadog-agent/blob/main//docs/public/how-to/debug-agents/linux.md | main | datadog-agent | [
0.018852651119232178,
-0.04881676286458969,
-0.04539336636662483,
-0.023696279153227806,
0.06166301667690277,
-0.02440525032579899,
-0.060225632041692734,
0.09090261906385422,
-0.06344816088676453,
0.04977274313569069,
-0.01199579518288374,
-0.05477873608469963,
-0.00637661200016737,
-0.01... | 0.092385 |
# Tools to troubleshoot a running Agent This page attempts to list useful tools and resources to troubleshoot and profile a running Agent. ## [pprof](https://golang.org/pkg/net/http/pprof/) The Agent exposes pprof's HTTP server on port `5000` by default. Through the pprof port you can get profiles (CPU, memory, etc) on the go runtime, along with some general information on the state of the runtime. In particular/additionally, the following commands can come in handy: \* List all goroutines: ```sh curl http://localhost:5000/debug/pprof/goroutine?debug=2 ``` \* Profile the go heap: ```sh go tool pprof http://localhost:5000/debug/pprof/heap ``` ## expvar The Agent also exposes expvar variables through an HTTP server on port `5000` by default, in JSON format. General documentation: https://golang.org/pkg/expvar/ Most components of the Agent expose variables (under their respective key). By default expvar also exposes general memory stats from [`runtime.MemStats`](https://golang.org/pkg/runtime/#MemStats). In particular, the `Sys`, `HeapSys` and `HeapInuse` variables can be interesting. Using the `jq` command-line tool, it's rather easy to explore and find relevant variables, for example: ```sh # Find total bytes of memory obtained from the OS by the go runtime curl -s http://localhost:5000/debug/vars | jq '.memstats.Sys' # Get names of checks that the collector's check runner has run curl -s http://localhost:5000/debug/vars | jq '.runner.Checks | keys' ``` ## [delve](https://github.com/derekparker/delve) A debugger for Go. Example usage: ```sh $ sudo dlv attach `pgrep -f '/opt/datadog-agent/bin/agent/agent run'` (dlv) help # help on all commands (dlv) goroutines # list goroutines (dlv) threads # list threads (dlv) goroutine # switch to goroutine ``` /// tip | Using external/split debug symbols If you're running a stripped binary of the agent, you can `attach` and point delve at the debug symbols. Configure delve to search for debug symbols in the path you installed debug symbols to. Eg, on ubuntu/debian, `apt install datadog-agent-dbg` installs to `/opt/datadog-agent/.debug`, so modify your [delve config file](https://github.com/go-delve/delve/blob/master/Documentation/cli/README.md#configuration-and-command-history) to search this directory: ``` # delve config file is at $HOME/.config/dlv/config.yml debug-info-directories: ["/usr/lib/debug/.build-id", "/opt/datadog-agent/.debug/" ] ``` /// note | Running delve as root If you use `sudo` to run `dlv attach`, `$HOME` will be set to `/root`. You may want to symlink `/root/.config/dlv/config.yml` to point to your user delve config file. /// /// ## gdb GDB can in some rare cases be useful to troubleshoot the embedded python interpreter. See https://wiki.python.org/moin/DebuggingWithGdb Example usage (using the legacy `pystack` macro): ```sh sudo ./gdb --pid info threads thread # switch to thread pystack # python stacktrace of current thread ``` To debug a core dump generated with the `c\_core\_dump` Agent option, refer to the [GDB docker image that includes the Agent symbols](https://github.com/DataDog/datadog-agent/tree/main/tools/gdb). For simple debugging cases, you can simply use the python-provided `pdb` to jump into a debugging shell by adding to the python code that's run: ```python import pdb pdb.set\_trace() ``` and running the agent in the foreground. | https://github.com/DataDog/datadog-agent/blob/main//docs/public/how-to/debug-agents/index.md | main | datadog-agent | [
-0.004573589190840721,
0.020748719573020935,
-0.15023721754550934,
-0.0032945626880973577,
-0.039483096450567245,
-0.04630249738693237,
0.01213746890425682,
0.07296320796012878,
-0.04920089244842529,
-0.005261954385787249,
0.07271184027194977,
-0.00047575312783010304,
-0.01521395891904831,
... | 0.088206 |
# Go tracking and troubleshooting To investigate the Go portion of the process memory, you can use the usual and expected tooling available to any Go binary. If you encounter a leak in the Agent process as seen in the process RSS, review the Go memory profile. If everything is okay, the leak may be elsewhere. The usual way to profile go binary memory usage is via the `pprof` facilities: - Run `go tool pprof http://localhost:5000/debug/pprof/heap` to jump into the `pprof` interpreter and load the heap profile. - Run `curl localhost:5000/debug/pprof/heap > myheap.profile` to save a heap profile to disk. \*\*Note\*\*: You may have to do this on a box without the `Go` toolchain. - Use `go tool pprof` to analyze the profile. \*\*Note\*\*: You have multiple other profiles on other parts of the Go runtime you can dump: `goroutine`, `heap`, `threadcreate`, `block`, `mutex`, `profile` and `trace`. This doc only covers `heap` profiling. You can normally jump into `pprof` in interactive mode easily and load the profile: ``` go tool pprof myheap.profile ``` There are several tools available to explore the heap profile, most notably the `top` tool. Use the `top` tool to list the top memory hungry elements, including cumulative and sum statistics to produce an input similar to below: ``` (pprof) top Showing nodes accounting for 4848.62kB, 100% of 4848.62kB total Showing top 10 nodes out of 31 flat flat% sum% cum cum% 1805.17kB 37.23% 37.23% 1805.17kB 37.23% compress/flate.NewWriter 858.34kB 17.70% 54.93% 858.34kB 17.70% github.com/DataDog/datadog-agent/vendor/github.com/modern-go/reflect2.loadGo17Types 583.01kB 12.02% 66.96% 2388.18kB 49.25% github.com/DataDog/datadog-agent/pkg/serializer/jsonstream.(\*PayloadBuilder).Build 553.04kB 11.41% 78.36% 553.04kB 11.41% github.com/DataDog/datadog-agent/vendor/github.com/gogo/protobuf/proto.RegisterType 536.37kB 11.06% 89.43% 536.37kB 11.06% github.com/DataDog/datadog-agent/vendor/k8s.io/apimachinery/pkg/api/meta.init.ializers 512.69kB 10.57% 100% 512.69kB 10.57% crypto/x509.parseCertificate 0 0% 100% 1805.17kB 37.23% compress/flate.NewWriterDict 0 0% 100% 1805.17kB 37.23% compress/zlib.(\*Writer).Write 0 0% 100% 1805.17kB 37.23% compress/zlib.(\*Writer).writeHeader 0 0% 100% 512.69kB 10.57% crypto/tls.(\*Conn).Handshake ``` or `tree`: ``` (pprof) tree Showing nodes accounting for 4848.62kB, 100% of 4848.62kB total ----------------------------------------------------------+------------- flat flat% sum% cum cum% calls calls% + context ----------------------------------------------------------+------------- 1805.17kB 100% | compress/flate.NewWriterDict 1805.17kB 37.23% 37.23% 1805.17kB 37.23% | compress/flate.NewWriter ----------------------------------------------------------+------------- 858.34kB 100% | github.com/DataDog/datadog-agent/vendor/github.com/modern-go/reflect2.init.0 858.34kB 17.70% 54.93% 858.34kB 17.70% | github.com/DataDog/datadog-agent/vendor/github.com/modern-go/reflect2.loadGo17Types ----------------------------------------------------------+------------- 2388.18kB 100% | github.com/DataDog/datadog-agent/pkg/serializer.Serializer.serializeStreamablePayload 583.01kB 12.02% 66.96% 2388.18kB 49.25% | github.com/DataDog/datadog-agent/pkg/serializer/jsonstream.(\*PayloadBuilder).Build 1805.17kB 75.59% | github.com/DataDog/datadog-agent/pkg/serializer/jsonstream.newCompressor ----------------------------------------------------------+------------- 553.04kB 100% | github.com/DataDog/datadog-agent/vendor/github.com/gogo/googleapis/google/rpc.init.2 553.04kB 11.41% 78.36% 553.04kB 11.41% | github.com/DataDog/datadog-agent/vendor/github.com/gogo/protobuf/proto.RegisterType ----------------------------------------------------------+------------- 536.37kB 100% | runtime.main 536.37kB 11.06% 89.43% 536.37kB 11.06% | github.com/DataDog/datadog-agent/vendor/k8s.io/apimachinery/pkg/api/meta.init.ializers ----------------------------------------------------------+------------- 512.69kB 100% | crypto/x509.ParseCertificate 512.69kB 10.57% 100% 512.69kB 10.57% | crypto/x509.parseCertificate ----------------------------------------------------------+------------- ... ``` There are several facets to inspect your profiles: - `inuse\_space`: Display in-use memory size - `inuse\_objects`: Display in-use object counts - `alloc\_space`: Display allocated memory size - `alloc\_objects`: Display allocated object counts In interactive mode, select and change modes by entering the moce and hitting `enter`. Another useful feature is the allocation graph, or what the `top` and `tree` commands show in text mode graphically. Open the graph directly in your browser using the `web` command, or if you'd like to export it to a file, use the `svg` command or another graph exporting commands. Another useful profile you can use if RSS is growing and you cannot resolve the issue is the `goroutines` profile. It is useful for identifying Go routine leaks, which is another common issue in Go development: ``` go tool pprof http://localhost:5000/debug/pprof/goroutine ``` Load into `pprof` and explore in the same way as noted above. This section will help you get started, but there is more information available in the links below. ### Further Reading - [Julia Evans: go profiling](https://jvns.ca/blog/2017/09/24/profiling-go-with-pprof/) - [Detectify: memory leak investigation](https://blog.detectify.com/2019/09/05/how-we-tracked-down-a-memory-leak-in-one-of-our-go-microservices) | https://github.com/DataDog/datadog-agent/blob/main//docs/public/how-to/memory-profiling/go.md | main | datadog-agent | [
0.017368678003549576,
0.009513352066278458,
-0.11920882016420364,
0.011608675122261047,
0.0018938726279884577,
-0.035943351686000824,
0.003370258491486311,
0.05519628897309303,
-0.004588289186358452,
0.01582079939544201,
0.041179314255714417,
-0.0025066169910132885,
-0.034417323768138885,
... | 0.038223 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.