express_route_circuits_stats
Creates, updates, deletes, gets or lists an express_route_circuits_stats
resource.
Overview
Name | express_route_circuits_stats |
Type | Resource |
Id | azure.network.express_route_circuits_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 , subscriptionId | Gets 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.
Name | Datatype | Description |
---|---|---|
circuitName | string | The name of the express route circuit. |
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 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
;