Add latest changes from gitlab-org/gitlab@master
This commit is contained in:
parent
7b25b12016
commit
a5af2cab8c
3 changed files with 32 additions and 0 deletions
|
@ -456,6 +456,9 @@ Jobs will run on your own Runners in parallel only if:
|
|||
|
||||
### `only`/`except` (basic)
|
||||
|
||||
NOTE: **Note:**
|
||||
These parameters will soon be [deprecated](https://gitlab.com/gitlab-org/gitlab/issues/27449) in favor of [`rules`](#rules) as it offers a more powerful syntax.
|
||||
|
||||
`only` and `except` are two parameters that set a job policy to limit when
|
||||
jobs are created:
|
||||
|
||||
|
|
BIN
doc/user/project/integrations/img/heatmap_panel_type.png
Normal file
BIN
doc/user/project/integrations/img/heatmap_panel_type.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.1 KiB |
|
@ -286,6 +286,35 @@ Note the following properties:
|
|||
|
||||
![single stat panel type](img/prometheus_dashboard_single_stat_panel_type.png)
|
||||
|
||||
##### Heatmaps
|
||||
|
||||
> [Introduced](https://gitlab.com/gitlab-org/gitlab/issues/30581) in GitLab 12.5.
|
||||
|
||||
To add a heatmap panel type to a dashboard, look at the following sample dashboard file:
|
||||
|
||||
```yaml
|
||||
dashboard: 'Dashboard Title'
|
||||
panel_groups:
|
||||
- group: 'Group Title'
|
||||
panels:
|
||||
- title: "Heatmap"
|
||||
type: "heatmap"
|
||||
metrics:
|
||||
- id: 10
|
||||
query: 'sum(rate(nginx_upstream_responses_total{upstream=~"%{kube_namespace}-%{ci_environment_slug}-.*"}[60m])) by (status_code)'
|
||||
unit: req/sec
|
||||
label: "Status code"
|
||||
```
|
||||
|
||||
Note the following properties:
|
||||
|
||||
| Property | Type | Required | Description |
|
||||
| ------ | ------ | ------ | ------ |
|
||||
| type | string | yes | Type of panel to be rendered. For heatmap panel types, set to `heatmap` |
|
||||
| query_range | yes | yes | For area panel types, you must use a [range query](https://prometheus.io/docs/prometheus/latest/querying/api/#range-queries) |
|
||||
|
||||
![heatmap panel type](img/heatmap_panel_type.png)
|
||||
|
||||
### Downloading data as CSV
|
||||
|
||||
Data from Prometheus charts on the metrics dashboard can be downloaded as CSV.
|
||||
|
|
Loading…
Reference in a new issue