Skip to content

Commit e70b1b6

Browse files
committed
Fix RBSent parsing from cardano-node log
1 parent 8b230af commit e70b1b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/components/Sim/hooks/useLokiWebSocket.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ function connectLokiWebSocket(lokiHost: string, dispatch: any): () => void {
264264
// 3. Loki naturally returns results in chronological order within a single stream
265265
// 4. Sorting large event arrays in the reducer is too expensive for dense simulation data
266266
const query =
267-
'{service="cardano-node"} |~ "SendBlock|MsgBlock|CompletedBlockFetch|MsgLeiosBlock"';
267+
'{service="cardano-node"} |~ "BlockFetchServer|MsgBlock|CompletedBlockFetch|MsgLeiosBlock"';
268268
const wsUrl = `ws://${lokiHost}/loki/api/v1/tail?query=${encodeURIComponent(query)}&limit=5000`;
269269
console.log("Connecting to Loki:", wsUrl);
270270

0 commit comments

Comments
 (0)