This reverts commit 540fc5a1af
.
This commit is contained in:
parent
f9f4a49c65
commit
f20c53be82
|
@ -390,7 +390,7 @@ proc createAndSendAttestation(node: BeaconNode,
|
|||
wallTime = node.beaconClock.now()
|
||||
delay = wallTime - attestationData.slot.attestation_deadline()
|
||||
|
||||
info "Attestation sent",
|
||||
notice "Attestation sent",
|
||||
attestation = shortLog(attestation), validator = shortLog(validator),
|
||||
delay, subnet_id
|
||||
|
||||
|
@ -990,7 +990,7 @@ proc sendAggregatedAttestations(
|
|||
let
|
||||
subnet_id = compute_subnet_for_attestation(
|
||||
committees_per_slot, slot, data.committee_index)
|
||||
info "Aggregated attestation sent",
|
||||
notice "Aggregated attestation sent",
|
||||
aggregate = shortLog(signedAP.message.aggregate),
|
||||
aggregator_index = signedAP.message.aggregator_index,
|
||||
signature = shortLog(signedAP.signature),
|
||||
|
@ -1225,7 +1225,7 @@ proc sendAttestation*(node: BeaconNode,
|
|||
wallTime = node.processor.getCurrentBeaconTime()
|
||||
delay = wallTime - attestation.data.slot.attestation_deadline()
|
||||
|
||||
info "Attestation sent",
|
||||
notice "Attestation sent",
|
||||
attestation = shortLog(attestation), delay, subnet_id
|
||||
|
||||
beacon_attestation_sent_delay.observe(delay.toFloatSeconds())
|
||||
|
@ -1242,7 +1242,7 @@ proc sendAggregateAndProof*(node: BeaconNode,
|
|||
if res.isGoodForSending:
|
||||
node.network.broadcastAggregateAndProof(proof)
|
||||
|
||||
info "Aggregated attestation sent",
|
||||
notice "Aggregated attestation sent",
|
||||
attestation = shortLog(proof.message.aggregate),
|
||||
aggregator_index = proof.message.aggregator_index,
|
||||
signature = shortLog(proof.signature)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Validator monitoring
|
||||
|
||||
> **Note:** This feature is available from `v1.7.0` onwards
|
||||
> ⚠️ This feature is currently in BETA - implementation details such as metric names and counters may change in response to community feedback.
|
||||
|
||||
The validator monitoring feature allows for tracking the life-cycle and performance of one or more validators in detail.
|
||||
|
||||
|
|
Loading…
Reference in New Issue