summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/filecheck/config_schema.json
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/go/collectors/go.d.plugin/modules/filecheck/config_schema.json121
1 files changed, 121 insertions, 0 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/filecheck/config_schema.json b/src/go/collectors/go.d.plugin/modules/filecheck/config_schema.json
new file mode 100644
index 000000000..3e8d75d6c
--- /dev/null
+++ b/src/go/collectors/go.d.plugin/modules/filecheck/config_schema.json
@@ -0,0 +1,121 @@
+{
+ "jsonSchema": {
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "title": "Filecheck collector configuration.",
+ "type": "object",
+ "properties": {
+ "update_every": {
+ "title": "Update every",
+ "description": "Data collection interval, measured in seconds.",
+ "type": "integer",
+ "minimum": 1,
+ "default": 1
+ },
+ "files": {
+ "title": "File selector",
+ "description": "Configuration for monitoring specific files. If left empy, no files will be monitored.",
+ "type": [
+ "object",
+ "null"
+ ],
+ "properties": {
+ "include": {
+ "title": "Include",
+ "description": "Include files that match any of the specified include [patterns](https://golang.org/pkg/path/filepath/#Match).",
+ "type": [
+ "array",
+ "null"
+ ],
+ "items": {
+ "title": "Filepath",
+ "type": "string",
+ "pattern": "^$|^/"
+ },
+ "uniqueItems": true
+ },
+ "exclude": {
+ "title": "Exclude",
+ "description": "Exclude files that match any of the specified exclude [patterns](https://golang.org/pkg/path/filepath/#Match).",
+ "type": [
+ "array",
+ "null"
+ ],
+ "items": {
+ "title": "Filepath",
+ "type": "string",
+ "pattern": "^$|^/"
+ },
+ "uniqueItems": true
+ }
+ },
+ "required": [
+ "include"
+ ]
+ },
+ "collect_dir_size": {
+ "title": "Collect directory size",
+ "description": "Enable the collection of directory sizes for each monitored directory. Enabling this option may introduce additional overhead on both Netdata and the host system, particularly if directories contain a large number of subdirectories and files.",
+ "type": "boolean",
+ "default": false
+ },
+ "dirs": {
+ "title": "Directory selector",
+ "description": "Configuration for monitoring specific directories. If left empy, no directories will be monitored.",
+ "type": [
+ "object",
+ "null"
+ ],
+ "properties": {
+ "include": {
+ "title": "Include",
+ "description": "Include directories that match any of the specified include [patterns](https://golang.org/pkg/path/filepath/#Match).",
+ "type": [
+ "array",
+ "null"
+ ],
+ "items": {
+ "title": "Directory",
+ "type": "string",
+ "pattern": "^$|^/"
+ },
+ "uniqueItems": true
+ },
+ "exclude": {
+ "title": "Exclude",
+ "description": "Exclude directories that match any of the specified exclude [patterns](https://golang.org/pkg/path/filepath/#Match).",
+ "type": [
+ "array",
+ "null"
+ ],
+ "items": {
+ "title": "Directory",
+ "type": "string",
+ "pattern": "^$|^/"
+ },
+ "uniqueItems": true
+ }
+ },
+ "required": [
+ "include"
+ ]
+ }
+ },
+ "additionalProperties": false,
+ "patternProperties": {
+ "^name$": {}
+ }
+ },
+ "uiSchema": {
+ "uiOptions": {
+ "fullPage": true
+ },
+ "files": {
+ "ui:help": "The logic for inclusion and exclusion is as follows: `(include1 OR include2) AND !(exclude1 OR exclude2)`.",
+ "ui:collapsible": true
+ },
+ "dirs": {
+ "ui:help": "The logic for inclusion and exclusion is as follows: `(include1 OR include2) AND !(exclude1 OR exclude2)`.",
+ "ui:collapsible": true
+ }
+ }
+}