Skip to content
Draft
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
71f006e
feat(observability): add StateLabel trait, GenericComponentState, and…
claude Mar 26, 2026
68d4b0f
feat(pipeline_health): add PipelineHealthMonitor with backpressure ev…
claude Mar 26, 2026
c5708f2
feat(pipeline): add HasBlockSeq/recv_and_record plumbing; wire all co…
claude Mar 26, 2026
5e24edc
feat(node): wire PipelineHealthMonitor through runtime, config, and i…
claude Mar 26, 2026
90435d7
feat(pipeline_health): add default fallback condition; remove too_man…
claude Mar 26, 2026
bd4c909
fix: adapt backpressure port to current main
antonbaliasnikov Mar 30, 2026
f495473
chore: fmt
antonbaliasnikov Mar 30, 2026
e24cfa2
fix(pipeline_health): address reviewer feedback
antonbaliasnikov Mar 30, 2026
3377ab5
feat: proper config redesign
antonbaliasnikov Mar 31, 2026
ebdd44f
feat: separate /health and /pipeline status endpoints
antonbaliasnikov Mar 31, 2026
bb95839
test: add better testing
antonbaliasnikov Mar 31, 2026
bbc306e
feat(pipeline_health): add max_block_lag to BatchPipelineCondition wi…
antonbaliasnikov Mar 31, 2026
8708f8e
feat: multiple corner-case important fixes
antonbaliasnikov Mar 31, 2026
cd80187
feat: use unified component id for everything
antonbaliasnikov Apr 1, 2026
9f7f528
fix: update adjacency for not registered components
antonbaliasnikov Apr 1, 2026
5231b19
feat: proper adjacent time lag
antonbaliasnikov Apr 1, 2026
cce3a4a
chore: rework how reporters are created
antonbaliasnikov Apr 1, 2026
54c9b5d
fix: properly support revm checker
antonbaliasnikov Apr 1, 2026
e3fc30c
fix: apply multiple minor fixes
antonbaliasnikov Apr 1, 2026
56d76a7
chore: simplify interfaces in lib.rs
antonbaliasnikov Apr 1, 2026
435a239
feat: unify acceptance state from multiple receivers
antonbaliasnikov Apr 1, 2026
84abc8c
chore: fix backpressure test
antonbaliasnikov Apr 2, 2026
075878c
chore: try to fix test
antonbaliasnikov Apr 2, 2026
ae68fb1
chore: fix minor inconsistencies
antonbaliasnikov Apr 2, 2026
5602785
fix: remove head relative fallback
antonbaliasnikov Apr 2, 2026
71642e8
chore: stabilize pipeline health refactor
claude Apr 15, 2026
2051f54
chore: remove prepend
claude Apr 15, 2026
c000f46
chore: merge main, solve conflicts
claude Apr 15, 2026
cd5196a
feat(observability): introduce pipeline health tracking coordinates
claude Apr 15, 2026
786b82b
feat(pipeline_health): wire coordinates across sequencer and batch pi…
claude Apr 16, 2026
aef03f8
feat(pipeline_health): wire coordinates in proof job managers
claude Apr 16, 2026
808b649
test: update tests and add fixes for pipeline health coordinates
claude Apr 16, 2026
359b432
chore: merge main, solve conflicts
claude Apr 16, 2026
de6d017
chore: remove claude plans
antonbaliasnikov Apr 16, 2026
a914187
chore: fix clippy issue
antonbaliasnikov Apr 16, 2026
8a0824e
chore: address reviews and fix tests
antonbaliasnikov Apr 16, 2026
7569e80
chore: address more thorough review
antonbaliasnikov Apr 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ setup_compact.key
# Decompressed L1 state produced by integration-tests build.rs
local-chains/*/l1-state.json
local-chains/*/l1-state.json.sha256
.worktrees/

.claude/
24 changes: 24 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ members = [
"lib/operator_signer",
"lib/raft",
"lib/tx_validators",
"lib/pipeline_health",
]
resolver = "3"
default-members = ["node/bin"]
Expand Down
Loading
Loading