summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/bind
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2024-04-05 15:25:01 +0300
committerGitHub <noreply@github.com>2024-04-05 15:25:01 +0300
commitb6bffedc3516161c0c76be8f5837a7a2b848c69c (patch)
tree4d26af98970d53e33d05a4375d38c275e51ef3e9 /src/go/collectors/go.d.plugin/modules/bind
parent128f112c7313ce97d166213303f1bc47500369d3 (diff)
go.d: schemas: add missing "body" and "method" (#17325)
Diffstat (limited to 'src/go/collectors/go.d.plugin/modules/bind')
-rw-r--r--src/go/collectors/go.d.plugin/modules/bind/config_schema.json14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/bind/config_schema.json b/src/go/collectors/go.d.plugin/modules/bind/config_schema.json
index 7d7e376a51..55aa502a65 100644
--- a/src/go/collectors/go.d.plugin/modules/bind/config_schema.json
+++ b/src/go/collectors/go.d.plugin/modules/bind/config_schema.json
@@ -92,6 +92,14 @@
"description": "The path to the client key file for TLS authentication.",
"type": "string",
"pattern": "^$|^/"
+ },
+ "body": {
+ "title": "Body",
+ "type": "string"
+ },
+ "method": {
+ "title": "Method",
+ "type": "string"
}
},
"required": [
@@ -150,6 +158,12 @@
"uiOptions": {
"fullPage": true
},
+ "body": {
+ "ui:widget": "hidden"
+ },
+ "method": {
+ "ui:widget": "hidden"
+ },
"timeout": {
"ui:help": "Accepts decimals for precise control (e.g., type 1.5 for 1.5 seconds)."
},