75b02dff3d
* op-signer: add to this repo * circleci: add op-signer jobs/workflows * ops: update tag service to include op-signer * readme: add op-signer one sentence description * ci: add op-signer option to github action * ops: add op-signer min version
13 lines
263 B
Go
13 lines
263 B
Go
package service
|
|
|
|
import "github.com/prometheus/client_golang/prometheus"
|
|
|
|
var (
|
|
MetricSignTransactionTotal = prometheus.NewCounterVec(
|
|
prometheus.CounterOpts{
|
|
Name: "signer_signtransaction_total",
|
|
Help: ""},
|
|
[]string{"client", "status", "error"},
|
|
)
|
|
)
|