mirror of
https://github.com/netdata/netdata.git
synced 2025-04-11 16:31:23 +00:00
20 lines
386 B
JSON
20 lines
386 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"plugin_name": {
|
|
"type": "string"
|
|
},
|
|
"modules": {
|
|
"type": "array",
|
|
"description": "A list of single module templates",
|
|
"items": {
|
|
"$ref": "./collection-single-module.json"
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
"plugin_name",
|
|
"modules"
|
|
]
|
|
}
|