You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
358 B
Go
17 lines
358 B
Go
5 months ago
|
package savedata
|
||
|
|
||
|
import (
|
||
|
"github.com/prometheus/client_golang/prometheus"
|
||
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
gameModeCounter = promauto.NewCounterVec(
|
||
|
prometheus.CounterOpts{
|
||
|
Name: "rogueserver_game_mode_total",
|
||
|
Help: "The total number of classic sessions played per 5 minutes",
|
||
|
},
|
||
|
[]string{"gamemode"},
|
||
|
)
|
||
|
)
|