Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion packages/elasticsearch/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# newer versions go on top
- version: "1.18.1"
changes:
- description: Fixed transform job definition that was inflating ingest volume
type: bugfix
link: https://github.com/elastic/integrations/pull/13158
- version: "1.18.0"
changes:
- description: Added 9.0.0 constraint
type: enhancement
link: https://github.com/elastic/integrations/pull/13118
- version: "1.17.4"
changes:
changes:
- description: Fix formulas for computing tier capacity
type: bugfix
link: https://github.com/elastic/integrations/pull/11480
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,19 +80,19 @@ pivot:
buckets_path:
start: "start[elasticsearch.index.primaries.docs.count]"
end: "end[elasticsearch.index.primaries.docs.count]"
script: "Math.max(0, params.end-params.start)"
script: "params.end-params.start"
elasticsearch.index.primaries.store.total_data_set_size_in_bytes_delta:
bucket_script:
buckets_path:
start: "start[elasticsearch.index.primaries.store.total_data_set_size_in_bytes]"
end: "end[elasticsearch.index.primaries.store.total_data_set_size_in_bytes]"
script: "Math.max(0, params.end-params.start)"
script: "params.end-params.start"
elasticsearch.index.total.store.size_in_bytes_delta:
bucket_script:
buckets_path:
start: "start[elasticsearch.index.total.store.size_in_bytes]"
end: "end[elasticsearch.index.total.store.size_in_bytes]"
script: "Math.max(0, params.end-params.start)"
script: "params.end-params.start"
elasticsearch.index.total.search.query_total_delta:
bucket_script:
buckets_path:
Expand All @@ -119,7 +119,7 @@ pivot:
script: "Math.max(0, params.end-params.start)"
dest:
index: "monitoring-indices"
pipeline: "1.18.0-monitoring_indices"
pipeline: "1.18.1-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.2.0
fleet_transform_version: 0.3.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.18.0
version: 1.18.1
description: Elasticsearch Integration
type: integration
icons:
Expand Down
Loading