Citrix Director dashboard does not report all user connection failures (Over last hour).
You use the below PowerShell script to get the user connection failure count using poweshell cmdlet "Get-BrokerConnectionLog". However, the count shown in Citrix Director Dashboard for user connection failures is less than the output of the below script.
PowerShell Script:
"Total FAILED Connection COUNT over past 60 min * * * *"
$when = [DateTime]::Now - [TimeSpan]::FromMinutes(60)
#$ConnFailures = Get-BrokerConnectionLog -AdminAddress $DDC -MaxRecordCount 99999 -Filter {BrokeringTime -gt $when -and ConnectionFailureReason -ne 'None'} -SortBy '+MachineName,-EndTime' | out-gridview
$ConnFailAllCount = Get-BrokerConnectionLog -AdminAddress $DDC -MaxRecordCount 99999 -Filter {BrokeringTime -gt $when -and ConnectionFailureReason -ne 'None' -and ConnectionFailureReason -ne $null} | Select Count ,Name, $CurrentDate
Write-Host $ConnFailAllCount.count -ForegroundColor DarkRed -BackgroundColor Yellow
This issue was not seen with XenApp/XenDesktop 7.13.