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

added output_health data stream to fleet_server #8605

Merged
merged 2 commits into from
Nov 30, 2023
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/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.5.0"
changes:
- description: Added new output health data stream
type: enhancement
link: https://github.com/elastic/integrations/pull/8605
- version: "1.4.0"
changes:
- description: Added new metrics data streams
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"policy": {
"phases": {
"delete": {
"min_age": "7d",
"actions": {
"delete": {}
}
}
}
}
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these fields are not really serving any purpose (except @timestamp), added them out of convention

Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
- name: data_stream.type
external: ecs
- name: data_stream.dataset
external: ecs
- name: data_stream.namespace
external: ecs
- name: "@timestamp"
external: ecs
- name: agent.id
external: ecs
- name: agent.version
external: ecs
- name: agent.type
external: ecs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- name: output
type: keyword
- name: state
type: keyword
- name: message
type: text
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
data_retention: "7d"
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
title: Output Health
dataset: fleet_server.output_health
ilm_policy: logs-fleet_server.output_health_logs-default_policy
type: logs
elasticsearch:
index_template:
mappings:
dynamic: false
2 changes: 1 addition & 1 deletion packages/fleet_server/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: fleet_server
title: Fleet Server
version: 1.4.0
version: 1.5.0
description: Centrally manage Elastic Agents with the Fleet Server integration.
type: integration
format_version: 3.0.0
Expand Down