Skip to main content

express_route_circuits_peering_stats

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

Overview

Nameexpress_route_circuits_peering_stats
TypeResource
Idazure.network.express_route_circuits_peering_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, peeringName, resourceGroupName, subscriptionIdGets all stats from an express route circuit in a resource group.

SELECT examples

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

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