From e0922badbef399f6f82ec3a5343d3b39393a30e4 Mon Sep 17 00:00:00 2001 From: Jimmy Chen Date: Thu, 16 Apr 2026 10:07:58 +1000 Subject: [PATCH] Prefix VC root spans with `lh_` so they get exported to tracing backend (#9129) The tracing exporter uses a `PrefixBasedSampler` that only samples root spans whose name starts with `lh_`. Rename the VC root spans to include the prefix so their traces are exported. Thanks @lmnzx for pointing this out! Co-Authored-By: Jimmy Chen --- .../validator_services/src/attestation_service.rs | 4 ++-- validator_client/validator_services/src/block_service.rs | 2 +- .../validator_services/src/sync_committee_service.rs | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/validator_client/validator_services/src/attestation_service.rs b/validator_client/validator_services/src/attestation_service.rs index fe808efd88..dc5fc27a4f 100644 --- a/validator_client/validator_services/src/attestation_service.rs +++ b/validator_client/validator_services/src/attestation_service.rs @@ -439,7 +439,7 @@ impl AttestationService AttestationService BlockService { } #[instrument( - name = "block_proposal_duty_cycle", + name = "lh_block_proposal_duty_cycle", skip_all, fields(%slot, ?validator_pubkey) )] diff --git a/validator_client/validator_services/src/sync_committee_service.rs b/validator_client/validator_services/src/sync_committee_service.rs index 26ce052ea0..e34e7636dd 100644 --- a/validator_client/validator_services/src/sync_committee_service.rs +++ b/validator_client/validator_services/src/sync_committee_service.rs @@ -214,7 +214,7 @@ impl SyncCommitteeService SyncCommitteeService SyncCommitteeService