From f9337deb1133361271c927069ff78b49f1e2edf2 Mon Sep 17 00:00:00 2001 From: Erik Darling <2136037+erikdarlingdata@users.noreply.github.com> Date: Fri, 1 Mar 2024 11:07:43 -0500 Subject: [PATCH] Update sp_PressureDetector.sql sp_pressuredetector - change skip_waits to default to 0 --- sp_PressureDetector/sp_PressureDetector.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sp_PressureDetector/sp_PressureDetector.sql b/sp_PressureDetector/sp_PressureDetector.sql index 1c90e53..1dff303 100644 --- a/sp_PressureDetector/sp_PressureDetector.sql +++ b/sp_PressureDetector/sp_PressureDetector.sql @@ -54,7 +54,7 @@ ALTER PROCEDURE @skip_plan_xml bit = 0, /*if you want to skip getting plan XML*/ @minimum_disk_latency_ms smallint = 100, /*low bound for reporting disk latency*/ @cpu_utilization_threshold smallint = 50, /*low bound for reporting high cpu utlization*/ - @skip_waits bit = NULL, /*skips waits when you do not need them on every run*/ + @skip_waits bit = 0, /*skips waits when you do not need them on every run*/ @help bit = 0, /*how you got here*/ @debug bit = 0, /*prints dynamic sql, displays parameter and variable values, and table contents*/ @version varchar(5) = NULL OUTPUT, /*OUTPUT; for support*/