Skip to content

Commit

Permalink
symantec_endpoint: use valid ECS values for fields (#3330)
Browse files Browse the repository at this point in the history
This cleans up items missed in the previous pass.
  • Loading branch information
efd6 authored May 12, 2022
1 parent 0d3be38 commit 9f21d95
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 19 deletions.
5 changes: 5 additions & 0 deletions packages/symantec_endpoint/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "0.0.4"
changes:
- description: Make field values conform to ECS
type: bugfix
link: https://github.com/elastic/integrations/pull/3330
- version: "0.0.3"
changes:
- description: Make field values conform to ECS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"action": "blocked",
"category": [
"intrusion_detection",
"network"
"network",
"process"
],
"count": 1,
"end": "2020-01-30T07:48:18.000Z",
Expand All @@ -32,7 +33,6 @@
"start": "2020-01-30T07:48:18.000Z",
"type": [
"connection",
"process",
"denied"
]
},
Expand Down Expand Up @@ -127,7 +127,8 @@
"action": "blocked",
"category": [
"intrusion_detection",
"network"
"network",
"process"
],
"count": 1,
"end": "2020-12-09T00:46:50.000Z",
Expand All @@ -137,7 +138,6 @@
"start": "2020-12-09T00:46:50.000Z",
"type": [
"connection",
"process",
"denied"
]
},
Expand Down Expand Up @@ -207,7 +207,8 @@
"action": "blocked",
"category": [
"intrusion_detection",
"network"
"network",
"process"
],
"count": 4,
"end": "2020-11-11T19:25:28.000Z",
Expand All @@ -217,7 +218,6 @@
"start": "2020-11-11T19:25:21.000Z",
"type": [
"connection",
"process",
"denied"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"action": "blocked",
"category": [
"intrusion_detection",
"network"
"network",
"process"
],
"count": 1,
"end": "2020-01-30T07:48:18.000Z",
Expand All @@ -32,7 +33,6 @@
"start": "2020-01-30T07:48:18.000Z",
"type": [
"connection",
"process",
"denied"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"action": "blocked",
"category": [
"intrusion_detection",
"network"
"network",
"process"
],
"count": 4,
"end": "2020-11-11T19:25:28.000Z",
Expand All @@ -31,7 +32,6 @@
"start": "2020-11-11T19:25:21.000Z",
"type": [
"connection",
"process",
"denied"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"action": "blocked",
"category": [
"intrusion_detection",
"network"
"network",
"process"
],
"count": 4,
"end": "2020-11-11T19:25:28.000Z",
Expand All @@ -28,7 +29,6 @@
"start": "2020-11-11T19:25:21.000Z",
"type": [
"connection",
"process",
"denied"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ processors:
# https://knowledge.broadcom.com/external/article?legacyId=TECH171741#Agent_Traffic
- name: 'Agent Traffic Log'
fingerprint: NONE|local_host_ip|local_port|local_host_mac|remote_host_ip|remote_host_name|remote_port|remote_host_mac|NONE|NONE|begin|end|occurrences|application|rule|location|user_name|domain_name|action|sha-256|md-5
event_category: [intrusion_detection, network]
event_type: [connection, process]
event_category: [intrusion_detection, network, process]
event_type: [connection]
columns:
- index: 9
name: traffic_direction
Expand Down
4 changes: 2 additions & 2 deletions packages/symantec_endpoint/data_stream/log/sample_event.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@
"end": "2020-11-11T19:25:28.000Z",
"category": [
"intrusion_detection",
"network"
"network",
"process"
],
"type": [
"connection",
"process",
"denied"
]
},
Expand Down
4 changes: 2 additions & 2 deletions packages/symantec_endpoint/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -456,11 +456,11 @@ An example event for `log` looks as following:
"end": "2020-11-11T19:25:28.000Z",
"category": [
"intrusion_detection",
"network"
"network",
"process"
],
"type": [
"connection",
"process",
"denied"
]
},
Expand Down
2 changes: 1 addition & 1 deletion packages/symantec_endpoint/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: symantec_endpoint
title: Symantec Endpoint Protection
version: 0.0.3
version: 0.0.4
release: beta
description: Collect logs from Symantec Endpoint Protection with Elastic Agent.
type: integration
Expand Down

0 comments on commit 9f21d95

Please sign in to comment.