Commit c6ff2119 authored by Jose Ivan Vargas's avatar Jose Ivan Vargas

Merge branch 'astoicescu/gaugeChartToGaugeInYML' into 'master'

Change 'gauge-chart' to 'gauge' in YML panel config for gauge charts

See merge request gitlab-org/gitlab!39184
parents 0f8b4345 31453ad0
...@@ -89,7 +89,7 @@ export const panelTypes = { ...@@ -89,7 +89,7 @@ export const panelTypes = {
/** /**
* Gauge * Gauge
*/ */
GAUGE_CHART: 'gauge-chart', GAUGE_CHART: 'gauge',
/** /**
* Heatmap * Heatmap
*/ */
......
---
title: Change "gauge-chart" to "gauge" in YML panel configuration for gauge charts
merge_request: 39184
author:
type: changed
...@@ -243,7 +243,7 @@ panel_groups: ...@@ -243,7 +243,7 @@ panel_groups:
- group: 'Group Title' - group: 'Group Title'
panels: panels:
- title: "Gauge" - title: "Gauge"
type: "gauge-chart" type: "gauge"
min_value: 0 min_value: 0
max_value: 1000 max_value: 1000
split: 5 split: 5
...@@ -261,7 +261,7 @@ Note the following properties: ...@@ -261,7 +261,7 @@ Note the following properties:
| Property | Type | Required | Description | | Property | Type | Required | Description |
| ------ | ------ | ------ | ------ | | ------ | ------ | ------ | ------ |
| type | string | yes | Type of panel to be rendered. For gauge panel types, set to `gauge-chart`. | | type | string | yes | Type of panel to be rendered. For gauge panel types, set to `gauge`. |
| min_value | number | no, defaults to `0` | The minimum value of the gauge chart axis. If either of `min_value` or `max_value` are not set, they both get their default values. | | min_value | number | no, defaults to `0` | The minimum value of the gauge chart axis. If either of `min_value` or `max_value` are not set, they both get their default values. |
| max_value | number | no, defaults to `100` | The maximum value of the gauge chart axis. If either of `min_value` or `max_value` are not set, they both get their default values. | | max_value | number | no, defaults to `100` | The maximum value of the gauge chart axis. If either of `min_value` or `max_value` are not set, they both get their default values. |
| split | number | no, defaults to `10` | The amount of split segments on the gauge chart axis. | | split | number | no, defaults to `10` | The amount of split segments on the gauge chart axis. |
...@@ -276,7 +276,7 @@ Note the following properties: ...@@ -276,7 +276,7 @@ Note the following properties:
| values | array | no, defaults to 95% of the range between `min_value` and `max_value`| An array of gauge chart axis threshold values. | | values | array | no, defaults to 95% of the range between `min_value` and `max_value`| An array of gauge chart axis threshold values. |
| mode | string | no, defaults to `absolute` | The mode in which the thresholds are interpreted in relation to `min_value` and `max_value`. Can be either `percentage` or `absolute`. | | mode | string | no, defaults to `absolute` | The mode in which the thresholds are interpreted in relation to `min_value` and `max_value`. Can be either `percentage` or `absolute`. |
![gauge chart panel type](img/prometheus_dashboard_gauge_panel_type_v13_3.png) ![gauge panel type](img/prometheus_dashboard_gauge_panel_type_v13_3.png)
## Heatmaps ## Heatmaps
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment