2022-05-16 07:42:37 +00:00
|
|
|
### Setup
|
|
|
|
1. Create `.json` config file in a folder `dashboards`
|
|
|
|
2. Import your config file into the `dashboards/index.js`
|
2022-05-26 06:39:10 +00:00
|
|
|
3. Add filename into the array `window.__VMUI_PREDEFINED_DASHBOARDS__`
|
2022-05-16 07:42:37 +00:00
|
|
|
|
2022-03-26 11:03:11 +00:00
|
|
|
### Configuration options
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
DashboardSettings:
|
|
|
|
|
|
|
|
| Name | Type | Description |
|
|
|
|
|:----------|:----------------:|---------------------------:|
|
|
|
|
| rows* | `DashboardRow[]` | Sections containing panels |
|
|
|
|
| title | `string` | Dashboard title |
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
DashboardRow:
|
|
|
|
|
|
|
|
| Name | Type | Description |
|
|
|
|
|:-----------|:-----------------:|---------------------------:|
|
|
|
|
| panels* | `PanelSettings[]` | List of panels (charts) |
|
|
|
|
| title | `string` | Row title |
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
PanelSettings:
|
|
|
|
|
2022-04-26 12:59:37 +00:00
|
|
|
| Name | Type | Description |
|
|
|
|
|:------------|:----------:|--------------------------------------------------------------------------------------:|
|
|
|
|
| expr* | `string[]` | Data source queries |
|
|
|
|
| alias | `string[]` | Expression alias. Matched by index in array |
|
|
|
|
| title | `string` | Panel title |
|
|
|
|
| description | `string` | Additional information about the panel |
|
|
|
|
| unit | `string` | Y-axis unit |
|
|
|
|
| showLegend | `boolean` | If `false`, the legend hide. Default value - `true` |
|
|
|
|
| width | `number` | The number of columns the panel uses.<br/> From 1 (minimum width) to 12 (full width). |
|
2022-03-26 11:03:11 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### Example json
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"title": "Example",
|
|
|
|
"rows": [
|
|
|
|
{
|
2022-04-26 12:59:37 +00:00
|
|
|
"title": "Per-job resource usage",
|
2022-03-26 11:03:11 +00:00
|
|
|
"panels": [
|
|
|
|
{
|
2022-04-26 12:59:37 +00:00
|
|
|
"title": "Per-job CPU usage",
|
|
|
|
"width": 6,
|
|
|
|
"expr": [
|
|
|
|
"sum(rate(process_cpu_seconds_total)) by (job)"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Per-job RSS usage",
|
|
|
|
"width": 6,
|
2022-03-26 11:03:11 +00:00
|
|
|
"expr": [
|
2022-04-26 12:59:37 +00:00
|
|
|
"sum(process_resident_memory_bytes) by (job)"
|
2022-03-26 11:03:11 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2022-04-26 12:59:37 +00:00
|
|
|
"title": "Per-job disk read",
|
|
|
|
"width": 6,
|
2022-03-26 11:03:11 +00:00
|
|
|
"expr": [
|
2022-04-26 12:59:37 +00:00
|
|
|
"sum(rate(process_io_storage_read_bytes_total)) by (job)"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Per-job disk write",
|
|
|
|
"width": 6,
|
|
|
|
"expr": [
|
|
|
|
"sum(rate(process_io_storage_written_bytes_total)) by (job)"
|
2022-03-26 11:03:11 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2022-04-26 12:59:37 +00:00
|
|
|
"title": "Free/used disk space",
|
2022-03-26 11:03:11 +00:00
|
|
|
"panels": [
|
|
|
|
{
|
2022-04-26 12:59:37 +00:00
|
|
|
"unit": "MB",
|
2022-03-26 11:03:11 +00:00
|
|
|
"expr": [
|
2022-04-26 12:59:37 +00:00
|
|
|
"sum(vm_data_size_bytes{type!=\"indexdb\"}) / 1024 / 1024",
|
|
|
|
"vm_free_disk_space_bytes / 1024 / 1024"
|
|
|
|
],
|
|
|
|
"alias": [
|
|
|
|
"usage space",
|
|
|
|
"free space"
|
2022-03-26 11:03:11 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2022-04-26 12:59:37 +00:00
|
|
|
|
2022-04-01 09:48:17 +00:00
|
|
|
```
|