Skip to content

Commit 80811c4

Browse files
committed
gui: new boot screen
1 parent f97aaae commit 80811c4

23 files changed

+1048
-337
lines changed

book/api/metrics-generated.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -484,17 +484,6 @@
484484

485485
</div>
486486

487-
## Storei Tile
488-
489-
<div class="metrics">
490-
491-
| Metric | Type | Description |
492-
|--------|------|-------------|
493-
| <span class="metrics-name">storei_&#8203;first_&#8203;turbine_&#8203;slot</span> | gauge | |
494-
| <span class="metrics-name">storei_&#8203;current_&#8203;turbine_&#8203;slot</span> | gauge | |
495-
496-
</div>
497-
498487
## Gossip Tile
499488

500489
<div class="metrics">
@@ -720,6 +709,9 @@
720709

721710
| Metric | Type | Description |
722711
|--------|------|-------------|
712+
| <span class="metrics-name">repair_&#8203;first_&#8203;turbine_&#8203;slot</span> | gauge | |
713+
| <span class="metrics-name">repair_&#8203;latest_&#8203;turbine_&#8203;slot</span> | gauge | |
714+
| <span class="metrics-name">repair_&#8203;latest_&#8203;repair_&#8203;slot</span> | gauge | |
723715
| <span class="metrics-name">repair_&#8203;recv_&#8203;clnt_&#8203;pkt</span> | counter | Now many client packets have we received |
724716
| <span class="metrics-name">repair_&#8203;recv_&#8203;serv_&#8203;pkt</span> | counter | How many server packets have we received |
725717
| <span class="metrics-name">repair_&#8203;recv_&#8203;serv_&#8203;corrupt_&#8203;pkt</span> | counter | How many corrupt server packets have we received |

book/api/websocket.md

Lines changed: 245 additions & 0 deletions
Large diffs are not rendered by default.

src/app/firedancer/topology.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -788,22 +788,22 @@ fd_topo_initialize( config_t * config ) {
788788
fd_topob_wksp( topo, "plugin_out" );
789789
fd_topob_wksp( topo, "plugin" );
790790

791-
/**/ fd_topob_link( topo, "plugin_out", "plugin_out", 128UL, 8UL+40200UL*(58UL+12UL*34UL), 1UL );
792-
/**/ fd_topob_link( topo, "replay_plugi", "plugin_in", 128UL, 4098*8UL, 1UL );
793-
/**/ fd_topob_link( topo, "gossip_plugi", "plugin_in", 128UL, 8UL+40200UL*(58UL+12UL*34UL), 1UL );
794-
/**/ fd_topob_link( topo, "votes_plugin", "plugin_in", 128UL, 8UL+40200UL*(58UL+12UL*34UL), 1UL );
791+
/**/ fd_topob_link( topo, "plugin_out", "plugin_out", 128UL, 8UL+40200UL*(58UL+12UL*34UL), 1UL );
792+
/**/ fd_topob_link( topo, "replay_plugi", "plugin_in", 128UL, 4098*8UL, 1UL );
793+
/**/ fd_topob_link( topo, "gossip_plugi", "plugin_in", 128UL, 8UL+40200UL*(58UL+12UL*34UL), 1UL );
794+
/**/ fd_topob_link( topo, "snaprd_plugi", "plugin_in", 128UL, sizeof(fd_restore_snapshot_update_t), 1UL );
795795

796796
/**/ fd_topob_tile( topo, "plugin", "plugin", "metric_in", tile_to_cpu[ topo->tile_cnt ], 0, 0 );
797797

798798
/**/ fd_topob_tile_out( topo, "replay", 0UL, "replay_plugi", 0UL );
799-
/**/ fd_topob_tile_out( topo, "replay", 0UL, "votes_plugin", 0UL );
800799
/**/ fd_topob_tile_out( topo, "gossip", 0UL, "gossip_plugi", 0UL );
801-
/**/ fd_topob_tile_out( topo, "plugin", 0UL, "plugin_out", 0UL );
800+
/**/ fd_topob_tile_out( topo, "plugin", 0UL, "plugin_out", 0UL );
801+
/**/ fd_topob_tile_out( topo, "snaprd", 0UL, "snaprd_plugi", 0UL );
802802

803803
/**/ fd_topob_tile_in( topo, "plugin", 0UL, "metric_in", "replay_plugi", 0UL, FD_TOPOB_RELIABLE, FD_TOPOB_POLLED );
804804
/**/ fd_topob_tile_in( topo, "plugin", 0UL, "metric_in", "gossip_plugi", 0UL, FD_TOPOB_RELIABLE, FD_TOPOB_POLLED );
805805
/**/ fd_topob_tile_in( topo, "plugin", 0UL, "metric_in", "stake_out", 0UL, FD_TOPOB_RELIABLE, FD_TOPOB_POLLED );
806-
/**/ fd_topob_tile_in( topo, "plugin", 0UL, "metric_in", "votes_plugin", 0UL, FD_TOPOB_RELIABLE, FD_TOPOB_POLLED );
806+
/**/ fd_topob_tile_in( topo, "plugin", 0UL, "metric_in", "snaprd_plugi", 0UL, FD_TOPOB_RELIABLE, FD_TOPOB_POLLED );
807807
}
808808

809809
if( FD_LIKELY( config->tiles.gui.enabled ) ) {

0 commit comments

Comments
 (0)