Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Cloudnative] Update null checks and if checks in the rename processor #7956

Merged
merged 6 commits into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from 5 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/istio/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "0.4.2"
changes:
- description: Add null check and ignore_missing check to the rename processor
ishleenk17 marked this conversation as resolved.
Show resolved Hide resolved
type: bugfix
link: https://github.com/elastic/integrations/pull/7956
- version: "0.4.1"
changes:
- description: Revert the metric format to have type object again.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ processors:
field: message
target_field: event.original
ignore_missing: true
if: 'ctx.event?.original == null'
- drop:
if: "ctx?.event?.original == null"
- grok:
Expand Down
2 changes: 1 addition & 1 deletion packages/istio/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: istio
title: Istio
description: Collect logs and metrics from the service mesh Istio with Elastic Agent.
type: integration
version: 0.4.1
version: 0.4.2
release: beta
license: basic
categories:
Expand Down
5 changes: 5 additions & 0 deletions packages/nats/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.3.2"
changes:
- description: Add null check and ignore_missing check to the rename processor
type: bugfix
link: https://github.com/elastic/integrations/pull/7956
- version: "1.3.1"
changes:
- description: Added categories and/or subcategories.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ processors:
field: message
target_field: event.original
ignore_missing: true
if: 'ctx.event?.original == null'
- grok:
field: event.original
patterns:
Expand Down
2 changes: 1 addition & 1 deletion packages/nats/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: nats
title: NATS
version: 1.3.1
version: 1.3.2
release: ga
description: Collect logs and metrics from NATS servers with Elastic Agent.
type: integration
Expand Down
5 changes: 5 additions & 0 deletions packages/nginx_ingress_controller/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.7.3"
changes:
- description: Add null check and ignore_missing check to the rename processor
type: bugfix
link: https://github.com/elastic/integrations/pull/7956
- version: "1.7.2"
changes:
- description: Fix dashboard by replacing type for nginx_ingress_controller.access.upstream.name from `text` to `keyword`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ processors:
field: message
target_field: event.original
ignore_missing: true
if: 'ctx.event?.original == null'
- grok:
field: event.original
patterns:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ processors:
field: message
target_field: event.original
ignore_missing: true
if: 'ctx.event?.original == null'
- grok:
field: event.original
patterns:
Expand Down
2 changes: 1 addition & 1 deletion packages/nginx_ingress_controller/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 1.0.0
name: nginx_ingress_controller
title: Nginx Ingress Controller Logs
version: 1.7.2
version: 1.7.3
license: basic
description: Collect Nginx Ingress Controller logs.
type: integration
Expand Down
5 changes: 5 additions & 0 deletions packages/stan/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.3.2"
changes:
- description: Add null check and ignore_missing check to the rename processor
type: bugfix
link: https://github.com/elastic/integrations/pull/7956
- version: "1.3.1"
changes:
- description: Added categories and/or subcategories.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ processors:
field: message
target_field: event.original
ignore_missing: true
if: 'ctx.event?.original == null'
- grok:
field: event.original
patterns:
Expand Down
2 changes: 1 addition & 1 deletion packages/stan/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stan
title: STAN
version: 1.3.1
version: 1.3.2
release: ga
description: Collect logs and metrics from STAN servers with Elastic Agent.
type: integration
Expand Down