Skip to main content

express_route_circuits_stats

Creates, updates, deletes, gets or lists an express_route_circuits_stats resource.

Overview

Nameexpress_route_circuits_stats
TypeResource
Idazure.network.express_route_circuits_stats

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns the resulting ExpressRouteCircuitStats resource.

NameDatatypeDescription
primarybytesIninteger (int64)The Primary BytesIn of the peering.
primarybytesOutinteger (int64)The primary BytesOut of the peering.
secondarybytesIninteger (int64)The secondary BytesIn of the peering.
secondarybytesOutinteger (int64)The secondary BytesOut of the peering.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, circuitName, subscriptionIdGets all the stats from an express route circuit in a resource group.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
circuitNamestringThe name of the express route circuit.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets all the stats from an express route circuit in a resource group.

SELECT
primarybytesIn,
primarybytesOut,
secondarybytesIn,
secondarybytesOut
FROM azure.network.express_route_circuits_stats
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND circuitName = '{{ circuitName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;