SSLO Devices Summary

Overview

This BIG-IQ API can get summary data for all BIG-IPs provisioned with SSL Orchestrator (SSLO).

REST Endpoint: /mgmt/ap/query/v1/tenants/default/reports/SsloDevicesSummary

Requests

GET /mgmt/ap/query/v1/tenants/default/reports/SsloDevicesSummary

Query Parameters

None

Request Parameters

None

Response

HTTP/1.1 200 OK

The JSON in the response can include the following parameters.

Name Type Description
devicesHealth object Number of devices by health status
     critical number Number of devices with a health status of “Critical”
     good number Number of devices with a health status of “Good”
     moderate number Number of devices with a health status of “Moderate”
     other number Number of devices with a health status of “Other”
devicesThroughputIn object List of devices with their respective greatest throughput in
     <device name> number Greatest throughput in
devicesThroughputOut object List of devices with their respective greatest throughput out
     <device name> number Greatest throughput out
devicesTopCPUUsage object List of devices with their respective greatest CPU usage
     <device name> number Greatest CPU usage
devicesTopDecryptionStat object List of devices with their respective greatest decrypted traffic
     <device name> number Greatest decrypted traffic
devicesTopMemUsages object List of devices with their respective greatest memory usage
     <device name> number Greatest memory usage
totalDevices number Number of BIG-IP devices provisioned with SSLO

Permissions

Role Allow
SSL Orchestrator Manager Yes

Examples

GET to retrieve data for all BIG-IPs provisioned with SSLO

The following example shows the response a query with no parameters.

GET /mgmt/ap/query/v1/tenants/default/reports/SsloDevicesSummary

Response

{
    "kind": "ap:compose:Report",
    "lastUpdateMicros": 182339068899,
    "result": {
            "totalDevices": 1,
            "devicesHealth": {
                    "Critical": 0,
                    "Moderate": 0,
                    "Good": 1,
                    "Other": 0
            },
            "devicesTopCPUUsage": {
                    "Automation-07-sslo-Tier1-1.example.com": 13.689278635111721
            },
            "devicesTopDecryptionStat": {
                    "Automation-07-sslo-Tier1-1.example.com": 0.990909090909091
            },
            "devicesThroughputIn": {
                    "Automation-07-sslo-Tier1-1.example.com": 4067.2515151515154
            },
            "devicesThroughputOut": {
                    "Automation-07-sslo-Tier1-1.example.com": 2950.121212121212
            },
            "devicesTopMemUsages": {
                    "Automation-07-sslo-Tier1-1.example.com": 18
            }
    },
    "requestDurationInMillis": 134
}