Skip to content

Commit

Permalink
tpu: wire up FrameFailParse metric
Browse files Browse the repository at this point in the history
  • Loading branch information
riptl authored and ripatel-fd committed Nov 26, 2024
1 parent f508b3e commit 83c09ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/fdctl/run/tiles/fd_quic_tile.c
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ metrics_write( fd_quic_ctx_t * ctx ) {
FD_MCNT_SET( QUIC, STREAM_RECEIVED_EVENTS, ctx->quic->metrics.stream_rx_event_cnt );
FD_MCNT_SET( QUIC, STREAM_RECEIVED_BYTES, ctx->quic->metrics.stream_rx_byte_cnt );

FD_MCNT_ENUM_COPY( QUIC, RECEIVED_FRAMES, ctx->quic->metrics.frame_rx_cnt );
FD_MCNT_ENUM_COPY( QUIC, RECEIVED_FRAMES, ctx->quic->metrics.frame_rx_cnt );
FD_MCNT_SET ( QUIC, FRAME_FAIL_PARSE, ctx->quic->metrics.frame_rx_err_cnt );

FD_MCNT_ENUM_COPY( QUIC, ACK_TX, ctx->quic->metrics.ack_tx );

Expand Down

0 comments on commit 83c09ba

Please sign in to comment.