[doc] [#1] updated conf json schema

This commit is contained in:
Christian Fraß 2023-03-03 15:31:57 +01:00
parent 27b8ed017b
commit aec13bdab4

View file

@ -597,6 +597,60 @@
"kind",
"parameters"
]
},
{
"title": "check 'generic_remote'",
"type": "object",
"unevaluatedProperties": false,
"properties": {
"kind": {
"type": "string",
"enum": [
"generic_remote"
]
},
"parameters": {
"type": "object",
"additionalProperties": false,
"properties": {
"host": {
"type": "string"
},
"port": {
"type": "integer",
"default": 22
},
"user": {
"type": "string"
},
"ssh_key": {
"type": "string"
},
"mount_point": {
"type": "string",
"default": "/"
},
"threshold": {
"type": "integer",
"default": 95,
"description": "maximaler F\u00fcllstand in Prozent"
},
"strict": {
"type": "boolean",
"default": false
}
},
"required": [
"host",
"user",
"ssh_key"
]
}
},
"required": [
"kind",
"parameters"
]
}
]
}