You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns resource usage statistics for all the elastic database pools in a logical server. For each elastic database pool, there is one row for each 15 second reporting window (four rows per minute). This includes CPU, IO, Log, storage consumption and concurrent request/session utilization by all databases in the pool. This data is retained for 14 days.
UTC time indicating the start of the 15 second reporting interval.
end_time
datetime2
UTC time indicating the end of the 15 second reporting interval.
elastic_pool_name
nvarchar(128)
Name of the elastic database pool.
avg_cpu_percent
decimal(5,2)
Average compute utilization in percentage of the limit of the pool.
avg_data_io_percent
decimal(5,2)
Average I/O utilization in percentage based on the limit of the pool.
avg_log_write_percent
decimal(5,2)
Average write resource utilization in percentage of the limit of the pool.
avg_storage_percent
decimal(5,2)
Average storage utilization in percentage of the storage limit of the pool.
max_worker_percent
decimal(5,2)
Maximum concurrent workers (requests) in percentage based on the limit of the pool.
max_session_percent
decimal(5,2)
Maximum concurrent sessions in percentage based on the limit of the pool.
elastic_pool_dtu_limit
int
Current max elastic pool DTU setting for this elastic pool during this interval.
elastic_pool_storage_limit_mb
bigint
Current max elastic pool storage limit setting for this elastic pool in megabytes during this interval.
Remarks
This view exists in the master database of the logical server. You must be connected to the master database to query sys.elastic_pool_resource_stats.
Permissions
Requires membership in the dbmanager role.
Examples
The following example returns resource utilization data ordered by the most recent time for all the elastic database pools in the current logical server.
SELECT * FROM sys.elastic_pool_resource_stats
ORDER BY end_time DESC;
The following example calculates the average DTU percentage consumption for a given pool.
SELECT start_time, end_time,
(SELECT Max(v)
FROM (VALUES (avg_cpu_percent), (avg_data_io_percent), (avg_log_write_percent)) AS value(v)) AS [avg_DTU_percent]
FROM sys.elastic_pool_resource_stats
WHERE elastic_pool_name = '<your pool name>'
ORDER BY end_time DESC;