adding a few more vars, setting collection to 60 secs

This commit is contained in:
2023-09-25 22:59:36 -04:00
parent 28df368156
commit 3c9149f7c0
8 changed files with 117 additions and 3 deletions

View File

@@ -12,3 +12,11 @@ var plexNumMovies = prometheus.NewGauge(prometheus.GaugeOpts{
var plexNumTVShows = prometheus.NewGauge(prometheus.GaugeOpts{
Name: "plex_num_tv_shows", Help: "Number of TV Shows in the plex database",
})
var plexTranscodeSessions = prometheus.NewGauge(prometheus.GaugeOpts{
Name: "plex_num_transcodes", Help: "Number of current transcodes occuring in plex",
})
var plexAllSessions = prometheus.NewGauge(prometheus.GaugeOpts{
Name: "plex_num_all_sessions", Help: "Number of all sessions history for server",
})