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

Filter by extension

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/zeek/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.8.0"
changes:
- description: Make sure field values are valid for ECS
type: bugfix
link: https://github.com/elastic/integrations/pull/3243
- version: "1.7.0"
changes:
- description: Update to ECS 8.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"event": {
"action": "TGS",
"category": [
"network"
"network",
"authentication"
],
"created": "2020-04-28T11:07:58.223Z",
"id": "C56Flhb4WQBNkfMOl",
Expand All @@ -26,7 +27,7 @@
"type": [
"connection",
"protocol",
"authentication"
"access"
]
},
"network": {
Expand Down Expand Up @@ -122,7 +123,8 @@
"event": {
"action": "TGS",
"category": [
"network"
"network",
"authentication"
],
"created": "2020-04-28T11:07:58.223Z",
"id": "C56Flhb4WQBNkfMOl",
Expand All @@ -132,7 +134,7 @@
"type": [
"connection",
"protocol",
"authentication"
"access"
]
},
"host": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ processors:
value: '8.2.0'
- append:
field: event.category
value: network
value: ["network", "authentication"]
- append:
field: event.type
value: connection
Expand All @@ -38,7 +38,7 @@ processors:
value: protocol
- append:
field: event.type
value: authentication
value: access
- set:
field: network.transport
value: tcp
Expand Down
2 changes: 1 addition & 1 deletion packages/zeek/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: zeek
title: Zeek Logs
version: 1.7.0
version: 1.8.0
release: ga
description: Collect and parse logs from Zeek network security with Elastic Agent.
type: integration
Expand Down