Metrics Get Edge Dest Series

Metrics Get Edge Dest Series

Gets flow metric time series data for the specified time interval by destination. On success, this method returns an array of flow data in which each entry corresponds to a distinct traffic destination. In the request body, the id and edgeId property names are interchangeable. The enterpriseId property is required when this method is invoked in the operator context.

Privileges required:

READ EDGE

VIEW_FLOW_STATS undefined

Request
URI
POST
https://{api_host}/portal/rest/metrics/getEdgeDestSeries
COPY
Request Body

Show optional properties

{
    "interval": {
        "start": "string"
    }
}
{
    "id": 0,
    "edgeId": 0,
    "enterpriseId": 0,
    "interval": {
        "end": "string",
        "start": "string"
    },
    "sort": "basic_metric Object",
    "limit": 0,
    "attribute": "string",
    "destinations": [
        "string"
    ]
}
integer
id
Optional

id

integer
edgeId
Optional

edgeId

integer
enterpriseId
Optional

enterpriseId

interval
Required

interval

sort
Optional

sort

Possible values are : packetsRx, packetsTx, totalPackets, bytesRx, bytesTx, totalBytes,
integer
limit
Optional

limit

string
attribute
Optional

attribute

Possible values are : destDomain, destIp, destFQDN,
array of string
destinations
Optional

destinations

Responses
200

Request was successfully processed

[
    "metrics_get_edge_dest_series_result_item Object"
]

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

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

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"interval:"object"}' https://{api_host}/portal/rest/metrics/getEdgeDestSeries