Allow unordered OIDs (global and per-os) (#13923)

* Allow unordered OIDs (global and per-os)
Fix global no_bulk setting, was ignored before
(to fix global needed to rework Config::getCombined() a bit to allow a global prefix to be specified)
Removed invalid use of getCombined and updated tests

* fix whitespace

* update os schema
This commit is contained in:
Tony Murray
2022-04-21 21:49:26 -05:00
committed by GitHub
parent 15feac7297
commit d026e9f0cc
11 changed files with 82 additions and 56 deletions

View File

@@ -5182,7 +5182,14 @@
"section": "snmp",
"order": 20,
"type": "array",
"default": null
"default": []
},
"snmp.oids.unordered": {
"group": "poller",
"section": "snmp",
"order": 21,
"type": "array",
"default": []
},
"snmp.timeout": {
"group": "poller",

View File

@@ -368,6 +368,9 @@
"properties": {
"no_bulk": {
"type": "array"
},
"unordered": {
"type": "array"
}
},
"additionalProperties": false