diff --git a/containers/JessAndBeard.psm1 b/containers/JessAndBeard.psm1 index c2b6f2a4..71aa9733 100644 --- a/containers/JessAndBeard.psm1 +++ b/containers/JessAndBeard.psm1 @@ -2246,6 +2246,7 @@ function Invoke-PerfAndValidateCheck { [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingCmdletAliases', 'cls', Justification = 'Dont tell me what to do')] [CmdletBinding()] param($Checks, [switch]$PerfDetail , [switch]$showTestResults) + $SQLInstances = $dbachecks1, $dbachecks2, $dbachecks3 = 'dbachecks1', 'dbachecks2', 'dbachecks3' $password = ConvertTo-SecureString "dbatools.IO" -AsPlainText -Force $cred = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList "sqladmin", $password if ($showTestResults) { @@ -2434,7 +2435,7 @@ The Total Tests Skipped are the same {0} {1} $message = " Let's take a look at the slowest code as well " Write-PSFMessage -Message $Message -Level Output - $NewCodetrace.Top50SelfDuration| Select SelfPercent,HitCount,Line,Function } + $NewCodetrace.Top50SelfDuration| Select SelfPercent,HitCount,Line,Function, Text } } Set-PSFConfig -Module JessAndBeard -Name shallweplayagame -Value $true -Initialize -Description "Whether to ask or not" -ModuleExport