A tool for measuring the coverage of Bluesky/ATProto relays
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

show a warning in the list if a source had errors

+10 -1
+4
public/style.css
··· 91 91 text-align: center; 92 92 } 93 93 94 + .has-errors { 95 + cursor: default; 96 + } 97 + 94 98 footer { 95 99 margin-bottom: 25px; 96 100 font-size: 11pt;
+6 -1
views/index.erb
··· 33 33 <% if report.connected? %> 34 34 <td class="number"><%= format_num(report.users) %></td> 35 35 <td class="number"><%= format_num(report.events) %></td> 36 - <td class="number"><%= format('%.2f%%', percent) %></td> 36 + <td class="number"> 37 + <% if report.error_count > 0 %> 38 + <span class="has-errors" title="Source has returned some error code responses">⚠️</span> 39 + <% end %> 40 + <%= format('%.2f%%', percent) %> 41 + </td> 37 42 <% else %> 38 43 <td colspan="3" class="error">(no signal received)</td> 39 44 <% end %>