master
json 32 lines 798 Bytes
Raw
1 {
2 "jsonSchema": {
3 "$schema": "http://json-schema.org/draft-07/schema#",
4 "title": "NVMe 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": 10
13 },
14 "timeout": {
15 "title": "Timeout",
16 "description": "Timeout for executing the `nvme`, specified in seconds.",
17 "type": "number",
18 "minimum": 0.5,
19 "default": 2
20 }
21 },
22 "required": []
23 },
24 "uiSchema": {
25 "uiOptions": {
26 "fullPage": true
27 },
28 "timeout": {
29 "ui:help": "Accepts decimals for precise control (e.g., type 1.5 for 1.5 seconds)."
30 }
31 }
32 }