Metrics Get Edge App Link Series

Metrics Get Edge App Link Series

Gets flow metric time series data for the specified time interval by link. On success, this method returns an array of flow data in which each entry corresponds to a link on the specified Edge. 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/getEdgeAppLinkSeries
COPY
Request Body

Show optional properties

{
    "id": 0,
    "interval": {
        "start": "string"
    }
}
{
    "id": 0,
    "enterpriseId": 0,
    "interval": {
        "end": "string",
        "start": "string"
    },
    "metrics": "basic_metrics Object",
    "links": [
        0
    ]
}
integer
id
Required

id

integer
enterpriseId
Optional

enterpriseId

interval
Required

interval

metrics
Optional

A list of metrics to report. When omitted, this method returns all available metrics.

array of integer
links
Optional

links

Responses
200

Request was successfully processed

[
    "metrics_get_edge_app_link_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 '{"id:"integer","interval:"object"}' https://{api_host}/portal/rest/metrics/getEdgeAppLinkSeries