Server memory statistics


Job details

Name: Server memory statistics
Platform: Sqlserver
Category: Performance
Description: This tasks collects statistics from the sys.dm_os_sys_info performance view about the memory resources available to and consumed by the SQL Server.
Long description: This tasks collects statistics from the sys.dm_os_sys_info performance view about the memory resources available to and consumed by the SQL Server.
Version: 1.1
Default schedule: 28,58 * * *
Requires engine install: Yes
Compatibility tag: .[type=‘instance’ & databasetype=‘sqlserver’]/instance[maj_version > ‘2000′ & maj_version < ‘2012′ & hasengine=‘YES’ & (engine_edition = ‘Microsoft SQL Server’ engine_edition = ‘Azure SQL Managed Instance’)]

Parameters

Name Default value Description
history threshold 7 Number of days to provide statistics for.

Job Summary

SELECT cpu_count, physical_memory_in_bytes, virtual_memory_in_bytes FROM master.sys.dm_os_sys_info

Job Description

Details of Execution

Dependencies

Implementation

Output Presentation

Parameter Description
CPU Count Number of logical CPUs
Physical Memory (MB) Available physical memory
Virtual Memory (MB) Available virtual memory
Buffer Pool (MB) Memory committed to SQL Server buffer pool
Buffer Pool Target (MB) Target memory for the buffer pool before adjustments
Buffer Pool Visible (MB) Visible buffer pool memory that can be allocated without further reservation
Date Date and time the statistics were recorded

SQL Details

SELECT cpu_count, physical_memory_in_bytes/1024/1000 as "Physical memory", virtual_memory_in_bytes/1024/1000 as "Virtual memory" FROM master.sys.dm_os_sys_info