Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.45 KB

sql-server-logpool-freepool-object.md

File metadata and controls

38 lines (29 loc) · 1.45 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords
SQL Server, LogPool FreePool object
Learn about the SQLServer:LogPool FreePool performance object, which provides counters for statistics for the free pool inside the Log Pool.
MikeRayMSFT
mikeray
12/04/2023
sql
performance
reference
SQLServer:LogPool FreePool

SQL Server, LogPool FreePool object

[!INCLUDE SQL Server] The SQLServer:LogPool FreePool performance object provides counters for statistics for the free pool inside the Log Pool.

This following table describes the SQL Server LogPool FreePool performance objects.

SQL Server LogPool FreePool counters Description
Free Buffer Refills/sec Number of buffers being allocated for refill, per second.
Free List Length Length of the free list.

There is one instance of the counter for each category of log pool.

Example

You begin to explore the query performance counters in this object using this T-SQL query on the sys.dm_os_performance_counters dynamic management view:

SELECT * FROM sys.dm_os_performance_counters
WHERE object_name LIKE '%LogPool FreePool%';

Related content