mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
59be30e9f4
* initial commit for metrics, tracing, and code coverage * fixing unit test, logs, and naming conventions * Update validator/keymanager/remote-web3signer/internal/client.go Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Update validator/keymanager/remote-web3signer/internal/client.go Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * adding required dependency * adding more error annotations * adding in negative test * fixing bazel build * gaz * Update validator/client/validator_test.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/client/validator_test.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/client/service.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/keymanager/remote-web3signer/internal/client.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/client/validator_test.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/client/validator_test.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * addressing review comments * Update validator/keymanager/remote-web3signer/internal/client_test.go * reverting channel direction Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
58 lines
2.6 KiB
Go
58 lines
2.6 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",
|
|
})
|
|
blockV2SignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "remote_web3signer_block_v2_sign_requests_total",
|
|
Help: "Total number of block v2 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",
|
|
})
|
|
)
|