Skip to main content

wait_statistics

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

Overview

Namewait_statistics
TypeResource
Idazure.maria_db.wait_statistics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectThe properties of a wait statistic.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, serverName, waitStatisticsIdRetrieve wait statistics for specified identifier.
list_by_serverselectsubscriptionId, resourceGroupName, serverNameRetrieve wait statistics for specified aggregation window.

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.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
serverNamestringThe name of the server.
subscriptionIdstringThe ID of the target subscription.
waitStatisticsIdstringThe Wait Statistic identifier.

SELECT examples

Retrieve wait statistics for specified identifier.

SELECT
properties
FROM azure.maria_db.wait_statistics
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND serverName = '{{ serverName }}' -- required
AND waitStatisticsId = '{{ waitStatisticsId }}' -- required
;