express_route_circuits_stats
Creates, updates, deletes, gets or lists a express_route_circuits_stats
resource.
Overview
Name | express_route_circuits_stats |
Type | Resource |
Id | azure.network.express_route_circuits_stats |
Fields
Name | Datatype | Description |
---|---|---|
primarybytesIn | integer | The Primary BytesIn of the peering. |
primarybytesOut | integer | The primary BytesOut of the peering. |
secondarybytesIn | integer | The secondary BytesIn of the peering. |
secondarybytesOut | integer | The secondary BytesOut of the peering. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | circuitName, resourceGroupName, subscriptionId | Gets 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 }}';