| 1 | { |
| 2 | "jsonSchema": { |
| 3 | "$schema": "http://json-schema.org/draft-07/schema#", |
| 4 | "title": "Intel GPU collector configuration.", |
| 5 | "type": "object", |
| 6 | "properties": { |
| 7 | "update_every": { |
| 8 | "title": "Update every", |
| 9 | "description": "Data collection interval, measured in seconds.", |
| 10 | "type": "integer", |
| 11 | "minimum": 1, |
| 12 | "default": 1 |
| 13 | }, |
| 14 | "device": { |
| 15 | "title": "Device selector", |
| 16 | "description": "Select Intel GPU ([supported filters](https://manpages.debian.org/testing/intel-gpu-tools/intel_gpu_top.1.en.html#DEVICE_SELECTION)). Use `intel_gpu_top -L` for listing devices. If not set, defaults to first.", |
| 17 | "type": "string" |
| 18 | } |
| 19 | } |
| 20 | }, |
| 21 | "uiSchema": { |
| 22 | "uiOptions": { |
| 23 | "fullPage": true |
| 24 | }, |
| 25 | "device": { |
| 26 | "ui:placeholder": "For systems with multiple GPUs, create separate data collection jobs and specify the device for each job." |
| 27 | } |
| 28 | } |
| 29 | } |