Opsview 6.9.x End of Support

Opsview versions 6.9.x reached their End of Support (EOS) status at the end of January 2026, in accordance with our Support policy. As of this date, these versions no longer receive code fixes, security updates, maintenance releases, or backported changes.

The documentation for version 6.9.7 and earlier releases will remain accessible for reference, but it will no longer be updated or maintained. We strongly recommend upgrading to the latest supported version of Opsview to ensure continued support and access to the latest features and security enhancements.

Status - BSM - Service

List Copied

REST API: /status/bsmservice

Used for BSM Summary and Detail view.

Input parameters:

Example output Copied

{ list: [{
    id: 1,                      // BSM id
    name: 'Google Analytics',
    availability: 70.34,        // Amount of time that this business service not been FAILED. Do not return when filtered by cid
    status: "OPERATIONAL",      // Or "OFFLINE" or "DOWNTIME"
    acknowledged: true,         // Or false. If all components are acknowledged
    impacted: true,             // If the business service has any impacted components, then the business service is impacted
    components_total: 6,
    components_failed: 4,
    components_acknowledged: 0,
    components_impacted: 2,
    components_downtime: 2,
    components: {  
      summary: {                // Same as from component list({ bs: 1 } )
         ...
      },
      list: [{
        id: 73,                     // component id
        name: "MySQL Cluster 3",
        availability: 93.56,
        htname: 'Database - MySQL Server',
        htid: 56,                   // host template id
        hosts:{                     // This list is the same as StatusBsmHost.list()
        },
      },{
        ...
      }],
    },
  },{
    ...
  }],
  summary: {
    success: true,
    total: 3
  }
}
["Opsview On-Premises"] ["API", "Technical Reference"]

Was this topic helpful?