Skip to main content

express_route_circuits_stats

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

Overview

Nameexpress_route_circuits_stats
TypeResource
Idazure.network.express_route_circuits_stats

Fields

NameDatatypeDescription
primarybytesInintegerThe Primary BytesIn of the peering.
primarybytesOutintegerThe primary BytesOut of the peering.
secondarybytesInintegerThe secondary BytesIn of the peering.
secondarybytesOutintegerThe secondary BytesOut of the peering.

Methods

NameAccessible byRequired ParamsDescription
getSELECTcircuitName, resourceGroupName, subscriptionIdGets all the stats from an express route circuit in a resource group.

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 circuitName = '{{ circuitName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';