Alexey
February 10, 2024, 8:55am
27
You need to check your router and firewall, why it’s prevent connection from this satellite.
You may also check when your node was not available for that satellite:
Would you mind to provide dashboard from the uptimerobot?
And also, please, provide result of the command:
PowerShell
foreach ($item in ((Invoke-WebRequest http://localhost:14002/api/sno).Content | ConvertFrom-Json).satellites.id) {
((Invoke-WebRequest http://localhost:14002/api/sno/satellite/$item).Content | ConvertFrom-Json).auditHistory.windows |
Where-Object{$_.totalCount -ne $_.onlineCount} | ForEach-Object{Write-Host $item; $_ | Format-Table -AutoSize}
}
bash
for item in `…