ITRS Opsview Cloud Documentation

Withdraw of the 6.9.2 Release

Unfortunately, due to critical issues identified with version 6.9.2, we have decided to remove it and ensure it's no longer available for download. These issues impacted the ability to install or upgrade but none were security-related. We are diligently working to resolve these issues and are planning to release an updated version 6.9.3 in early May.

What if you've already upgraded?

For customers who have already upgraded to 6.9.2, no immediate action is required, as none of these issues are security-related. Once it's available, you will still be able to upgrade to 6.9.3 as normal. We appreciate your patience and trust as we continue to enhance our software to better serve you. Thank you for your understanding.

Response

If the request was successful, the response will be a status code of 200. If data is requested, this will be in the content in the requested format.

The response format for a single object is (in JSON format):

{
    "object" : { ... }
}

The response format for a list of items is (in JSON format):

    {
        "summary": {
            "rows": "30",
            #This is the number of rows in the response.If this equals allrows, then you have all results 
            "page": 1,
            #Current page number 
            "totalrows": "100",
            #This is the count of all the rows based on the search parameters 
            "totalpages": 4,
            #Based on the pages and the number of rows per page, this is the total number of pages 
            "allrows": "153",
            #This is the count of all rows for this datatype(restricted by user access, eg hosts)
        },
        "list": [{
                "ref": "/rest/config/servicecheck/47",
                "name": "/",
                "id": "47",
                "description": "Utilisation of / partition"
            },
            ....
        ]
    }

The object hash within a list is the same as a single object.

The value for the ref key provides a way of accessing the related object.

["Opsview On-premises"] ["API", "Technical Reference"]

Was this topic helpful?