You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Documentation/sp_Blitz Checks by Priority.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@ Before adding a new check, make sure to add a Github issue for it first, and hav
6
6
7
7
If you want to change anything about a check - the priority, finding, URL, or ID - open a Github issue first. The relevant scripts have to be updated too.
'Download an updated First Responder Kit. Your version check failed due to dynamic query failure.'+ @crlf +
4576
4574
'Error: following query failed at execution (check if component ['+ISNULL(@CurrentComponentName,@CurrentComponentName) +'] is mandatory and missing)'+ @crlf +
4577
4575
@tsql AS Details
4578
4576
;
@@ -4593,12 +4591,12 @@ BEGIN
4593
4591
Details
4594
4592
)
4595
4593
SELECT
4596
-
2262AS CheckID ,
4597
-
200AS Priority ,
4598
-
'Features'AS FindingsGroup ,
4599
-
'First Responder kit mandatory component called "'+ @CurrentComponentName+'" is missing'AS Finding ,
4600
-
'https://www.BrentOzar.com/blitz/'ASURL ,
4601
-
NULLAS Details
4594
+
227AS CheckID ,
4595
+
253AS Priority ,
4596
+
'First Responder Kit'AS FindingsGroup ,
4597
+
'Component Missing: '+ @CurrentComponentName AS Finding ,
4598
+
'http://FirstResponderKit.org'ASURL ,
4599
+
'Download an updated version of the First Responder Kit to install it.'AS Details
4602
4600
;
4603
4601
4604
4602
-- as it's missing, no value for SubjectFullPath
@@ -4622,12 +4620,12 @@ BEGIN
4622
4620
Details
4623
4621
)
4624
4622
SELECT
4625
-
2263AS CheckID ,
4626
-
200AS Priority ,
4627
-
'Reliability'AS FindingsGroup ,
4628
-
'First Responder kit consistency check has been unexpectedly modified (checks ordering)'AS Finding ,
4629
-
'https://www.BrentOzar.com/blitz/'ASURL ,
4630
-
'First Responder kit consistency check failed because "Mandatory" check has not been completed before for current component'+ @crlf +
'Component '+ @CurrentComponentFullName +' is not at the minimum version required to run this procedure'+ @crlf +
4677
+
228AS CheckID ,
4678
+
253AS Priority ,
4679
+
'First Responder Kit'AS FindingsGroup ,
4680
+
'Component Outdated: '+ @CurrentComponentFullName AS Finding ,
4681
+
'http://FirstResponderKit.org'ASURL ,
4682
+
'Download an updated First Responder Kit. Component '+ @CurrentComponentFullName +' is not at the minimum version required to run this procedure'+ @crlf +
4685
4683
'VersionCheckMode has been introduced in component version date after "20190320". This means its version is lower than or equal to that date.'AS Details;
4686
4684
;
4687
4685
@@ -4705,12 +4703,12 @@ BEGIN
4705
4703
Details
4706
4704
)
4707
4705
SELECT
4708
-
2263AS CheckID ,
4709
-
200AS Priority ,
4710
-
'Reliability'AS FindingsGroup ,
4711
-
'First Responder kit consistency check has been unexpectedly modified (checks ordering)'AS Finding ,
4712
-
'https://www.BrentOzar.com/blitz/'ASURL ,
4713
-
'First Responder kit consistency check failed because "VersionCheckMode" check has not been completed before for component called "'+ @CurrentComponentFullName +'"'+ @crlf +
'Download an updated First Responder Kit. Version check failed because "VersionCheckMode" check has not been completed before for component called "'+ @CurrentComponentFullName +'"'+ @crlf +
4714
4712
'Error: VersionCheck happenned before "VersionCheckMode" check for component called "'+ @CurrentComponentFullName +'"'
4715
4713
;
4716
4714
@@ -4732,12 +4730,12 @@ BEGIN
4732
4730
Details
4733
4731
)
4734
4732
SELECT
4735
-
2261AS CheckID ,
4736
-
200AS Priority ,
4737
-
'Reliability'AS FindingsGroup ,
4738
-
'First Responder kit consistency check has been unexpectedly modified (dynamic query failure)'AS Finding ,
4739
-
'https://www.BrentOzar.com/blitz/'ASURL ,
4740
-
'First Responder kit consistency check failed because a change has been made to code generator'+ @crlf +
'Download an updated First Responder Kit. Error: following query failed at execution (check if component ['+ @CurrentComponentFullName +'] is at the expected version)'+ @crlf +
0 commit comments