Get Instance Uptime

Get Instance Uptime

Get a set of statistics that summarizes the connectivity of the specified VCD instancee from various sources.

Request
URI
GET
https://starfleet.api.eng.vmware.com//instances/{instanceId}/connections
COPY
Path Parameters
string
instanceId
Required

URN id of vCD instance

Query Parameters
integer
page
Optional

Page to fetch, The first page is 1, so the effective offset will be ((page - 1) * pageSize).

integer
limit
Optional

limit

string
sortBy
Optional

The name of field to sort by

string
sort
Optional

The direction of sort

Possible values are : asc, desc,

Responses
200

OK

Returns VcdConnectionStatistics of type(s) application/json
This response body class contains all of the following: Page , VcdInstanceStatistics_allOf
{
    "resultTotal": 0,
    "pageCount": 0,
    "page": 0,
    "pageSize": 0,
    "valueType": "string",
    "values": [
        {
            "id": "string",
            "instanceId": "string",
            "checkTime": "string",
            "durationSinceLastCheckInSec": "number",
            "unavailableInSec": "number",
            "source": "string",
            "internal": false,
            "responseTimeInMillis": "number",
            "reachable": false
        }
    ]
}