mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-29 11:55:03 +01:00
8 lines
177 B
Go
8 lines
177 B
Go
|
package endpoint
|
||
|
|
||
|
import "github.com/prometheus/client_golang/prometheus"
|
||
|
|
||
|
func RegisterMetrics(r prometheus.Registerer) {
|
||
|
r.MustRegister(sendAbstractionsCacheMetrics.count)
|
||
|
}
|