You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update kibana.constraint to allow 8.1.0+. 8.1.0 is required because elastic/beats#30032
is needed due to a breaking change that was introduced in 8.0.0.
Rename message_id to ECS event.code. This field was added in 8.0. From man systemd.journal-fields
MESSAGE_ID=
A 128-bit message identifier ID for recognizing certain
message types, if this is desirable. ...
@@ -16,6 +123,7 @@ The journald input is available on Linux systems with `systemd` installed.
16
123
| data_stream.namespace | Data stream namespace. | constant_keyword |
17
124
| data_stream.type | Data stream type. | constant_keyword |
18
125
| ecs.version | ECS version this event conforms to. `ecs.version` is a required field and must exist in all events. When querying across multiple indices -- which may conform to slightly different ECS versions -- this field lets integrations adjust to the schema version of the events. | keyword |
126
+
| event.code | Identification code for this event, if one exists. Some event sources use event codes to identify messages unambiguously, regardless of message language or wording adjustments over time. An example of this is the Windows Event ID. | keyword |
19
127
| host.hostname | Hostname of the host. It normally contains what the `hostname` command returns on the host machine. | keyword |
20
128
| host.id | Unique host id. As hostname is not always unique, use values that are meaningful in your environment. Example: The current usage of `beat.name`. | keyword |
21
129
| input.type || keyword |
@@ -56,11 +164,11 @@ The journald input is available on Linux systems with `systemd` installed.
56
164
| log.syslog.identifier | Identifier (usually process) contained in the syslog header. | keyword |
57
165
| log.syslog.pid | PID contained in the syslog header. | long |
58
166
| log.syslog.priority | Syslog numeric priority of the event, if available. According to RFCs 5424 and 3164, the priority is 8 \* facility + severity. This number is therefore expected to contain a value between 0 and 191. | long |
59
-
| message | For log events the message field contains the log message, optimized for viewing in a log viewer. For structured logs without an original message field, other fields can be concatenated to form a human-readable summary of the event. If multiple messages exist, they can be combined into one message. |text|
167
+
| message | For log events the message field contains the log message, optimized for viewing in a log viewer. For structured logs without an original message field, other fields can be concatenated to form a human-readable summary of the event. If multiple messages exist, they can be combined into one message. |match_only_text|
60
168
| process.args | Array of process arguments, starting with the absolute path to the executable. May be filtered to protect sensitive information. | keyword |
61
169
| process.args_count | Length of the process.args array. This field can be useful for querying or performing bucket analysis on how many arguments were provided to start a process. More arguments may be an indication of suspicious activity. | long |
62
-
| process.command_line | Full command line that started the process, including the absolute path to the executable, and all arguments. Some arguments may be filtered to protect sensitive information. |keyword|
63
-
| process.command_line.text | Multi-field of `process.command_line`. |text|
170
+
| process.command_line | Full command line that started the process, including the absolute path to the executable, and all arguments. Some arguments may be filtered to protect sensitive information. |wildcard|
171
+
| process.command_line.text | Multi-field of `process.command_line`. |match_only_text|
64
172
| process.pid | Process id. | long |
65
173
| systemd.cgroup | The control group path in the systemd hierarchy. | keyword |
66
174
| systemd.invocation_id | The invocation ID for the runtime cycle of the unit the message was generated in, as available to processes of the unit in $INVOCATION_ID. | keyword |
@@ -74,4 +182,3 @@ The journald input is available on Linux systems with `systemd` installed.
74
182
| tags | List of keywords used to tag each event. | keyword |
75
183
| user.group.id | Unique identifier for the group on the system/platform. | keyword |
76
184
| user.id | Unique identifier of the user. | keyword |
0 commit comments