mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Feature: skip_value can check OID existance (#11822)
* exists for skip_values * AR routers are using another logic for SFPs Power * schemas * tests
This commit is contained in:
@@ -62,7 +62,7 @@
|
||||
"$ref": "#/definitions/comparison"
|
||||
},
|
||||
"value": {
|
||||
"type": ["integer", "string", "array"],
|
||||
"type": ["boolean", "integer", "string", "array"],
|
||||
"items": {
|
||||
"type": ["integer", "string"]
|
||||
}
|
||||
@@ -204,7 +204,7 @@
|
||||
"$ref": "#/definitions/comparison"
|
||||
},
|
||||
"value": {
|
||||
"type": ["integer", "string", "array"],
|
||||
"type": ["boolean", "integer", "string", "array"],
|
||||
"items": {
|
||||
"type": ["integer", "string"]
|
||||
}
|
||||
@@ -385,7 +385,7 @@
|
||||
"$ref": "#/definitions/comparison"
|
||||
},
|
||||
"value": {
|
||||
"type": ["integer", "string", "array"],
|
||||
"type": ["boolean", "integer", "string", "array"],
|
||||
"items": {
|
||||
"type": ["integer", "string"]
|
||||
}
|
||||
@@ -468,7 +468,8 @@
|
||||
"not_contains",
|
||||
"not_regex",
|
||||
"in_array",
|
||||
"not_in_array"
|
||||
"not_in_array",
|
||||
"exists"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@@ -533,7 +533,8 @@
|
||||
"not_contains",
|
||||
"not_regex",
|
||||
"in_array",
|
||||
"not_in_array"
|
||||
"not_in_array",
|
||||
"exists"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user