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.

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"] "1"

Was this topic helpful?