Opsview 6.8.x End of Support
With the release of Opsview 6.11.0 on February 2025, versions 6.8.x have reached their End of Support (EOS) status, according to our Support policy. This means that versions 6.8.x will no longer receive code fixes or security updates.
The documentation for version 6.8.9 and earlier versions will remain accessible for the time being, but it will no longer be updated or receive backports. We strongly recommend upgrading to the latest version of Opsview to ensure continued support and access to the latest features and security enhancements.
Filtering and searching
Most of the time, you can do filtering/searching via the s.{columnName}={value}
approach above which is simpler and more tolerant. However, there is the facility to specify searching in a JSON format using the json_filter
URL parameter. The contents of this is converted to a perl hash format, which is expected to be in SQL:Abstract format.
For instance, to search for all objects where id is not equal to 1, you would have:
....?json_filter={"id":{"!=":1}}
And to search for all objects who’s name contains ‘collector’ or FQDN contains ‘der’, you would have:
....?json_filter={"-or":[{"name":{"-like":"%25collector%25C"}},{"ip":{"-like":"%25der%25"}}]}
T the %
SQL search regexp is url encoded to be %25.
Note
As this option is more low level, you may cause errors when invoking the API. If there are errors with the search, you will get a message of
Error executing search
with detail giving the full reason.Only the current table search column comparisons are supported at the moment. All column names are prefixed with
me.
, which means only a search on the current table is possible.