14 lines
230 B
Go
14 lines
230 B
Go
package metrics
|
|
|
|
// Metrics defines the available metrics of this service.
|
|
type Metrics struct {
|
|
// Counter *prometheus.CounterVec
|
|
}
|
|
|
|
// New initializes the available metrics.
|
|
func New() *Metrics {
|
|
m := &Metrics{}
|
|
|
|
return m
|
|
}
|