Revert "Polish, remove beta warning for validator monitor (#3531)" (#3578)

This reverts commit 540fc5a1af.
This commit is contained in:
Jacek Sieka 2022-04-08 17:05:17 +02:00 committed by GitHub
parent f9f4a49c65
commit f20c53be82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -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)

View File

@ -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.