Skip to content

Commit ea3852c

Browse files
committed
gui: new boot screen
1 parent 3037f95 commit ea3852c

22 files changed

+1045
-334
lines changed

book/api/metrics-generated.md

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

495495
</div>
496496

497-
## Storei Tile
498-
499-
<div class="metrics">
500-
501-
| Metric | Type | Description |
502-
|--------|------|-------------|
503-
| <span class="metrics-name">storei_&#8203;first_&#8203;turbine_&#8203;slot</span> | gauge | |
504-
| <span class="metrics-name">storei_&#8203;current_&#8203;turbine_&#8203;slot</span> | gauge | |
505-
506-
</div>
507-
508497
## Gossip Tile
509498

510499
<div class="metrics">
@@ -730,6 +719,9 @@
730719

731720
| Metric | Type | Description |
732721
|--------|------|-------------|
722+
| <span class="metrics-name">repair_&#8203;first_&#8203;turbine_&#8203;slot</span> | gauge | |
723+
| <span class="metrics-name">repair_&#8203;latest_&#8203;turbine_&#8203;slot</span> | gauge | |
724+
| <span class="metrics-name">repair_&#8203;latest_&#8203;repair_&#8203;slot</span> | gauge | |
733725
| <span class="metrics-name">repair_&#8203;recv_&#8203;clnt_&#8203;pkt</span> | counter | Now many client packets have we received |
734726
| <span class="metrics-name">repair_&#8203;recv_&#8203;serv_&#8203;pkt</span> | counter | How many server packets have we received |
735727
| <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
/* Link from writer tile to replay tile, to send solcap account updates so that they are serialized.

0 commit comments

Comments
 (0)