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

[O11y][Prometheus] Migrate Prometheus Server Overview dashboard to lens #8016

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion packages/prometheus/changelog.yml
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.13.0"
changes:
- description: Migrate Prometheus Server Overview dashboard to lens.
type: enhancement
link: https://github.com/elastic/integrations/pull/8016
- version: "1.12.1"
changes:
- description: Fix remote_write ingest pipeline to include both metric path 'prometheus.*' and 'prometheus.metrics.*' to fingerprint calculation
Expand Down Expand Up @@ -26,7 +31,7 @@
link: https://github.com/elastic/integrations/pull/7565
- version: "1.8.0"
changes:
- description: Enable TSDB by default for collector and query metrics data streams. This improves storage usage and query performance. For more details, see https://www.elastic.co/guide/en/elasticsearch/reference/current/tsds.html. Still TSDB is not supported for remote_write
- description: Enable TSDB by default for collector and query metrics data streams. This improves storage usage and query performance. For more details, see https://www.elastic.co/guide/en/elasticsearch/reference/current/tsds.html. Still TSDB is not supported for remote_write
type: enhancement
link: https://github.com/elastic/integrations/pull/7261
- version: "1.7.0"
Expand Down
5 changes: 3 additions & 2 deletions packages/prometheus/data_stream/collector/manifest.yml
Expand Up @@ -137,11 +137,11 @@ streams:
- name: data_stream.dataset
type: text
title: 'Datasream Dataset name'
description: Name of Datastream dataset
description: Name of Datastream dataset
multi: false
default: prometheus.collector
required: true
show_user: true
show_user: true
- name: processors
type: yaml
title: Processors
Expand All @@ -150,6 +150,7 @@ streams:
show_user: false
description: >
Processors are used to reduce the number of fields in the exported event or to enhance the event with metadata. This executes in the agent before the logs are parsed. See [Processors](https://www.elastic.co/guide/en/beats/filebeat/current/filtering-and-enhancing-data.html) for details.

title: Prometheus collector metrics
enabled: true
description: Collect Prometheus collector metrics
5 changes: 3 additions & 2 deletions packages/prometheus/data_stream/query/manifest.yml
Expand Up @@ -57,11 +57,11 @@ streams:
- name: data_stream.dataset
type: text
title: 'Datasream Dataset name'
description: Name of Datastream dataset
description: Name of Datastream dataset
multi: false
default: prometheus.query
required: true
show_user: true
show_user: true
- name: processors
type: yaml
title: Processors
Expand All @@ -70,6 +70,7 @@ streams:
show_user: false
description: >
Processors are used to reduce the number of fields in the exported event or to enhance the event with metadata. This executes in the agent before the logs are parsed. See [Processors](https://www.elastic.co/guide/en/beats/filebeat/current/filtering-and-enhancing-data.html) for details.

title: Prometheus query metrics
enabled: false
description: Collect Prometheus query metrics
Expand Up @@ -17,7 +17,6 @@
metric_type: gauge
description: |-
Prometheus metric

- name: prometheus.*.value
type: object
object_type: double
Expand Down
5 changes: 3 additions & 2 deletions packages/prometheus/data_stream/remote_write/manifest.yml
Expand Up @@ -71,11 +71,11 @@ streams:
- name: data_stream.dataset
type: text
title: 'Datasream Dataset name'
description: Name of Datastream dataset
description: Name of Datastream dataset
multi: false
default: prometheus.remote_write
required: true
show_user: true
show_user: true
- name: processors
type: yaml
title: Processors
Expand All @@ -84,6 +84,7 @@ streams:
show_user: false
description: >
Processors are used to reduce the number of fields in the exported event or to enhance the event with metadata. This executes in the agent before the logs are parsed. See [Processors](https://www.elastic.co/guide/en/beats/filebeat/current/filtering-and-enhancing-data.html) for details.

title: Prometheus remote write metrics
enabled: false
description: Collect Prometheus remote write metrics
Binary file modified packages/prometheus/img/prometheus-server-overview.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/prometheus/manifest.yml
@@ -1,7 +1,7 @@
format_version: 2.10.0
name: prometheus
title: Prometheus
version: 1.12.1
version: 1.13.0
description: Collect metrics from Prometheus servers with Elastic Agent.
type: integration
categories:
Expand Down