mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
493a7179d7
* wip * adding deneb block * adding in support for blobs and fixing unit tests for deneb * fixing linting * gaz * adding support for new web3signer version * fixing tag name * addressing feedback * fixing tests * adding unit test for review * updating test name * updating unit tests and length logic * adding in lengthfor root * adjusting max blob length * fixing mock * fixing another mock * gaz * adding network configs * removing duplicate * changing based on nishant's feedback * Update validator/keymanager/remote-web3signer/v1/requests.go Co-authored-by: Sammy Rosso <15244892+saolyn@users.noreply.github.com> * Update validator/keymanager/remote-web3signer/metrics.go Co-authored-by: Sammy Rosso <15244892+saolyn@users.noreply.github.com> * sammy's suggestions * removing temp file --------- Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Sammy Rosso <15244892+saolyn@users.noreply.github.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
94 lines
4.4 KiB
Go
94 lines
4.4 KiB
Go
package remote_web3signer
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
)
|
|
|
|
var (
|
|
signRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_sign_requests_total",
|
|
Help: "Total number of sign requests",
|
|
})
|
|
erroredResponsesTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_errored_responses_total",
|
|
Help: "Total number of errored responses when calling web3signer",
|
|
})
|
|
blockSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_block_sign_requests_total",
|
|
Help: "Total number of block sign requests",
|
|
})
|
|
aggregationSlotSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_aggregation_slot_requests_total",
|
|
Help: "Total number of aggregation slot requests",
|
|
})
|
|
aggregateAndProofSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_aggregate_and_proof_sign_requests_total",
|
|
Help: "Total number of aggregate and proof sign requests",
|
|
})
|
|
attestationSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_attestation_sign_requests_total",
|
|
Help: "Total number of attestation sign requests",
|
|
})
|
|
blockAltairSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_block_altair_sign_requests_total",
|
|
Help: "Total number of block altair sign requests",
|
|
})
|
|
blockBellatrixSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_block_bellatrix_sign_requests_total",
|
|
Help: "Total number of block bellatrix sign requests",
|
|
})
|
|
blindedBlockBellatrixSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_blinded_block_bellatrix_sign_requests_total",
|
|
Help: "Total number of blinded block bellatrix sign requests",
|
|
})
|
|
blockCapellaSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_block_capella_sign_requests_total",
|
|
Help: "Total number of block capella sign requests",
|
|
})
|
|
blindedBlockCapellaSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_blinded_block_capella_sign_requests_total",
|
|
Help: "Total number of block capella sign requests",
|
|
})
|
|
blockDenebSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_block_deneb_sign_requests_total",
|
|
Help: "Total number of block deneb sign requests",
|
|
})
|
|
blindedBlockDenebSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_blinded_block_deneb_sign_requests_total",
|
|
Help: "Total number of blinded block deneb sign requests",
|
|
})
|
|
randaoRevealSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_randao_reveal_sign_requests_total",
|
|
Help: "Total number of randao reveal sign requests",
|
|
})
|
|
voluntaryExitSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_voluntary_exit_sign_requests_total",
|
|
Help: "Total number of voluntary exit sign requests",
|
|
})
|
|
syncCommitteeMessageSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_sync_committee_message_sign_requests_total",
|
|
Help: "Total number of sync committee message sign requests",
|
|
})
|
|
syncCommitteeSelectionProofSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_sync_committee_selection_proof_sign_requests_total",
|
|
Help: "Total number of sync committee selection proof sign requests",
|
|
})
|
|
syncCommitteeContributionAndProofSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_sync_committee_contribution_and_proof_sign_requests_total",
|
|
Help: "Total number of sync committee contribution and proof sign requests",
|
|
})
|
|
validatorRegistrationSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_validator_registration_sign_requests_total",
|
|
Help: "Total number of validator registration sign requests",
|
|
})
|
|
blobSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_blob_sign_requests_total",
|
|
Help: "Total number of blob sign requests",
|
|
})
|
|
blindedBlobSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_blinded_blob_sign_requests_total",
|
|
Help: "Total number of blinded blob sign requests",
|
|
})
|
|
)
|