express_route_circuits_peering_stats
Creates, updates, deletes, gets or lists an express_route_circuits_peering_stats resource.
Overview
| Name | express_route_circuits_peering_stats |
| Type | Resource |
| Id | azure.network.express_route_circuits_peering_stats |
Fields
The following fields are returned by SELECT queries:
- get
Request successful. The operation returns the resulting ExpressRouteCircuitStats resource.
| Name | Datatype | Description |
|---|---|---|
primarybytesIn | integer (int64) | The Primary BytesIn of the peering. |
primarybytesOut | integer (int64) | The primary BytesOut of the peering. |
secondarybytesIn | integer (int64) | The secondary BytesIn of the peering. |
secondarybytesOut | integer (int64) | The secondary BytesOut of the peering. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resourceGroupName, circuitName, peeringName, subscriptionId | Gets all 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.
| Name | Datatype | Description |
|---|---|---|
circuitName | string | The name of the express route circuit. |
peeringName | string | The name of the peering. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- get
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 resourceGroupName = '{{ resourceGroupName }}' -- required
AND circuitName = '{{ circuitName }}' -- required
AND peeringName = '{{ peeringName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;