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.

Status - BSM - Component

List Copied

REST API: /status/bsmcomponent

Used for BSM Component view.

Input parameters:

Example output Copied

{ list: [{
    id: 73,                       // Component id
    name: 'MySQL Cluster 3',
    status: 'OPERATIONAL',        // or 'FAILED' or 'DOWNTIME'
    availability: 100,            // Amount of time that this component has been ! FAILED
    impacted: true,               // If the component is OPERATIONAL and there are failed hosts, then the component is impacted
    hosts_total: 6,
    hosts_failed: 4,
    hosts_acknowledged: 0,
    hosts_downtime: 2,
    acknowledged: true,           // Or false
    resiliency: 75,               // Resiliency of cluster as percent. Values from 0 to 100. NOTE: it may not coincide with a clear boundary - you should round down to the nearest boundary
    htname: 'Database - MySQL Server',
    htid: 56,                     // host template id
    has_icon: 1387383622,         // Returns 0 if no icon is set, otherwise returns timestamp of when icon was set
    hosts:{                       // This list is the same as StatusBsmHost.list({cid:73})
    },
    business_services: {          // This is the same as StatusBsmService.list({cid:73,component_detail:0})
      summary: {...},
      list:[{
        id: 1,                   
        name: "Google Picassa",
        status: 'OPERATIONAL',
        ...
      },
    },  
  },{
    ...
  }],
  summary: {
    success: true,
    total: 2
  }
}
["Opsview On-premises"] ["API", "Technical Reference"]

Was this topic helpful?