Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 21e204f

Browse files
[kubernetes/auditlogs] Fix typo in auditlogs ingest pipeline (#10421)
* fix typo in auditlogs Signed-off-by: Tetiana Kravchenko <[email protected]> * remove processor used for local testing Signed-off-by: Tetiana Kravchenko <[email protected]> * Update changelog.yml --------- Signed-off-by: Tetiana Kravchenko <[email protected]>
1 parent d42f8d1 commit 21e204f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

packages/kubernetes/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.63.1
3+
changes:
4+
- description: Fix typo in kubernetes.audit ingest pipeline
5+
type: bugfix
6+
link: https://github.com/elastic/integrations/pull/10421
27
- version: 1.63.0
38
changes:
49
- description: Add pod.status_reason and pod.status.ready_time fields to the state_pod datastream

packages/kubernetes/data_stream/audit_logs/elasticsearch/ingest_pipeline/default.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ processors:
4545
copy_from: kubernetes.audit.user.uid
4646
ignore_empty_value: true
4747
- set:
48-
if: ctx.kubernetes?.audit?.user?.userAgent != null
48+
if: ctx.kubernetes?.audit?.userAgent != null
4949
field: user_agent.original
5050
copy_from: kubernetes.audit.userAgent
5151
ignore_empty_value: true

packages/kubernetes/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
format_version: 3.1.2
22
name: kubernetes
33
title: Kubernetes
4-
version: 1.63.0
4+
version: 1.63.1
55
description: Collect logs and metrics from Kubernetes clusters with Elastic Agent.
66
type: integration
77
categories:

0 commit comments

Comments
 (0)