-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move windows logs to system * shuffle sysmon and forwarded logs back, add system and application logs * fix up dashboards * bump kibana version, add notice to windows package * rename data streams * add guard to logs * add agent.yml files * update readme * move conditionals to stream * update minimum kibana version, add condition to load
- Loading branch information
1 parent
1f5013c
commit 2b4f96b
Showing
135 changed files
with
1,824 additions
and
242 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
packages/system/data_stream/application/agent/stream/winlog.yml.hbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
name: Application | ||
condition: ${host.platform} == 'windows' | ||
ignore_older: 72h |
10 changes: 10 additions & 0 deletions
10
packages/system/data_stream/application/elasticsearch/ingest_pipeline/default.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
description: Pipeline for Windows Application Event Logs | ||
processors: | ||
- set: | ||
field: event.ingested | ||
value: '{{_ingest.timestamp}}' | ||
on_failure: | ||
- set: | ||
field: "error.message" | ||
value: "{{ _ingest.on_failure_message }}" |
File renamed without changes.
12 changes: 12 additions & 0 deletions
12
packages/system/data_stream/application/fields/base-fields.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
- name: data_stream.type | ||
type: constant_keyword | ||
description: Data stream type. | ||
- name: data_stream.dataset | ||
type: constant_keyword | ||
description: Data stream dataset. | ||
- name: data_stream.namespace | ||
type: constant_keyword | ||
description: Data stream namespace. | ||
- name: '@timestamp' | ||
type: date | ||
description: Event timestamp. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
- description: Time when the event was first read by an agent or by your pipeline. | ||
example: '2016-05-23T08:05:34.857Z' | ||
name: event.created | ||
type: date | ||
- description: Timestamp when an event arrived in the central data store. | ||
example: '2016-05-23T08:05:35.101Z' | ||
name: event.ingested | ||
type: date | ||
- description: Raw text message of entire event. | ||
example: Sep 19 08:26:10 host CEF:0|Security| threatmanager|1.0|100| worm successfully stopped|10|src=10.0.0.1 dst=2.1.2.2spt=1232 | ||
ignore_above: 1024 | ||
name: event.original | ||
type: keyword | ||
- description: Error message. | ||
name: error.message | ||
type: text |
Oops, something went wrong.