Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/winlog/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.12.0"
changes:
- description: Add ecs error fields
type: enhancement
link: https://github.com/elastic/integrations/pull/5273
- version: "1.11.0"
changes:
- description: Add agent fields
Expand Down
4 changes: 4 additions & 0 deletions packages/winlog/data_stream/winlog/fields/ecs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
- name: ecs.version
external: ecs
- name: error.code
external: ecs
- name: error.message
external: ecs
- name: event.created
external: ecs
- name: log.level
Expand Down
2 changes: 2 additions & 0 deletions packages/winlog/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ To achieve this, `renderXml` needs to be set to `1` in your [inputs.conf](https:
| data_stream.namespace | Data stream namespace. | constant_keyword |
| data_stream.type | Data stream type. | constant_keyword |
| 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 |
| error.code | Error code describing the error. | keyword |
| error.message | Error message. | match_only_text |
| event.created | event.created contains the date/time when the event was first read by an agent, or by your pipeline. This field is distinct from @timestamp in that @timestamp typically contain the time extracted from the original event. In most situations, these two timestamps will be slightly different. The difference can be used to calculate the delay between your source generating an event, and the time when your agent first processed it. This can be used to monitor your agent's or pipeline's ability to keep up with your event source. In case the two timestamps are identical, @timestamp should be used. | date |
| event.dataset | Event dataset | constant_keyword |
| event.module | Event module | constant_keyword |
Expand Down
2 changes: 1 addition & 1 deletion packages/winlog/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: winlog
title: Custom Windows Event Logs
description: Collect and parse logs from any Windows event log channel with Elastic Agent.
type: integration
version: "1.11.0"
version: "1.12.0"
release: ga
conditions:
kibana.version: '^7.16.0 || ^8.0.0'
Expand Down