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

Fixed ingest pipeline used in Elasticsearch transform #12757

Merged
merged 4 commits into from
Feb 19, 2025
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/elasticsearch/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.17.3"
changes:
- description: Fix ingest pipeline reference in elasticsearch transform job
type: bugfix
link: "https://github.com/elastic/integrations/pull/12757"
- version: "1.17.2"
changes:
- description: Stop truncating the Elasticsearch server logs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ pivot:
script: "Math.max(0, params.end-params.start)"
dest:
index: "monitoring-indices"
pipeline: "1.16.0-monitoring_indices"
pipeline: "1.17.3-monitoring_indices"
description: This transform runs every 10 minutes to compute extra metrics for the Elasticsearch indices.
frequency: 10m
settings:
Expand All @@ -131,5 +131,5 @@ sync:
delay: 60s
field: '@timestamp'
_meta:
fleet_transform_version: 0.1.0
fleet_transform_version: 0.2.0
run_as_kibana_system: false
2 changes: 1 addition & 1 deletion packages/elasticsearch/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: elasticsearch
title: Elasticsearch
version: 1.17.2
version: 1.17.3
description: Elasticsearch Integration
type: integration
icons:
Expand Down