Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Dashboard/Helpers/PerfmonPacks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ public static class PerfmonPacks
"Temp Tables Creation Rate",
"Workfiles Created/sec",
"Worktables Created/sec",
"Forwarded Records/sec",
],
["Lock / Blocking"] =
[
Expand Down
1 change: 0 additions & 1 deletion Lite/Helpers/PerfmonPacks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ public static class PerfmonPacks
"Temp Tables Creation Rate",
"Workfiles Created/sec",
"Worktables Created/sec",
"Forwarded Records/sec",
],
["Lock / Blocking"] =
[
Expand Down
15 changes: 15 additions & 0 deletions install/19_collect_perfmon_stats.sql
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,9 @@ BEGIN
(
/*I/O counters*/
N'Forwarded Records/sec',
N'Full Scans/sec',
N'Index Searches/sec',
N'Page Splits/sec',
N'Page reads/sec',
N'Page writes/sec',
N'Checkpoint pages/sec',
Expand All @@ -177,6 +180,8 @@ BEGIN
N'Lock Waits/sec',
N'Number of Deadlocks/sec',
N'Lock waits',
N'Lock Timeouts/sec',
N'Processes blocked',
/*Memory counters*/
N'Granted Workspace Memory (KB)',
N'Lock Memory (KB)',
Expand All @@ -187,6 +192,7 @@ BEGIN
N'Total Server Memory (KB)',
N'Memory grant queue waits',
N'Thread-safe memory objects waits',
N'Free list stalls/sec',
/*Compilation counters*/
N'SQL Compilations/sec',
N'SQL Re-Compilations/sec',
Expand All @@ -205,6 +211,15 @@ BEGIN
N'Log Flush Write Time (ms)',
N'Log buffer waits',
N'Log write waits',
/*TempDB counters*/
N'Version Store Size (KB)',
N'Free Space in tempdb (KB)',
N'Active Temp Tables',
N'Version Generation rate (KB/s)',
N'Version Cleanup rate (KB/s)',
N'Temp Tables Creation Rate',
N'Workfiles Created/sec',
N'Worktables Created/sec',
/*Wait counters*/
N'Network IO waits',
N'Wait for the worker'
Expand Down
Loading