@cryptotaxi247 / netdata-1 / commits / e9471741f

go.d ping add missing setting to schema (#17642)

Ilya Mashchenko committed May 12, 2024 at 13:53 UTC e9471741f29114b13ed45375719de049872d0733
1 file changed +9
src/go/collectors/go.d.plugin/modules/ping/config_schema.json
+9
@@ -55,6 +55,12 @@
55 "type": "number",
56 "minimum": 0.1,
57 "default": 0.1
58 + },
59 + "interface": {
60 + "title": "Interface",
61 + "description": "The name of the network interface whose IP address will be used as the source for sending ping packets.",
62 + "type": "string",
63 + "default": ""
64 }
65 },
66 "required": [
@@ -81,6 +87,9 @@
87 },
88 "interval": {
89 "ui:help": "Accepts decimals for precise control (e.g., type 1.5 for 1.5 seconds)."
90 + },
91 + "hosts": {
92 + "ui:listFlavour": "list"
93 }
94 }
95 }