Skip to content

Commit fe222f4

Browse files
committed
fix merge conflicts
2 parents b4b52d5 + 0390885 commit fe222f4

File tree

340 files changed

+11634
-1170
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

340 files changed

+11634
-1170
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,7 @@
431431
/packages/system/data_stream/load @elastic/obs-infraobs-integrations
432432
/packages/system/data_stream/memory @elastic/obs-infraobs-integrations
433433
/packages/system/data_stream/network @elastic/obs-infraobs-integrations
434+
/packages/system/data_stream/ntp @elastic/obs-infraobs-integrations
434435
/packages/system/data_stream/process @elastic/obs-infraobs-integrations
435436
/packages/system/data_stream/process_summary @elastic/obs-infraobs-integrations
436437
/packages/system/data_stream/security @elastic/sec-windows-platform

.github/workflows/bump-elastic-stack-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v5
2626

2727
- name: Install Updatecli in the runner
28-
uses: updatecli/updatecli-action@57aa8966d4d775cb1420b90c270ba97a4b5abe47 #v2.93.0
28+
uses: updatecli/updatecli-action@719e3592d124cbf826da704cbe557e1221dd4bba #v2.94.0
2929

3030
- name: Select diff action
3131
if: ${{ github.event_name == 'pull_request' }}

packages/arista_ngfw/changelog.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# newer versions go on top
2+
- version: "1.4.2"
3+
changes:
4+
- description: Generate processor tags and normalize error handler.
5+
type: enhancement
6+
link: https://github.com/elastic/integrations/pull/15524
27
- version: "1.4.1"
38
changes:
49
- description: Changed owners.

packages/arista_ngfw/data_stream/log/elasticsearch/ingest_pipeline/admin_login.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,22 @@ processors:
55
## Admin Login Events ##
66
########################
77
- rename:
8+
tag: rename_arista_reason_to_event_reason_07f5af7a
89
field: arista.reason
910
target_field: event.reason
1011
ignore_missing: true
1112
- rename:
13+
tag: rename_arista_login_to_user_name_3b52aae3
1214
field: arista.login
1315
target_field: user.name
1416
ignore_missing: true
1517
- rename:
18+
tag: rename_arista_clientAddress_to_source_ip_1f127b6f
1619
field: arista.clientAddress
1720
target_field: source.ip
1821
ignore_missing: true
1922
- script:
23+
tag: script_cef61fad
2024
lang: painless
2125
params:
2226
"false":
@@ -53,11 +57,11 @@ processors:
5357
ctx.event.type = params.get((ctx.arista.succeeded).toString()).get('type').clone();
5458
ctx.event.provider = params.get((ctx.arista.succeeded).toString()).get('provider');
5559
ctx.arista.remove('succeeded');
56-
5760
##############
5861
## Clean Up ##
5962
##############
6063
- remove:
64+
tag: remove_0dd05595
6165
description: Remove Arista fields that are not necessary after parsing to ECS
6266
field:
6367
- arista.local
@@ -68,4 +72,8 @@ on_failure:
6872
value: pipeline_error
6973
- append:
7074
field: error.message
71-
value: '{{{ _ingest.on_failure_message }}}'
75+
value: >-
76+
Processor '{{{ _ingest.on_failure_processor_type }}}'
77+
{{#_ingest.on_failure_processor_tag}}with tag '{{{ _ingest.on_failure_processor_tag }}}'
78+
{{/_ingest.on_failure_processor_tag}}in pipeline '{{{ _ingest.pipeline }}}'
79+
failed with message '{{{ _ingest.on_failure_message }}}'

0 commit comments

Comments
 (0)