Skip to content
5 changes: 5 additions & 0 deletions packages/elastic_agent/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "2.7.6"
changes:
- description: Add auto-expand-replicas setting
type: bugfix
link: "https://github.com/elastic/integrations/pull/17632"
- version: "2.7.5"
changes:
- description: Fix OS type counts in the Overview dashboard by using `host.os.type` instead of `host.os.family`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
description: Pipeline for Elastic Agent logs.
processors:
- dot_expander:
tag: dot_expander_log_level
if: ctx['log.level'] != null
field: 'log.level'
- grok:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
description: Pipeline for Elastic Agent status change logs.
processors:
- script:
tag: script_derive_health_status
description: Derive health_status from status field
if: ctx.status != null
lang: painless
Expand All @@ -21,3 +22,14 @@ processors:

ctx.health_status = healthStatus;
ignore_failure: true
on_failure:
Comment thread
cmacknz marked this conversation as resolved.
- set:
field: event.kind
value: pipeline_error
- append:
field: error.message
value: >-
Processor '{{{ _ingest.on_failure_processor_type }}}'
{{#_ingest.on_failure_processor_tag}}with tag '{{{ _ingest.on_failure_processor_tag }}}'
{{/_ingest.on_failure_processor_tag}}in pipeline '{{{ _ingest.pipeline }}}'
failed with message '{{{ _ingest.on_failure_message }}}'
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ elasticsearch:
index_template:
mappings:
dynamic: false
settings:
auto_expand_replicas: "0-1"
4 changes: 2 additions & 2 deletions packages/elastic_agent/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: elastic_agent
title: Elastic Agent
version: 2.7.5
version: 2.7.6
description: Collect logs and metrics from Elastic Agents.
type: integration
format_version: 3.5.0
format_version: 3.6.0
categories: ["elastic_stack"]
conditions:
kibana:
Expand Down
5 changes: 5 additions & 0 deletions packages/fleet_server/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.6.1"
changes:
- description: Add auto-expand-replicas setting
type: bugfix
link: https://github.com/elastic/integrations/pull/17632
- version: "1.6.0"
changes:
- description: Support for stack 9.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ elasticsearch:
index_template:
mappings:
dynamic: false
settings:
auto_expand_replicas: "0-1"
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ elasticsearch:
index_template:
mappings:
dynamic: false
settings:
auto_expand_replicas: "0-1"
4 changes: 2 additions & 2 deletions packages/fleet_server/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: fleet_server
title: Fleet Server
version: 1.6.0
version: 1.6.1
description: Centrally manage Elastic Agents with the Fleet Server integration.
type: integration
format_version: 3.0.4
format_version: 3.6.0
categories: ["elastic_stack"]
conditions:
kibana:
Expand Down
Loading