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

[Elastic Agent] Enable TSDB by default #7214

Merged
merged 4 commits into from
Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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/elastic_agent/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.11.0"
changes:
- description: Enable time series data streams for the metrics datastreams except for endpoint security metrics. This improves storage usage and query performance. For more details, see https://www.elastic.co/guide/en/elasticsearch/reference/current/tsds.html.
type: enhancement
link: https://github.com/elastic/integrations/pull/7214
- version: "1.10.1"
changes:
- description: Set metric type for all metric fields.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ title: Elastic Agent
dataset: elastic_agent.apm_server
type: metrics
elasticsearch:
index_mode: "time_series"
index_template:
mappings:
dynamic: false
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ title: Elastic Agent Auditbeat Metrics
dataset: elastic_agent.auditbeat
type: metrics
elasticsearch:
index_mode: "time_series"
index_template:
mappings:
dynamic: false
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ title: Elastic Agent
dataset: elastic_agent.cloudbeat
type: metrics
elasticsearch:
index_mode: "time_series"
index_template:
mappings:
dynamic: false
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ title: Elastic Agent
dataset: elastic_agent.elastic_agent
type: metrics
elasticsearch:
index_mode: "time_series"
index_template:
mappings:
dynamic: false
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ title: Elastic Agent
dataset: elastic_agent.filebeat
type: metrics
elasticsearch:
index_mode: "time_series"
index_template:
mappings:
dynamic: false
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ title: Elastic Agent
dataset: elastic_agent.fleet_server
type: metrics
elasticsearch:
index_mode: "time_series"
index_template:
mappings:
dynamic: false
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ title: Elastic Agent
dataset: elastic_agent.heartbeat
type: metrics
elasticsearch:
index_mode: "time_series"
index_template:
mappings:
dynamic: false
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ title: Elastic Agent
dataset: elastic_agent.metricbeat
type: metrics
elasticsearch:
index_mode: "time_series"
index_template:
mappings:
dynamic: false
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ title: Elastic Agent
dataset: elastic_agent.osquerybeat
type: metrics
elasticsearch:
index_mode: "time_series"
index_template:
mappings:
dynamic: false
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ title: Elastic Agent
dataset: elastic_agent.packetbeat
type: metrics
elasticsearch:
index_mode: "time_series"
index_template:
mappings:
dynamic: false
2 changes: 1 addition & 1 deletion packages/elastic_agent/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: elastic_agent
title: Elastic Agent
version: 1.10.1
version: 1.11.0
description: Collect logs and metrics from Elastic Agents.
type: integration
format_version: 1.0.0
Expand Down