added oids.no_bulk os setting (#13666)

* forcewalk param

* [snmp][no_bulk]

* var names, test, schema

* Key off OIDs, not mibs

luminato is POC and needs to be reverted before merge.

* fix up os schema

* docs

* remove luminato arbitrary changes

Co-authored-by: Tony Murray <murraytony@gmail.com>
This commit is contained in:
Peca Nesovanovic
2022-01-15 16:59:23 +01:00
committed by GitHub
parent 3e0d8b8a24
commit 592a0efa51
8 changed files with 5074 additions and 4 deletions

View File

@@ -5145,6 +5145,13 @@
"type": "integer",
"default": 0
},
"snmp.oids.no_bulk": {
"group": "poller",
"section": "snmp",
"order": 20,
"type": "array",
"default": null
},
"snmp.timeout": {
"group": "poller",
"section": "snmp",

View File

@@ -363,6 +363,15 @@
"type": "string"
}
},
"oids": {
"type": "object",
"properties": {
"no_bulk": {
"type": "array"
}
},
"additionalProperties": false
},
"snmp_bulk": {
"type": "boolean"
},