# LitmusEdgeManager 2.31.x API Documentation/Edge Lifecycle Management/Dashboard - LE, LEM, LUNS API Docs

## Deployment Info

**GET** `{{LEM_URL}}/api/v1/system/deployment-info`

# Deployment Info

Returns the deployment type / cloud provider for this LEM installation. Use to render an LEM "about" tile.
## Endpoint

```http
GET {{LEM_URL}}/api/v1/system/deployment-info
```
## Authentication

HTTP Basic Auth. **Username** is your API token, **password** is empty. Tokens are managed under `System > Access Control > Tokens`.
## Response

`200 OK` -- `application/json`

| Field      | Type   | Description                                          |
|------------|--------|------------------------------------------------------|
| `type`     | string | Deployment type (`VM`, `BARE_METAL`, `K8S`, ...).    |
| `provider` | string | Cloud provider (`AWS`, `AZURE`, `GCP`, `UNKNOWN`).   |

```json
{ "type": "VM", "provider": "UNKNOWN" }
```
## Errors

| HTTP status         | When it happens                                                                |
|---------------------|--------------------------------------------------------------------------------|
| `400 Bad Request`   | Missing or malformed query/body parameter.                                     |
| `401 Unauthorized`  | Missing or invalid credentials.                                                |
| `403 Forbidden`     | Token lacks permission for this operation.                                     |
| `404 Not Found`     | Target entity does not exist.                                                  |
| `5xx`               | Service is unreachable, restarting, or internally errored. Inspect device logs under `System > Support`. |

> **TLS note**: edge devices use a self-signed certificate by default. Either install the device CA in your client trust store or disable certificate verification when calling this endpoint directly.


### Response

**Status**: 200 OK

```json
{
    "type": "VM",
    "provider": "UNKNOWN"
}
```

---

## Dashboard Usage

**GET** `{{LEM_URL}}/api/v1/dashboard-em/usage/{{project_id}}`

# Dashboard Usage

Returns project-level usage counters: device totals + online counts, message and byte counts (total + recent period), and incident counters.
## Endpoint

```http
GET {{LEM_URL}}/api/v1/dashboard-em/usage/{{project_id}}
```
## Authentication

HTTP Basic Auth. **Username** is your API token, **password** is empty. Tokens are managed under `System > Access Control > Tokens`.
## Response

`200 OK` -- `application/json`

| Field                 | Type    | Description                                  |
|-----------------------|---------|----------------------------------------------|
| `devicesTotal`        | integer | Total devices in the project.                |
| `devicesOnline`       | integer | Devices currently online.                    |
| `messagesTotal`       | integer | Cumulative messages received.                |
| `messagesByPeriod`    | integer | Messages in the recent UI window.            |
| `bytesTotal`          | integer | Cumulative bytes received.                   |
| `bytesByPeriod`       | integer | Bytes in the recent UI window.               |
| `incidentsActive`     | integer | Active incidents.                            |
| `incidentsByPeriod`   | integer | Incidents in the recent UI window.           |

## Errors

| HTTP status         | When it happens                                                                |
|---------------------|--------------------------------------------------------------------------------|
| `400 Bad Request`   | Missing or malformed query/body parameter.                                     |
| `401 Unauthorized`  | Missing or invalid credentials.                                                |
| `403 Forbidden`     | Token lacks permission for this operation.                                     |
| `404 Not Found`     | Target entity does not exist.                                                  |
| `5xx`               | Service is unreachable, restarting, or internally errored. Inspect device logs under `System > Support`. |

> **TLS note**: edge devices use a self-signed certificate by default. Either install the device CA in your client trust store or disable certificate verification when calling this endpoint directly.


### Response

**Status**: 200 OK

```json
{
    "devicesTotal": 1,
    "devicesOnline": 1,
    "messagesTotal": 0,
    "messagesByPeriod": 0,
    "bytesTotal": 0,
    "bytesByPeriod": 0,
    "incidentsActive": 0,
    "incidentsByPeriod": 0
}
```

---

## Devices

**GET** `{{LEM_URL}}/api/v1/device/{{project_id}}?limit=2`

# Devices

Returns a paginated list of devices in one project. Use the `limit` query parameter to control page size; the response uses LEM's standard paging envelope.
## Endpoint

```http
GET {{LEM_URL}}/api/v1/device/{{project_id}}?limit=2
```
## Authentication

HTTP Basic Auth. **Username** is your API token, **password** is empty. Tokens are managed under `System > Access Control > Tokens`.
## Parameters

| Parameter | Type    | Required | Description                                  |
|-----------|---------|----------|----------------------------------------------|
| `limit`   | integer | No       | Page size.                                   |

## Response

`200 OK` -- `application/json`. Standard LEM paging envelope:

| Field        | Type     | Description                                  |
|--------------|----------|----------------------------------------------|
| `pageNum`    | integer  | 0-indexed page number.                       |
| `pagesCount` | integer  | Total pages.                                 |
| `size`       | integer  | Size of this page.                           |
| `totalSize`  | integer  | Total devices.                               |
| `elements`   | object[] | Device records (see `Edge Devices > Device Details > Current Device Details`). |

## Errors

| HTTP status         | When it happens                                                                |
|---------------------|--------------------------------------------------------------------------------|
| `400 Bad Request`   | Missing or malformed query/body parameter.                                     |
| `401 Unauthorized`  | Missing or invalid credentials.                                                |
| `403 Forbidden`     | Token lacks permission for this operation.                                     |
| `404 Not Found`     | Target entity does not exist.                                                  |
| `5xx`               | Service is unreachable, restarting, or internally errored. Inspect device logs under `System > Support`. |

> **TLS note**: edge devices use a self-signed certificate by default. Either install the device CA in your client trust store or disable certificate verification when calling this endpoint directly.


### Response

**Status**: 200 OK

```json
{
    "pageNum": 0,
    "pagesCount": 1,
    "size": 1,
    "totalSize": 1,
    "elements": [
        {
            "projectId": "462j1mq70mph31wa100t1yuxa",
            "deviceId": "deviceID",
            "status": "ACTIVE",
            "statusTimestamp": 1691104169000,
            "properties": {
                "Firmware Version": {
                    "name": "Firmware Version",
                    "value": "3.8.0",
                    "datatype": "String",
                    "allowUpdateFromDevice": true
                },
                "Manufacturer": {
                    "name": "Manufacturer",
                    "value": "Intel Corporation",
                    "datatype": "String",
                    "allowUpdateFromDevice": true
                },
                "Latitude": {
                    "name": "Latitude",
                    "value": "37.3746029",
                    "datatype": "String",
                    "allowUpdateFromDevice": true
                },
                "Model Number": {
                    "name": "Model Number",
                    "value": "NUC7i5BNH",
                    "datatype": "String",
                    "allowUpdateFromDevice": true
                },
                "Longitude": {
                    "name": "Longitude",
                    "value": "-121.9223647",
                    "datatype": "String",
                    "allowUpdateFromDevice": true
                },
                "Serial Number": {
                    "name": "Serial Number",
                    "value": "G6BN80900DC7",
                    "datatype": "String",
                    "allowUpdateFromDevice": true
                },
                "modelName": {
                    "name": "modelName",
                    "value": "LoopEdge",
                    "datatype": "string",
                    "allowUpdateFromDevice": false
                },
                "virtualization": {
                    "name": "virtualization",
                    "value": null,
                    "datatype": "String",
                    "allowUpdateFromDevice": false
                }
            },
            "tags": [],
            "type": "LOOPEDGE",
            "objects": [
                {
                    "id": 4,
                    "instance": "null",
                    "resource": 3,
                    "objectDescription": "Connectivity Monitoring",
                    "resourceDescription": "Link Quality",
                    "mode": [
                        "READ"
                    ],
                    "observeStatus": false,
                    "modeAsInts": [
                        1
                    ]
                }
            ],
            "prettyName": "Litmus Edge - SJ office sensor",
            "description": null,
            "config": {
                "mqttHostName": "10.17.3.103",
                "mqttSslPort": "8883",
                "mqttServerCA": "-----BEGIN CERTIFICATE---------END CERTIFICATE-----",
                "mqttUserName": "user",
                "mqttPassword": "pass",
                "mqttClientId": "clientID",
                "mqttReqTopicName": "example/json",
                "mqttRespTopicName": "example/json",
                "mqttDataTopicName": "example/json",
                "mqttEventsTopicName": "example/json",
                "mqttDhTopicName": "example/json",
                "mgmtReqTopic": "example",
                "mgmtRespTopic": "example",
                "lwm2mHostName": "",
                "lwm2mPortDtls": "",
                "lwm2mEndpoint": "%LWM2M_ENDPOINT%",
                "lwm2mPSKIdentity": "%LWM2M_PSK_IDENITY%",
                "lwm2mPSKValue": "%LWM2M_PSK_VALUE%",
                "lwm2mPSKValueHex": "%LWM2M_PSK_VALUE_HEX%",
                "remoteNetwork": null,
                "deviceId": "deviceID",
                "registryUrlExternal": "10.17.3.103",
                "registryUserName": "dev-deviceID",
                "registryPassword": "password",
                "licensingHostId": "host"
            },
            "modelId": "6vuut3v2qm36fv7smna42ckj3",
            "createdAt": 1691103970000,
            "hasParent": false,
            "hasChildren": true,
            "parentId": null,
            "runtimeStatus": {
                "lwm2m_last_update": null,
                "wg_online": "true",
                "wg_client_address": "192.168.127.4/32",
                "mqtt_client_address": null,
                "poll_status": null,
                "lwm2m_client_address": null,
                "wg_registration_date": "1695406968000",
                "wg_last_seen_date": "1696877343000",
                "lwm2m_registration_date": null
            },
            "activationCode": "V9ZUA-DY6FX-CFC7V-JJY7D-V3OVF",
            "remoteId": "19a0049b29",
            "remoteAccessStatus": null,
            "remoteAccessUrls": null,
            "deleted": false,
            "nextPollTime": null,
            "lastPollTime": null,
            "entryID": 33,
            "instanceId": 0,
            "imageURL": null,
            "imagePreviewURL": null,
            "hostname": "litmus-edge-94c6911b9c77",
            "hasImage": false,
            "lastKnownIpData": null,
            "lastSeenDateData": null,
            "lastKnownIpCtl": "192.168.127.4/32",
            "lastSeenDateCtl": 1696877343000,
            "activationStatus": {
                "status": "ACTIVATED",
                "details": "Device is activated",
                "activationCode": "V9ZUA-DY6FX-CFC7V-JJY7D-V3OVF",
                "unactivated": false,
                "deactivated": false,
                "activated": true
            },
            "passwordPolicyId": "default_password_policy",
            "capabilities": {
                "EVENTS": {
                    "name": "EVENTS",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                },
                "SERVICES": {
                    "name": "SERVICES",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                },
                "REMOTE_UI": {
                    "name": "REMOTE_UI",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                },
                "ACTIVATION_V1": {
                    "name": "ACTIVATION_V1",
                    "available": false,
                    "unavailabilityReason": "Activation 1.0 is not available for versions greater or equal to 3.0.0"
                },
                "METRICS": {
                    "name": "METRICS",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                },
                "MARKETPLACE": {
                    "name": "MARKETPLACE",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                },
                "DM_V2_API": {
                    "name": "DM_V2_API",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                },
                "LWM2M": {
                    "name": "LWM2M",
                    "available": false,
                    "unavailabilityReason": "LwM2M is not available"
                },
                "MARKETPLACE_SYNC": {
                    "name": "MARKETPLACE_SYNC",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                },
                "FLOATING_LICENSING": {
                    "name": "FLOATING_LICENSING",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                },
                "BACKUP": {
                    "name": "BACKUP",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                },
                "LICENSE_VERSION_V1": {
                    "name": "LICENSE_VERSION_V1",
                    "available": false,
                    "unavailabilityReason": "License API V1 is not available for versions equal to or greater than 3.2.0"
                },
                "MP_APP_CONTAINER_LOGS": {
                    "name": "MP_APP_CONTAINER_LOGS",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                },
                "LICENSE_VERSION_V2": {
                    "name": "LICENSE_VERSION_V2",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                },
                "PASSWORD_POLICY": {
                    "name": "PASSWORD_POLICY",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                },
                "TEMPLATE_EXPORT": {
                    "name": "TEMPLATE_EXPORT",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                },
                "WG_REMOTE": {
                    "name": "WG_REMOTE",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                },
                "TEMPLATE_APPLY": {
                    "name": "TEMPLATE_APPLY",
                    "available": true,
                    "unavailabilityReason": "Capability is available"
                }
            },
            "metaDeviceId": null,
            "apiKeyPresent": true,
            "metricsEnabled": true,
            "ctrlLastUpdate": 1696877343000,
            "runningInDocker": false,
            "ctrlRegistrationDate": 1695406968000,
            "ctrlClientAddress": "192.168.127.4/32",
            "ctrlInterfaceType": "WG",
            "online": true
        }
    ]
}
```

---

## Project Usage Data

**GET** `{{LEM_URL}}/api/v1/dashboard-gfm/{{project_id}}`

# Project Usage Data

Returns per-project DeviceHub-level usage: device totals + online counts, gateway-tag count, cloud-tag count, billable-tag count, and per-device cloud-connector rate time series. Used by the LEM project dashboard's traffic graph.
## Endpoint

```http
GET {{LEM_URL}}/api/v1/dashboard-gfm/{{project_id}}
```
## Authentication

HTTP Basic Auth. **Username** is your API token, **password** is empty. Tokens are managed under `System > Access Control > Tokens`.
## Response

`200 OK` -- `application/json`

| Field              | Type    | Description                                              |
|--------------------|---------|----------------------------------------------------------|
| `dhDevicesTotal`   | integer | Total DeviceHub devices.                                  |
| `dhDevicesOnline`  | integer | DeviceHub devices currently online.                       |
| `gatewayTags`      | integer | Total tags on the gateway.                                |
| `cloudTags`        | integer | Tags forwarded to cloud.                                  |
| `billableTags`     | integer | Tags counted for billing.                                 |
| `ccRateSec`        | object  | Map of `deviceId -> [{timestamp, count}]` rate samples.    |

## Errors

| HTTP status         | When it happens                                                                |
|---------------------|--------------------------------------------------------------------------------|
| `400 Bad Request`   | Missing or malformed query/body parameter.                                     |
| `401 Unauthorized`  | Missing or invalid credentials.                                                |
| `403 Forbidden`     | Token lacks permission for this operation.                                     |
| `404 Not Found`     | Target entity does not exist.                                                  |
| `5xx`               | Service is unreachable, restarting, or internally errored. Inspect device logs under `System > Support`. |

> **TLS note**: edge devices use a self-signed certificate by default. Either install the device CA in your client trust store or disable certificate verification when calling this endpoint directly.


### Response

**Status**: 200 OK

```json
{
    "dhDevicesTotal": 8,
    "dhDevicesOnline": 5,
    "gatewayTags": 16,
    "cloudTags": 0,
    "billableTags": 0,
    "ccRateSec": {
        "1a5wiavluwxuhwai5leb1v0hc": [
            {
                "timestamp": 1696873980,
                "count": 0.54545456
            },
            {
                "timestamp": 1696873994,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874008,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874022,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874036,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874050,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874064,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874078,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874092,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874106,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874120,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874134,
                "count": 0.54545456
            },
            {
                "timestamp": 1696874148,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874162,
                "count": 0.54545456
            },
            {
                "timestamp": 1696874176,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874190,
                "count": 0.54545456
            },
            {
                "timestamp": 1696874204,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874218,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874232,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874246,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874260,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874274,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874288,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874302,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874316,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874330,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874344,
                "count": 0.54545456
            },
            {
                "timestamp": 1696874358,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874372,
                "count": 0.54545456
            },
            {
                "timestamp": 1696874386,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874400,
                "count": 0.54545456
            },
            {
                "timestamp": 1696874414,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874428,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874442,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874456,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874470,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874484,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874498,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874512,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874526,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874540,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874554,
                "count": 0.54545456
            },
            {
                "timestamp": 1696874568,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874582,
                "count": 0.54545456
            },
            {
                "timestamp": 1696874596,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874610,
                "count": 0.54545456
            },
            {
                "timestamp": 1696874624,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874638,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874652,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874666,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874680,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874694,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874708,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874722,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874736,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874750,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874764,
                "count": 0.54545456
            },
            {
                "timestamp": 1696874778,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874792,
                "count": 0.54545456
            },
            {
                "timestamp": 1696874806,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874820,
                "count": 0.54545456
            },
            {
                "timestamp": 1696874834,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874848,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874862,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874876,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874890,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874904,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874918,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874932,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874946,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874960,
                "count": 1.0909091
            },
            {
                "timestamp": 1696874974,
                "count": 0.54545456
            },
            {
                "timestamp": 1696874988,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875002,
                "count": 0.54545456
            },
            {
                "timestamp": 1696875016,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875030,
                "count": 0.54545456
            },
            {
                "timestamp": 1696875044,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875058,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875072,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875086,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875100,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875114,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875128,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875142,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875156,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875170,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875184,
                "count": 0.54545456
            },
            {
                "timestamp": 1696875198,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875212,
                "count": 0.54545456
            },
            {
                "timestamp": 1696875226,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875240,
                "count": 0.54545456
            },
            {
                "timestamp": 1696875254,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875268,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875282,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875296,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875310,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875324,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875338,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875352,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875366,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875380,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875394,
                "count": 0.54545456
            },
            {
                "timestamp": 1696875408,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875422,
                "count": 0.54545456
            },
            {
                "timestamp": 1696875436,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875450,
                "count": 0.54545456
            },
            {
                "timestamp": 1696875464,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875478,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875492,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875506,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875520,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875534,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875548,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875562,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875576,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875590,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875604,
                "count": 0.54545456
            },
            {
                "timestamp": 1696875618,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875632,
                "count": 0.54545456
            },
            {
                "timestamp": 1696875646,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875660,
                "count": 0.54545456
            },
            {
                "timestamp": 1696875674,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875688,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875702,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875716,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875730,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875744,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875758,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875772,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875786,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875800,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875814,
                "count": 0.54545456
            },
            {
                "timestamp": 1696875828,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875842,
                "count": 0.54545456
            },
            {
                "timestamp": 1696875856,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875870,
                "count": 0.54545456
            },
            {
                "timestamp": 1696875884,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875898,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875912,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875926,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875940,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875954,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875968,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875982,
                "count": 1.0909091
            },
            {
                "timestamp": 1696875996,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876010,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876024,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876038,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876052,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876066,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876080,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876094,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876108,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876122,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876136,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876150,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876164,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876178,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876192,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876206,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876220,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876234,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876248,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876262,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876276,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876290,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876304,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876318,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876332,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876346,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876360,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876374,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876388,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876402,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876416,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876430,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876444,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876458,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876472,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876486,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876500,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876514,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876528,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876542,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876556,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876570,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876584,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876598,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876612,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876626,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876640,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876654,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876668,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876682,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876696,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876710,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876724,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876738,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876752,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876766,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876780,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876794,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876808,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876822,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876836,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876850,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876864,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876878,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876892,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876906,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876920,
                "count": 0.54545456
            },
            {
                "timestamp": 1696876934,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876948,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876962,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876976,
                "count": 1.0909091
            },
            {
                "timestamp": 1696876990,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877004,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877018,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877032,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877046,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877060,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877074,
                "count": 0.54545456
            },
            {
                "timestamp": 1696877088,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877102,
                "count": 0.54545456
            },
            {
                "timestamp": 1696877116,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877130,
                "count": 0.54545456
            },
            {
                "timestamp": 1696877144,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877158,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877172,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877186,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877200,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877214,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877228,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877242,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877256,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877270,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877284,
                "count": 0.54545456
            },
            {
                "timestamp": 1696877298,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877312,
                "count": 0.54545456
            },
            {
                "timestamp": 1696877326,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877340,
                "count": 0.54545456
            },
            {
                "timestamp": 1696877354,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877368,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877382,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877396,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877410,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877424,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877438,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877452,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877466,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877480,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877494,
                "count": 0.54545456
            },
            {
                "timestamp": 1696877508,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877522,
                "count": 0.54545456
            },
            {
                "timestamp": 1696877536,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877550,
                "count": 0.54545456
            },
            {
                "timestamp": 1696877564,
                "count": 1.0909091
            },
            {
                "timestamp": 1696877578,
                "count": 1.0909091
            }
        ]
    },
    "ccRateSecMax": 1.0909091,
    "ccBufferSizeBytes": {
        "1a5wiavluwxuhwai5leb1v0hc": [
            {
                "timestamp": 1696873980,
                "size": 26214400
            },
            {
                "timestamp": 1696873994,
                "size": 26214400
            },
            {
                "timestamp": 1696874008,
                "size": 26214400
            },
            {
                "timestamp": 1696874022,
                "size": 26214400
            },
            {
                "timestamp": 1696874036,
                "size": 26214400
            },
            {
                "timestamp": 1696874050,
                "size": 26214400
            },
            {
                "timestamp": 1696874064,
                "size": 26214400
            },
            {
                "timestamp": 1696874078,
                "size": 26214400
            },
            {
                "timestamp": 1696874092,
                "size": 26214400
            },
            {
                "timestamp": 1696874106,
                "size": 26214400
            },
            {
                "timestamp": 1696874120,
                "size": 26214400
            },
            {
                "timestamp": 1696874134,
                "size": 26214400
            },
            {
                "timestamp": 1696874148,
                "size": 26214400
            },
            {
                "timestamp": 1696874162,
                "size": 26214400
            },
            {
                "timestamp": 1696874176,
                "size": 26214400
            },
            {
                "timestamp": 1696874190,
                "size": 26214400
            },
            {
                "timestamp": 1696874204,
                "size": 26214400
            },
            {
                "timestamp": 1696874218,
                "size": 26214400
            },
            {
                "timestamp": 1696874232,
                "size": 26214400
            },
            {
                "timestamp": 1696874246,
                "size": 26214400
            },
            {
                "timestamp": 1696874260,
                "size": 26214400
            },
            {
                "timestamp": 1696874274,
                "size": 26214400
            },
            {
                "timestamp": 1696874288,
                "size": 26214400
            },
            {
                "timestamp": 1696874302,
                "size": 26214400
            },
            {
                "timestamp": 1696874316,
                "size": 26214400
            },
            {
                "timestamp": 1696874330,
                "size": 26214400
            },
            {
                "timestamp": 1696874344,
                "size": 26214400
            },
            {
                "timestamp": 1696874358,
                "size": 26214400
            },
            {
                "timestamp": 1696874372,
                "size": 26214400
            },
            {
                "timestamp": 1696874386,
                "size": 26214400
            },
            {
                "timestamp": 1696874400,
                "size": 26214400
            },
            {
                "timestamp": 1696874414,
                "size": 26214400
            },
            {
                "timestamp": 1696874428,
                "size": 26214400
            },
            {
                "timestamp": 1696874442,
                "size": 26214400
            },
            {
                "timestamp": 1696874456,
                "size": 26214400
            },
            {
                "timestamp": 1696874470,
                "size": 26214400
            },
            {
                "timestamp": 1696874484,
                "size": 26214400
            },
            {
                "timestamp": 1696874498,
                "size": 26214400
            },
            {
                "timestamp": 1696874512,
                "size": 26214400
            },
            {
                "timestamp": 1696874526,
                "size": 26214400
            },
            {
                "timestamp": 1696874540,
                "size": 26214400
            },
            {
                "timestamp": 1696874554,
                "size": 26214400
            },
            {
                "timestamp": 1696874568,
                "size": 26214400
            },
            {
                "timestamp": 1696874582,
                "size": 26214400
            },
            {
                "timestamp": 1696874596,
                "size": 26214400
            },
            {
                "timestamp": 1696874610,
                "size": 26214400
            },
            {
                "timestamp": 1696874624,
                "size": 26214400
            },
            {
                "timestamp": 1696874638,
                "size": 26214400
            },
            {
                "timestamp": 1696874652,
                "size": 26214400
            },
            {
                "timestamp": 1696874666,
                "size": 26214400
            },
            {
                "timestamp": 1696874680,
                "size": 26214400
            },
            {
                "timestamp": 1696874694,
                "size": 26214400
            },
            {
                "timestamp": 1696874708,
                "size": 26214400
            },
            {
                "timestamp": 1696874722,
                "size": 26214400
            },
            {
                "timestamp": 1696874736,
                "size": 26214400
            },
            {
                "timestamp": 1696874750,
                "size": 26214400
            },
            {
                "timestamp": 1696874764,
                "size": 26214400
            },
            {
                "timestamp": 1696874778,
                "size": 26214400
            },
            {
                "timestamp": 1696874792,
                "size": 26214400
            },
            {
                "timestamp": 1696874806,
                "size": 26214400
            },
            {
                "timestamp": 1696874820,
                "size": 26214400
            },
            {
                "timestamp": 1696874834,
                "size": 26214400
            },
            {
                "timestamp": 1696874848,
                "size": 26214400
            },
            {
                "timestamp": 1696874862,
                "size": 26214400
            },
            {
                "timestamp": 1696874876,
                "size": 26214400
            },
            {
                "timestamp": 1696874890,
                "size": 26214400
            },
            {
                "timestamp": 1696874904,
                "size": 26214400
            },
            {
                "timestamp": 1696874918,
                "size": 26214400
            },
            {
                "timestamp": 1696874932,
                "size": 26214400
            },
            {
                "timestamp": 1696874946,
                "size": 26214400
            },
            {
                "timestamp": 1696874960,
                "size": 26214400
            },
            {
                "timestamp": 1696874974,
                "size": 26214400
            },
            {
                "timestamp": 1696874988,
                "size": 26214400
            },
            {
                "timestamp": 1696875002,
                "size": 26214400
            },
            {
                "timestamp": 1696875016,
                "size": 26214400
            },
            {
                "timestamp": 1696875030,
                "size": 26214400
            },
            {
                "timestamp": 1696875044,
                "size": 26214400
            },
            {
                "timestamp": 1696875058,
                "size": 26214400
            },
            {
                "timestamp": 1696875072,
                "size": 26214400
            },
            {
                "timestamp": 1696875086,
                "size": 26214400
            },
            {
                "timestamp": 1696875100,
                "size": 26214400
            },
            {
                "timestamp": 1696875114,
                "size": 26214400
            },
            {
                "timestamp": 1696875128,
                "size": 26214400
            },
            {
                "timestamp": 1696875142,
                "size": 26214400
            },
            {
                "timestamp": 1696875156,
                "size": 26214400
            },
            {
                "timestamp": 1696875170,
                "size": 26214400
            },
            {
                "timestamp": 1696875184,
                "size": 26214400
            },
            {
                "timestamp": 1696875198,
                "size": 26214400
            },
            {
                "timestamp": 1696875212,
                "size": 26214400
            },
            {
                "timestamp": 1696875226,
                "size": 26214400
            },
            {
                "timestamp": 1696875240,
                "size": 26214400
            },
            {
                "timestamp": 1696875254,
                "size": 26214400
            },
            {
                "timestamp": 1696875268,
                "size": 26214400
            },
            {
                "timestamp": 1696875282,
                "size": 26214400
            },
            {
                "timestamp": 1696875296,
                "size": 26214400
            },
            {
                "timestamp": 1696875310,
                "size": 26214400
            },
            {
                "timestamp": 1696875324,
                "size": 26214400
            },
            {
                "timestamp": 1696875338,
                "size": 26214400
            },
            {
                "timestamp": 1696875352,
                "size": 26214400
            },
            {
                "timestamp": 1696875366,
                "size": 26214400
            },
            {
                "timestamp": 1696875380,
                "size": 26214400
            },
            {
                "timestamp": 1696875394,
                "size": 26214400
            },
            {
                "timestamp": 1696875408,
                "size": 26214400
            },
            {
                "timestamp": 1696875422,
                "size": 26214400
            },
            {
                "timestamp": 1696875436,
                "size": 26214400
            },
            {
                "timestamp": 1696875450,
                "size": 26214400
            },
            {
                "timestamp": 1696875464,
                "size": 26214400
            },
            {
                "timestamp": 1696875478,
                "size": 26214400
            },
            {
                "timestamp": 1696875492,
                "size": 26214400
            },
            {
                "timestamp": 1696875506,
                "size": 26214400
            },
            {
                "timestamp": 1696875520,
                "size": 26214400
            },
            {
                "timestamp": 1696875534,
                "size": 26214400
            },
            {
                "timestamp": 1696875548,
                "size": 26214400
            },
            {
                "timestamp": 1696875562,
                "size": 26214400
            },
            {
                "timestamp": 1696875576,
                "size": 26214400
            },
            {
                "timestamp": 1696875590,
                "size": 26214400
            },
            {
                "timestamp": 1696875604,
                "size": 26214400
            },
            {
                "timestamp": 1696875618,
                "size": 26214400
            },
            {
                "timestamp": 1696875632,
                "size": 26214400
            },
            {
                "timestamp": 1696875646,
                "size": 26214400
            },
            {
                "timestamp": 1696875660,
                "size": 26214400
            },
            {
                "timestamp": 1696875674,
                "size": 26214400
            },
            {
                "timestamp": 1696875688,
                "size": 26214400
            },
            {
                "timestamp": 1696875702,
                "size": 26214400
            },
            {
                "timestamp": 1696875716,
                "size": 26214400
            },
            {
                "timestamp": 1696875730,
                "size": 26214400
            },
            {
                "timestamp": 1696875744,
                "size": 26214400
            },
            {
                "timestamp": 1696875758,
                "size": 26214400
            },
            {
                "timestamp": 1696875772,
                "size": 26214400
            },
            {
                "timestamp": 1696875786,
                "size": 26214400
            },
            {
                "timestamp": 1696875800,
                "size": 26214400
            },
            {
                "timestamp": 1696875814,
                "size": 26214400
            },
            {
                "timestamp": 1696875828,
                "size": 26214400
            },
            {
                "timestamp": 1696875842,
                "size": 26214400
            },
            {
                "timestamp": 1696875856,
                "size": 26214400
            },
            {
                "timestamp": 1696875870,
                "size": 26214400
            },
            {
                "timestamp": 1696875884,
                "size": 26214400
            },
            {
                "timestamp": 1696875898,
                "size": 26214400
            },
            {
                "timestamp": 1696875912,
                "size": 26214400
            },
            {
                "timestamp": 1696875926,
                "size": 26214400
            },
            {
                "timestamp": 1696875940,
                "size": 26214400
            },
            {
                "timestamp": 1696875954,
                "size": 26214400
            },
            {
                "timestamp": 1696875968,
                "size": 26214400
            },
            {
                "timestamp": 1696875982,
                "size": 26214400
            },
            {
                "timestamp": 1696875996,
                "size": 26214400
            },
            {
                "timestamp": 1696876010,
                "size": 26214400
            },
            {
                "timestamp": 1696876024,
                "size": 26214400
            },
            {
                "timestamp": 1696876038,
                "size": 26214400
            },
            {
                "timestamp": 1696876052,
                "size": 26214400
            },
            {
                "timestamp": 1696876066,
                "size": 26214400
            },
            {
                "timestamp": 1696876080,
                "size": 26214400
            },
            {
                "timestamp": 1696876094,
                "size": 26214400
            },
            {
                "timestamp": 1696876108,
                "size": 26214400
            },
            {
                "timestamp": 1696876122,
                "size": 26214400
            },
            {
                "timestamp": 1696876136,
                "size": 26214400
            },
            {
                "timestamp": 1696876150,
                "size": 26214400
            },
            {
                "timestamp": 1696876164,
                "size": 26214400
            },
            {
                "timestamp": 1696876178,
                "size": 26214400
            },
            {
                "timestamp": 1696876192,
                "size": 26214400
            },
            {
                "timestamp": 1696876206,
                "size": 26214400
            },
            {
                "timestamp": 1696876220,
                "size": 26214400
            },
            {
                "timestamp": 1696876234,
                "size": 26214400
            },
            {
                "timestamp": 1696876248,
                "size": 26214400
            },
            {
                "timestamp": 1696876262,
                "size": 26214400
            },
            {
                "timestamp": 1696876276,
                "size": 26214400
            },
            {
                "timestamp": 1696876290,
                "size": 26214400
            },
            {
                "timestamp": 1696876304,
                "size": 26214400
            },
            {
                "timestamp": 1696876318,
                "size": 26214400
            },
            {
                "timestamp": 1696876332,
                "size": 26214400
            },
            {
                "timestamp": 1696876346,
                "size": 26214400
            },
            {
                "timestamp": 1696876360,
                "size": 26214400
            },
            {
                "timestamp": 1696876374,
                "size": 26214400
            },
            {
                "timestamp": 1696876388,
                "size": 26214400
            },
            {
                "timestamp": 1696876402,
                "size": 26214400
            },
            {
                "timestamp": 1696876416,
                "size": 26214400
            },
            {
                "timestamp": 1696876430,
                "size": 26214400
            },
            {
                "timestamp": 1696876444,
                "size": 26214400
            },
            {
                "timestamp": 1696876458,
                "size": 26214400
            },
            {
                "timestamp": 1696876472,
                "size": 26214400
            },
            {
                "timestamp": 1696876486,
                "size": 26214400
            },
            {
                "timestamp": 1696876500,
                "size": 26214400
            },
            {
                "timestamp": 1696876514,
                "size": 26214400
            },
            {
                "timestamp": 1696876528,
                "size": 26214400
            },
            {
                "timestamp": 1696876542,
                "size": 26214400
            },
            {
                "timestamp": 1696876556,
                "size": 26214400
            },
            {
                "timestamp": 1696876570,
                "size": 26214400
            },
            {
                "timestamp": 1696876584,
                "size": 26214400
            },
            {
                "timestamp": 1696876598,
                "size": 26214400
            },
            {
                "timestamp": 1696876612,
                "size": 26214400
            },
            {
                "timestamp": 1696876626,
                "size": 26214400
            },
            {
                "timestamp": 1696876640,
                "size": 26214400
            },
            {
                "timestamp": 1696876654,
                "size": 26214400
            },
            {
                "timestamp": 1696876668,
                "size": 26214400
            },
            {
                "timestamp": 1696876682,
                "size": 26214400
            },
            {
                "timestamp": 1696876696,
                "size": 26214400
            },
            {
                "timestamp": 1696876710,
                "size": 26214400
            },
            {
                "timestamp": 1696876724,
                "size": 26214400
            },
            {
                "timestamp": 1696876738,
                "size": 26214400
            },
            {
                "timestamp": 1696876752,
                "size": 26214400
            },
            {
                "timestamp": 1696876766,
                "size": 26214400
            },
            {
                "timestamp": 1696876780,
                "size": 26214400
            },
            {
                "timestamp": 1696876794,
                "size": 26214400
            },
            {
                "timestamp": 1696876808,
                "size": 26214400
            },
            {
                "timestamp": 1696876822,
                "size": 26214400
            },
            {
                "timestamp": 1696876836,
                "size": 26214400
            },
            {
                "timestamp": 1696876850,
                "size": 26214400
            },
            {
                "timestamp": 1696876864,
                "size": 26214400
            },
            {
                "timestamp": 1696876878,
                "size": 26214400
            },
            {
                "timestamp": 1696876892,
                "size": 26214400
            },
            {
                "timestamp": 1696876906,
                "size": 26214400
            },
            {
                "timestamp": 1696876920,
                "size": 26214400
            },
            {
                "timestamp": 1696876934,
                "size": 26214400
            },
            {
                "timestamp": 1696876948,
                "size": 26214400
            },
            {
                "timestamp": 1696876962,
                "size": 26214400
            },
            {
                "timestamp": 1696876976,
                "size": 26214400
            },
            {
                "timestamp": 1696876990,
                "size": 26214400
            },
            {
                "timestamp": 1696877004,
                "size": 26214400
            },
            {
                "timestamp": 1696877018,
                "size": 26214400
            },
            {
                "timestamp": 1696877032,
                "size": 26214400
            },
            {
                "timestamp": 1696877046,
                "size": 26214400
            },
            {
                "timestamp": 1696877060,
                "size": 26214400
            },
            {
                "timestamp": 1696877074,
                "size": 26214400
            },
            {
                "timestamp": 1696877088,
                "size": 26214400
            },
            {
                "timestamp": 1696877102,
                "size": 26214400
            },
            {
                "timestamp": 1696877116,
                "size": 26214400
            },
            {
                "timestamp": 1696877130,
                "size": 26214400
            },
            {
                "timestamp": 1696877144,
                "size": 26214400
            },
            {
                "timestamp": 1696877158,
                "size": 26214400
            },
            {
                "timestamp": 1696877172,
                "size": 26214400
            },
            {
                "timestamp": 1696877186,
                "size": 26214400
            },
            {
                "timestamp": 1696877200,
                "size": 26214400
            },
            {
                "timestamp": 1696877214,
                "size": 26214400
            },
            {
                "timestamp": 1696877228,
                "size": 26214400
            },
            {
                "timestamp": 1696877242,
                "size": 26214400
            },
            {
                "timestamp": 1696877256,
                "size": 26214400
            },
            {
                "timestamp": 1696877270,
                "size": 26214400
            },
            {
                "timestamp": 1696877284,
                "size": 26214400
            },
            {
                "timestamp": 1696877298,
                "size": 26214400
            },
            {
                "timestamp": 1696877312,
                "size": 26214400
            },
            {
                "timestamp": 1696877326,
                "size": 26214400
            },
            {
                "timestamp": 1696877340,
                "size": 26214400
            },
            {
                "timestamp": 1696877354,
                "size": 26214400
            },
            {
                "timestamp": 1696877368,
                "size": 26214400
            },
            {
                "timestamp": 1696877382,
                "size": 26214400
            },
            {
                "timestamp": 1696877396,
                "size": 26214400
            },
            {
                "timestamp": 1696877410,
                "size": 26214400
            },
            {
                "timestamp": 1696877424,
                "size": 26214400
            },
            {
                "timestamp": 1696877438,
                "size": 26214400
            },
            {
                "timestamp": 1696877452,
                "size": 26214400
            },
            {
                "timestamp": 1696877466,
                "size": 26214400
            },
            {
                "timestamp": 1696877480,
                "size": 26214400
            },
            {
                "timestamp": 1696877494,
                "size": 26214400
            },
            {
                "timestamp": 1696877508,
                "size": 26214400
            },
            {
                "timestamp": 1696877522,
                "size": 26214400
            },
            {
                "timestamp": 1696877536,
                "size": 26214400
            },
            {
                "timestamp": 1696877550,
                "size": 26214400
            },
            {
                "timestamp": 1696877564,
                "size": 26214400
            },
            {
                "timestamp": 1696877578,
                "size": 26214400
            }
        ]
    },
    "ccBufferSizeBytesMax": 26214400,
    "tagsProcessedRate": 981.8182,
    "tagsFailedRate": 57.81818,
    "tagsProcessedRateRange": {
        "1a5wiavluwxuhwai5leb1v0hc": [
            {
                "timestamp": 1696873980,
                "rate": 490.9091
            },
            {
                "timestamp": 1696873994,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874008,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874022,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874036,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874050,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874064,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874078,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874092,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874106,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874120,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874134,
                "rate": 490.9091
            },
            {
                "timestamp": 1696874148,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874162,
                "rate": 490.9091
            },
            {
                "timestamp": 1696874176,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874190,
                "rate": 490.9091
            },
            {
                "timestamp": 1696874204,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874218,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874232,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874246,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874260,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874274,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874288,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874302,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874316,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874330,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874344,
                "rate": 490.9091
            },
            {
                "timestamp": 1696874358,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874372,
                "rate": 490.9091
            },
            {
                "timestamp": 1696874386,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874400,
                "rate": 490.9091
            },
            {
                "timestamp": 1696874414,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874428,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874442,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874456,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874470,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874484,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874498,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874512,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874526,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874540,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874554,
                "rate": 490.9091
            },
            {
                "timestamp": 1696874568,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874582,
                "rate": 490.9091
            },
            {
                "timestamp": 1696874596,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874610,
                "rate": 490.9091
            },
            {
                "timestamp": 1696874624,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874638,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874652,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874666,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874680,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874694,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874708,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874722,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874736,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874750,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874764,
                "rate": 490.9091
            },
            {
                "timestamp": 1696874778,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874792,
                "rate": 490.9091
            },
            {
                "timestamp": 1696874806,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874820,
                "rate": 490.9091
            },
            {
                "timestamp": 1696874834,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874848,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874862,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874876,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874890,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874904,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874918,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874932,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874946,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874960,
                "rate": 981.8182
            },
            {
                "timestamp": 1696874974,
                "rate": 490.9091
            },
            {
                "timestamp": 1696874988,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875002,
                "rate": 490.9091
            },
            {
                "timestamp": 1696875016,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875030,
                "rate": 490.9091
            },
            {
                "timestamp": 1696875044,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875058,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875072,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875086,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875100,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875114,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875128,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875142,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875156,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875170,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875184,
                "rate": 490.9091
            },
            {
                "timestamp": 1696875198,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875212,
                "rate": 490.9091
            },
            {
                "timestamp": 1696875226,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875240,
                "rate": 490.9091
            },
            {
                "timestamp": 1696875254,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875268,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875282,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875296,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875310,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875324,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875338,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875352,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875366,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875380,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875394,
                "rate": 490.9091
            },
            {
                "timestamp": 1696875408,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875422,
                "rate": 490.9091
            },
            {
                "timestamp": 1696875436,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875450,
                "rate": 490.9091
            },
            {
                "timestamp": 1696875464,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875478,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875492,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875506,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875520,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875534,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875548,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875562,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875576,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875590,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875604,
                "rate": 490.9091
            },
            {
                "timestamp": 1696875618,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875632,
                "rate": 490.9091
            },
            {
                "timestamp": 1696875646,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875660,
                "rate": 490.9091
            },
            {
                "timestamp": 1696875674,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875688,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875702,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875716,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875730,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875744,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875758,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875772,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875786,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875800,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875814,
                "rate": 490.9091
            },
            {
                "timestamp": 1696875828,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875842,
                "rate": 490.9091
            },
            {
                "timestamp": 1696875856,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875870,
                "rate": 490.9091
            },
            {
                "timestamp": 1696875884,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875898,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875912,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875926,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875940,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875954,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875968,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875982,
                "rate": 981.8182
            },
            {
                "timestamp": 1696875996,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876010,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876024,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876038,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876052,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876066,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876080,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876094,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876108,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876122,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876136,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876150,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876164,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876178,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876192,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876206,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876220,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876234,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876248,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876262,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876276,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876290,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876304,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876318,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876332,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876346,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876360,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876374,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876388,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876402,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876416,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876430,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876444,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876458,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876472,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876486,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876500,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876514,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876528,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876542,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876556,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876570,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876584,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876598,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876612,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876626,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876640,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876654,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876668,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876682,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876696,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876710,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876724,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876738,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876752,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876766,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876780,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876794,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876808,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876822,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876836,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876850,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876864,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876878,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876892,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876906,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876920,
                "rate": 490.9091
            },
            {
                "timestamp": 1696876934,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876948,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876962,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876976,
                "rate": 981.8182
            },
            {
                "timestamp": 1696876990,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877004,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877018,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877032,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877046,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877060,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877074,
                "rate": 490.9091
            },
            {
                "timestamp": 1696877088,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877102,
                "rate": 490.9091
            },
            {
                "timestamp": 1696877116,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877130,
                "rate": 490.9091
            },
            {
                "timestamp": 1696877144,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877158,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877172,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877186,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877200,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877214,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877228,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877242,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877256,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877270,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877284,
                "rate": 490.9091
            },
            {
                "timestamp": 1696877298,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877312,
                "rate": 490.9091
            },
            {
                "timestamp": 1696877326,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877340,
                "rate": 490.9091
            },
            {
                "timestamp": 1696877354,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877368,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877382,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877396,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877410,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877424,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877438,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877452,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877466,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877480,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877494,
                "rate": 490.9091
            },
            {
                "timestamp": 1696877508,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877522,
                "rate": 490.9091
            },
            {
                "timestamp": 1696877536,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877550,
                "rate": 490.9091
            },
            {
                "timestamp": 1696877564,
                "rate": 981.8182
            },
            {
                "timestamp": 1696877578,
                "rate": 981.8182
            }
        ]
    },
    "tagsFailedRateRange": {
        "1a5wiavluwxuhwai5leb1v0hc": [
            {
                "timestamp": 1696873980,
                "rate": 28.363636
            },
            {
                "timestamp": 1696873994,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874008,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874022,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874036,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874050,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874064,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874078,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874092,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874106,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874120,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874134,
                "rate": 29.454546
            },
            {
                "timestamp": 1696874148,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874162,
                "rate": 28.363636
            },
            {
                "timestamp": 1696874176,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874190,
                "rate": 28.363636
            },
            {
                "timestamp": 1696874204,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874218,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874232,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874246,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874260,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874274,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874288,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874302,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874316,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874330,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874344,
                "rate": 28.363636
            },
            {
                "timestamp": 1696874358,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874372,
                "rate": 29.454546
            },
            {
                "timestamp": 1696874386,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874400,
                "rate": 28.363636
            },
            {
                "timestamp": 1696874414,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874428,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874442,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874456,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874470,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874484,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874498,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874512,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874526,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874540,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874554,
                "rate": 28.363636
            },
            {
                "timestamp": 1696874568,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874582,
                "rate": 28.363636
            },
            {
                "timestamp": 1696874596,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874610,
                "rate": 29.454546
            },
            {
                "timestamp": 1696874624,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874638,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874652,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874666,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874680,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874694,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874708,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874722,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874736,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874750,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874764,
                "rate": 28.363636
            },
            {
                "timestamp": 1696874778,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874792,
                "rate": 28.363636
            },
            {
                "timestamp": 1696874806,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874820,
                "rate": 28.363636
            },
            {
                "timestamp": 1696874834,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874848,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874862,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874876,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874890,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874904,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874918,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874932,
                "rate": 56.727272
            },
            {
                "timestamp": 1696874946,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874960,
                "rate": 57.81818
            },
            {
                "timestamp": 1696874974,
                "rate": 29.454546
            },
            {
                "timestamp": 1696874988,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875002,
                "rate": 28.363636
            },
            {
                "timestamp": 1696875016,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875030,
                "rate": 28.363636
            },
            {
                "timestamp": 1696875044,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875058,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875072,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875086,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875100,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875114,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875128,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875142,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875156,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875170,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875184,
                "rate": 28.363636
            },
            {
                "timestamp": 1696875198,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875212,
                "rate": 29.454546
            },
            {
                "timestamp": 1696875226,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875240,
                "rate": 28.363636
            },
            {
                "timestamp": 1696875254,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875268,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875282,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875296,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875310,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875324,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875338,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875352,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875366,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875380,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875394,
                "rate": 28.363636
            },
            {
                "timestamp": 1696875408,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875422,
                "rate": 28.363636
            },
            {
                "timestamp": 1696875436,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875450,
                "rate": 29.454546
            },
            {
                "timestamp": 1696875464,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875478,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875492,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875506,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875520,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875534,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875548,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875562,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875576,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875590,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875604,
                "rate": 28.363636
            },
            {
                "timestamp": 1696875618,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875632,
                "rate": 28.363636
            },
            {
                "timestamp": 1696875646,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875660,
                "rate": 28.363636
            },
            {
                "timestamp": 1696875674,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875688,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875702,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875716,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875730,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875744,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875758,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875772,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875786,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875800,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875814,
                "rate": 29.454546
            },
            {
                "timestamp": 1696875828,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875842,
                "rate": 28.363636
            },
            {
                "timestamp": 1696875856,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875870,
                "rate": 28.363636
            },
            {
                "timestamp": 1696875884,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875898,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875912,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875926,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875940,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875954,
                "rate": 57.81818
            },
            {
                "timestamp": 1696875968,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875982,
                "rate": 56.727272
            },
            {
                "timestamp": 1696875996,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876010,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876024,
                "rate": 28.363636
            },
            {
                "timestamp": 1696876038,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876052,
                "rate": 29.454546
            },
            {
                "timestamp": 1696876066,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876080,
                "rate": 28.363636
            },
            {
                "timestamp": 1696876094,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876108,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876122,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876136,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876150,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876164,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876178,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876192,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876206,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876220,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876234,
                "rate": 28.363636
            },
            {
                "timestamp": 1696876248,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876262,
                "rate": 28.363636
            },
            {
                "timestamp": 1696876276,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876290,
                "rate": 29.454546
            },
            {
                "timestamp": 1696876304,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876318,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876332,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876346,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876360,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876374,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876388,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876402,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876416,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876430,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876444,
                "rate": 28.363636
            },
            {
                "timestamp": 1696876458,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876472,
                "rate": 28.363636
            },
            {
                "timestamp": 1696876486,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876500,
                "rate": 28.363636
            },
            {
                "timestamp": 1696876514,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876528,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876542,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876556,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876570,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876584,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876598,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876612,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876626,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876640,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876654,
                "rate": 29.454546
            },
            {
                "timestamp": 1696876668,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876682,
                "rate": 28.363636
            },
            {
                "timestamp": 1696876696,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876710,
                "rate": 28.363636
            },
            {
                "timestamp": 1696876724,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876738,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876752,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876766,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876780,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876794,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876808,
                "rate": 55.636364
            },
            {
                "timestamp": 1696876822,
                "rate": 55.636364
            },
            {
                "timestamp": 1696876836,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876850,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876864,
                "rate": 29.454546
            },
            {
                "timestamp": 1696876878,
                "rate": 58.909092
            },
            {
                "timestamp": 1696876892,
                "rate": 29.454546
            },
            {
                "timestamp": 1696876906,
                "rate": 57.81818
            },
            {
                "timestamp": 1696876920,
                "rate": 28.363636
            },
            {
                "timestamp": 1696876934,
                "rate": 55.636364
            },
            {
                "timestamp": 1696876948,
                "rate": 55.636364
            },
            {
                "timestamp": 1696876962,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876976,
                "rate": 56.727272
            },
            {
                "timestamp": 1696876990,
                "rate": 58.909092
            },
            {
                "timestamp": 1696877004,
                "rate": 58.909092
            },
            {
                "timestamp": 1696877018,
                "rate": 57.81818
            },
            {
                "timestamp": 1696877032,
                "rate": 57.81818
            },
            {
                "timestamp": 1696877046,
                "rate": 55.636364
            },
            {
                "timestamp": 1696877060,
                "rate": 55.636364
            },
            {
                "timestamp": 1696877074,
                "rate": 27.272728
            },
            {
                "timestamp": 1696877088,
                "rate": 56.727272
            },
            {
                "timestamp": 1696877102,
                "rate": 29.454546
            },
            {
                "timestamp": 1696877116,
                "rate": 58.909092
            },
            {
                "timestamp": 1696877130,
                "rate": 29.454546
            },
            {
                "timestamp": 1696877144,
                "rate": 57.81818
            },
            {
                "timestamp": 1696877158,
                "rate": 57.81818
            },
            {
                "timestamp": 1696877172,
                "rate": 55.636364
            },
            {
                "timestamp": 1696877186,
                "rate": 55.636364
            },
            {
                "timestamp": 1696877200,
                "rate": 56.727272
            },
            {
                "timestamp": 1696877214,
                "rate": 56.727272
            },
            {
                "timestamp": 1696877228,
                "rate": 58.909092
            },
            {
                "timestamp": 1696877242,
                "rate": 58.909092
            },
            {
                "timestamp": 1696877256,
                "rate": 57.81818
            },
            {
                "timestamp": 1696877270,
                "rate": 57.81818
            },
            {
                "timestamp": 1696877284,
                "rate": 28.363636
            },
            {
                "timestamp": 1696877298,
                "rate": 55.636364
            },
            {
                "timestamp": 1696877312,
                "rate": 27.272728
            },
            {
                "timestamp": 1696877326,
                "rate": 56.727272
            },
            {
                "timestamp": 1696877340,
                "rate": 29.454546
            },
            {
                "timestamp": 1696877354,
                "rate": 58.909092
            },
            {
                "timestamp": 1696877368,
                "rate": 58.909092
            },
            {
                "timestamp": 1696877382,
                "rate": 57.81818
            },
            {
                "timestamp": 1696877396,
                "rate": 57.81818
            },
            {
                "timestamp": 1696877410,
                "rate": 55.636364
            },
            {
                "timestamp": 1696877424,
                "rate": 55.636364
            },
            {
                "timestamp": 1696877438,
                "rate": 56.727272
            },
            {
                "timestamp": 1696877452,
                "rate": 56.727272
            },
            {
                "timestamp": 1696877466,
                "rate": 58.909092
            },
            {
                "timestamp": 1696877480,
                "rate": 58.909092
            },
            {
                "timestamp": 1696877494,
                "rate": 29.454546
            },
            {
                "timestamp": 1696877508,
                "rate": 57.81818
            },
            {
                "timestamp": 1696877522,
                "rate": 28.363636
            },
            {
                "timestamp": 1696877536,
                "rate": 55.636364
            },
            {
                "timestamp": 1696877550,
                "rate": 27.272728
            },
            {
                "timestamp": 1696877564,
                "rate": 56.727272
            },
            {
                "timestamp": 1696877578,
                "rate": 56.727272
            }
        ]
    }
}
```

---

## LE Devices Metrics

**POST** `{{LEM_URL}}/api/v1/device/metrics/{{project_id}}`

# LE Devices Metrics

Returns the latest **host-level metrics** for every device in the project: CPU, memory, NATS in-message count, storage, network rates. Same payload shape as `Edge Devices > Device Details > Device Metrics` (single).
## Endpoint

```http
POST {{LEM_URL}}/api/v1/device/metrics/{{project_id}}
```
## Authentication

HTTP Basic Auth. **Username** is your API token, **password** is empty. Tokens are managed under `System > Access Control > Tokens`.
## Request body

```json
[]
```

Empty array filters to every device. Pass device IDs in the array to scope down.

## Response

`200 OK` -- `application/json`. Array of metric records. Each record carries the device identification plus a `node` object with `cpuIdle`, `cpuSystem`, `cpuUser`, `memoryUsed`, `natsInMsgs`, `storageAvailable`, `storageSize`, `storageUsed`, `networkReceiveRate`, `networkTransmitRate`.

## Errors

| HTTP status         | When it happens                                                                |
|---------------------|--------------------------------------------------------------------------------|
| `400 Bad Request`   | Missing or malformed query/body parameter.                                     |
| `401 Unauthorized`  | Missing or invalid credentials.                                                |
| `403 Forbidden`     | Token lacks permission for this operation.                                     |
| `404 Not Found`     | Target entity does not exist.                                                  |
| `5xx`               | Service is unreachable, restarting, or internally errored. Inspect device logs under `System > Support`. |

> **TLS note**: edge devices use a self-signed certificate by default. Either install the device CA in your client trust store or disable certificate verification when calling this endpoint directly.


### Request Body

```json
[]
```

### Response

**Status**: 200 OK

```json
[
    {
        "projectId": "462j1mq70mph31wa100t1yuxa",
        "deviceId": "1a5wiavluwxuhwai5leb1v0hc",
        "hostname": "litmus-edge-94c6911b9c77",
        "friendlyName": "Litmus Edge (94:c6:91:1b:9c:77)- SJ office sensor",
        "node": {
            "cpuIdle": 89.74094,
            "cpuSystem": 3.9378238,
            "cpuUser": 6.3212433,
            "memoryUsed": 26.798424,
            "natsInMsgs": 48258110,
            "storageAvailable": 123488026624,
            "storageSize": 237605920768,
            "storageUsed": 112849539072,
            "networkReceiveRate": 7146.4546,
            "networkTransmitRate": 6836.291
        },
        "dh": {
            "devicesCount": 8,
            "devices": [
                {
                    "id": "41FBD12E-C6CD-4539-AD50-336D278B207C",
                    "name": "Rack_2b_M258",
                    "status": 1,
                    "tagsCount": 1,
                    "tagsProcessedRate": 65.454544,
                    "tagsFailedRate": 0
                },
                {
                    "id": "474E42B0-C7B8-42DE-8DE2-FFED7030A563",
                    "name": "DTA_windows_tia",
                    "status": 1,
                    "tagsCount": 0,
                    "tagsProcessedRate": 0,
                    "tagsFailedRate": 0
                },
                {
                    "id": "4C4B9CCC-F5E4-4C2E-A4C0-EAF5C32B0D1A",
                    "name": "AB_CLX_API_testing",
                    "status": 0,
                    "tagsCount": 1,
                    "tagsProcessedRate": 0,
                    "tagsFailedRate": 57.81818
                },
                {
                    "id": "779F42F3-54FC-4A87-B9A6-CD39CFA4A97D",
                    "name": "Simulator2",
                    "status": 1,
                    "tagsCount": 4,
                    "tagsProcessedRate": 261.81818,
                    "tagsFailedRate": 0
                },
                {
                    "id": "89C52E9A-0901-4D8D-B842-7B533F64E1B7",
                    "name": "ClassificationSimulator",
                    "status": 1,
                    "tagsCount": 8,
                    "tagsProcessedRate": 523.63635,
                    "tagsFailedRate": 0
                },
                {
                    "id": "BAFD349E-21B6-408A-AE2F-B9C682912571",
                    "name": "Boiler",
                    "status": 0,
                    "tagsCount": 0,
                    "tagsProcessedRate": 0,
                    "tagsFailedRate": 0
                },
                {
                    "id": "CDC283FB-72E2-42DF-A587-4D6299D70C9A",
                    "name": "sim1",
                    "status": 1,
                    "tagsCount": 2,
                    "tagsProcessedRate": 130.90909,
                    "tagsFailedRate": 0
                },
                {
                    "id": "EEF5EE7F-54C7-415A-B1C7-4F9386112DEB",
                    "name": "D14_Boiler_Power_PAC4200",
                    "status": 0,
                    "tagsCount": 0,
                    "tagsProcessedRate": 0,
                    "tagsFailedRate": 0
                }
            ]
        },
        "cc": {
            "connectorsCount": 3,
            "connectors": [
                {
                    "id": "51370ca3-dc8f-497f-bf91-3b1fba694b4f",
                    "name": "ClarifyIOssl",
                    "status": 1,
                    "rate": 65.454544,
                    "bufferSize": 26214400
                },
                {
                    "id": "aab5e88a-8f02-4ac6-992b-29ca6dc7e1f4",
                    "name": "default-ssl",
                    "status": 0,
                    "rate": 0,
                    "bufferSize": 0
                },
                {
                    "id": "b191617a-8cb8-454f-9091-1e5e31448fb7",
                    "name": "data-rate-test",
                    "status": 0,
                    "rate": 0,
                    "bufferSize": 0
                }
            ]
        }
    }
]
```

---

## Project Real time Alerts

**GET** `{{LEM_URL}}/api/v1/dashboard/realtime/alerts/{{project_id}}`

# Project Real time Alerts

Returns the live alert feed for the project. Each item is an alert + the originating incident with severity, scope, status (`PROBLEM` / `RESOLVED`), and message context.
## Endpoint

```http
GET {{LEM_URL}}/api/v1/dashboard/realtime/alerts/{{project_id}}
```
## Authentication

HTTP Basic Auth. **Username** is your API token, **password** is empty. Tokens are managed under `System > Access Control > Tokens`.
## Response

`200 OK` -- `application/json`. Array of alert objects, each with `timestamp`, `description`, `status`, `severity`, `scopeType` (`USER` / `SYSTEM`), and a nested `incident` record.

## Errors

| HTTP status         | When it happens                                                                |
|---------------------|--------------------------------------------------------------------------------|
| `400 Bad Request`   | Missing or malformed query/body parameter.                                     |
| `401 Unauthorized`  | Missing or invalid credentials.                                                |
| `403 Forbidden`     | Token lacks permission for this operation.                                     |
| `404 Not Found`     | Target entity does not exist.                                                  |
| `5xx`               | Service is unreachable, restarting, or internally errored. Inspect device logs under `System > Support`. |

> **TLS note**: edge devices use a self-signed certificate by default. Either install the device CA in your client trust store or disable certificate verification when calling this endpoint directly.


### Response

**Status**: 200 OK

```json
[
    {
        "timestamp": 0,
        "context": "string",
        "contextId": "string",
        "description": "string",
        "status": "PROBLEM",
        "severity": "LOW",
        "duration": 0,
        "scopeType": "USER",
        "incident": {
            "id": "string",
            "triggerId": "string",
            "startedAt": "2019-08-24T14:15:22Z",
            "resolvedAt": "2019-08-24T14:15:22Z",
            "deviceId": "string",
            "severity": 0,
            "showOnDashboard": true,
            "scopeType": "USER",
            "subject": "string",
            "message": "string",
            "hostname": "string"
        }
    }
]
```

---

## System Time

**GET** `{{LEM_URL}}/api/v1/system/time`

# System Time

Returns the LEM server's wall-clock time, ISO-8601 string, and uptime in milliseconds. Useful for clock-skew diagnostics.
## Endpoint

```http
GET {{LEM_URL}}/api/v1/system/time
```
## Authentication

HTTP Basic Auth. **Username** is your API token, **password** is empty. Tokens are managed under `System > Access Control > Tokens`.
## Response

```json
{
  "time": 1696878136710,
  "timeStr": "2023-10-09T19:02:16.710Z[UTC]",
  "uptimeMs": 5351551530
}
```

## Errors

| HTTP status         | When it happens                                                                |
|---------------------|--------------------------------------------------------------------------------|
| `400 Bad Request`   | Missing or malformed query/body parameter.                                     |
| `401 Unauthorized`  | Missing or invalid credentials.                                                |
| `403 Forbidden`     | Token lacks permission for this operation.                                     |
| `404 Not Found`     | Target entity does not exist.                                                  |
| `5xx`               | Service is unreachable, restarting, or internally errored. Inspect device logs under `System > Support`. |

> **TLS note**: edge devices use a self-signed certificate by default. Either install the device CA in your client trust store or disable certificate verification when calling this endpoint directly.


### Response

**Status**: 200 OK

```json
{
    "time": 1696878136710,
    "timeStr": "2023-10-09T19:02:16.710Z[UTC]",
    "uptimeMs": 5351551530
}
```

---

## Get Notifications

**GET** `{{LEM_URL}}/api/v1/system/notifications`

# Get Notifications

Returns LEM-level system notifications: license / device-limit warnings and disk-space alerts. Status codes are `S` (success / OK) or other codes when issues are present.
## Endpoint

```http
GET {{LEM_URL}}/api/v1/system/notifications
```
## Authentication

HTTP Basic Auth. **Username** is your API token, **password** is empty. Tokens are managed under `System > Access Control > Tokens`.
## Response

`200 OK` -- `application/json`. Array of notification objects.

| Field                | Type    | Description                                              |
|----------------------|---------|----------------------------------------------------------|
| `type`               | string  | `license-device-limits`, `disk-space`, ...                |
| `status`             | string  | `S` healthy; other codes indicate issues.                 |
| `message`            | string  | Human-readable message (when not healthy).                |
| `messageDetails`     | string  | Extra context.                                            |
| (type-specific fields) | mixed | E.g. `dir`, `totalSpace`, `freeSpace` for disk-space; `maxDeviceCount`, `currentDeviceCount` for license. |

## Errors

| HTTP status         | When it happens                                                                |
|---------------------|--------------------------------------------------------------------------------|
| `400 Bad Request`   | Missing or malformed query/body parameter.                                     |
| `401 Unauthorized`  | Missing or invalid credentials.                                                |
| `403 Forbidden`     | Token lacks permission for this operation.                                     |
| `404 Not Found`     | Target entity does not exist.                                                  |
| `5xx`               | Service is unreachable, restarting, or internally errored. Inspect device logs under `System > Support`. |

> **TLS note**: edge devices use a self-signed certificate by default. Either install the device CA in your client trust store or disable certificate verification when calling this endpoint directly.


### Response

**Status**: 200 OK

```Text
[
    {
        "type": "license-device-limits",
        "status": "S",
        "message": null,
        "messageDetails": null,
        "maxDeviceCount": 0,
        "currentDeviceCount": 0
    },
    {
        "type": "disk-space",
        "status": "S",
        "message": null,
        "messageDetails": null,
        "dir": "/opt/lem",
        "totalSpace": 32196526080,
        "freeSpace": 22678790144
    },
    {
        "type": "disk-space",
        "status": "S",
        "message": null,
        "messageDetails": null,
        "dir": "/var/lib/lem",
        "totalSpace": 83710967808,
        "freeSpace": 74462863360
    },
    {
        "type": "incoming-data-paused",
        "status": "S",
        "message": null,
        "messageDetails": null
    }
]
```

---

