Greetings!
Historical data is maintained for approximately one hour. sys.dm_db_resource_stats.
sys.dm_os_wait_stats All data is cumulative since the last time the statistics were reset or the database engine started
sys.dm_database_replica_states, it keep the actual replica state.
Depending on the action and higher-level states, database-state information may be unavailable or out of date. Furthermore, the values have only local relevance.
sys.dm_os_performance_counters
sys.dm_exec_query_stats
Returns aggregate performance statistics for cached query plans in SQL Server. The view contains one row per query statement within the cached plan, and the lifetime of the rows are tied to the plan itself. When a plan is removed from the cache, the corresponding rows are eliminated from this view.
sys.dm_exec_query_plan When a plan is removed from the cache, the corresponding rows are eliminated from this view.
sys.dm_exec_sql_text When a plan is removed from the cache, the corresponding rows are eliminated from this view.
sys.dm_exec_query_profiles
Monitors real time query progress while the query is in execution
sys.dm_exec_query_plan_stats
Returns the equivalent of the last known actual execution plan for a previously cached query plan.
sys.dm_io_virtual_file_stats
Returns I/O statistics for data and log files.
Regards
Geetha