This method allows to calculate availability information about services. 此方法允许计算有关服务的可用性信息。

    Parameters 参数

    (object) Returns the following availability information about each service under the corresponding service ID. (object)返回关于相应服务ID下每个服务的可用性信息。

    Property 属性Type 类型Description 说明
    statusinteger 整数型Current status of the service. 当前服务的状态。

    Refer to the for more information on service statuses. 有关服务状态的更多信息,请参阅service object page
    problemsarray 数组Triggers that are currently in problem state and are linked either to the service or one of its descendants. 当前处于故障状态并且与服务或服务的子项所关联的触发器。
    slaarray 数组SLA data about each time period. 每个时间段的SLA数据。

    Each SLA object has the following properties: 每个SLA对象具有以下属性:
    - from - (timestamp 时间戳) interval start time; 间隔开始时间;
    - to - (timestamp 时间戳) interval end time; 间隔结束时间;
    - sla - (float 浮点数) SLA for the given time interval; 指定时间间隔的SLA;
    - okTime - (integer 整数型) time the service was in OK state, in seconds; 服务处于正常状态的时间,单位秒;
    - problemTime - (integer 整数型) time the service was in problem state, in seconds; 服务处于故障状态的时间,单位秒;
    - downtimeTime - (integer 整数型) time the service was in scheduled downtime, in seconds. 服务处于计划停机的时间,单位秒。

    Examples 范例

    Retrieving availability information for an service 检索服务的可用性信息

    Request 请求:

    1. {
    2. "jsonrpc": "2.0",
    3. "result": {
    4. "status": "3",
    5. "problems": {
    6. "13904": {
    7. "expression": "{13359}=0",
    8. "description": "Service unavailable",
    9. "url": "",
    10. "status": "0",
    11. "value": "1",
    12. "priority": "3",
    13. "lastchange": "1352967420",
    14. "comments": "",
    15. "error": "",
    16. "templateid": "0",
    17. "type": "0",
    18. "flags": "0"
    19. }
    20. "sla": [
    21. {
    22. "from": 1352452201,
    23. "to": 1353057001,
    24. "sla": 97.046296296296,
    25. "okTime": 586936,
    26. "problemTime": 17864,
    27. "downtimeTime": 0
    28. }
    29. ]
    30. }
    31. },
    32. }

    Source 源码

    CService::getSla() in frontends/php/include/classes/api/services/CService.php. CService::getSla()方法可在frontends/php/include/classes/api/services/CService.php中参考。