| 1 | { |
| 2 | "jsonSchema": { |
| 3 | "$schema": "http://json-schema.org/draft-07/schema#", |
| 4 | "type": "object", |
| 5 | "properties": { |
| 6 | "journalDirectories": { |
| 7 | "title": "systemd-journal directories", |
| 8 | "description": "The list of directories `systemd-journald` and `systemd-journal-remote` store journal files. Netdata monitors these directories to automatically detect changes.", |
| 9 | "type": "array", |
| 10 | "items": { |
| 11 | "title": "Absolute Path", |
| 12 | "type": "string", |
| 13 | "pattern": "^/.+$" |
| 14 | }, |
| 15 | "maxItems": 100, |
| 16 | "uniqueItems": true |
| 17 | } |
| 18 | }, |
| 19 | "required": [ |
| 20 | "journalDirectories" |
| 21 | ] |
| 22 | }, |
| 23 | "uiSchema": { |
| 24 | "journalDirectories": { |
| 25 | "ui:listFlavour": "list", |
| 26 | "ui:options": { |
| 27 | "addable": true, |
| 28 | "orderable": false, |
| 29 | "removable": true |
| 30 | }, |
| 31 | "items": { |
| 32 | "ui:placeholder": "Enter absolute directory path", |
| 33 | "ui:widget": "text", |
| 34 | "ui:emptyValue": "" |
| 35 | } |
| 36 | } |
| 37 | } |
| 38 | } |