Get Inter Site Edge Node Statistics

Get Inter Site Edge Node Statistics

Returns RTEP to RTEP tunnel port statistics of the given edge node. It always returns realtime response.

Request
URI
GET
https://nsxmanager.your.domain/api/v1/transport-nodes/{edge-node-id}/inter-site/statistics
COPY
Path Parameters
string
edge-node-id
Required

edge-node-id


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns NodeInterSiteStatistics of type(s) application/json
{
    "last_update_timestamp": 0,
    "stats_per_site": [
        {
            "remote_site": {
                "is_valid": false,
                "target_display_name": "string",
                "target_id": "string",
                "target_type": "string"
            },
            "rx": {},
            "stats_per_tunnel": [
                {
                    "rx": {},
                    "tunnel_destination_address": "string",
                    "tunnel_source_address": "string",
                    "tx": {}
                }
            ],
            "tx": {}
        }
    ],
    "transport_node_id": "string"
}
integer As int64 As int64
last_update_timestamp
Optional

Timestamp when the remote tunnel port statistics was last updated.

array of object
stats_per_site
Optional

For every remote-site, it provides the aggregated statistics of all remote tunnels and statistics of individual remote tunnels between the given edge node and the remote site. The counts are from the time the tunnels were created.

string
transport_node_id
Optional

Edge node id whose statistics is being reported.


400
Returns BadRequest of type(s) application/json
Operation doesn't return any data structure

403
Returns Forbidden of type(s) application/json
Operation doesn't return any data structure

404

Not Found

Operation doesn't return any data structure

412
Returns PreconditionFailed of type(s) application/json
Operation doesn't return any data structure

500
Returns InternalServerError of type(s) application/json
Operation doesn't return any data structure

503
Returns ServiceUnavailable of type(s) application/json
Operation doesn't return any data structure

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/api/v1/transport-nodes/{edge-node-id}/inter-site/statistics