I have some devices that discover many items each.
I'm refactoring their template so that the devices can benefit from the SNMP Walk feature.
The parent "Walk" item finds many SNMP OIDs and its dependent items use preprocessing to identify the item values.
As I see it, Regex should work fine for each dependent item.
However, if I map the SNMP walk parent item to JSON, I could benefit from the JSONPath preprocessing.
So my question is, which preprocessing do you guys think would be best:
PS: I'm thinking of thousands of items.
I'm refactoring their template so that the devices can benefit from the SNMP Walk feature.
The parent "Walk" item finds many SNMP OIDs and its dependent items use preprocessing to identify the item values.
As I see it, Regex should work fine for each dependent item.
However, if I map the SNMP walk parent item to JSON, I could benefit from the JSONPath preprocessing.
So my question is, which preprocessing do you guys think would be best:
- Main item with no preprocessing and simple regex for each dependent item?
- Or, main item with "SNMP walk to JSON" preprocessing, and JSONPath preprocessing for each dependent item?
PS: I'm thinking of thousands of items.
Comment