1
0
Fork 0
mirror of https://github.com/owncast/owncast.git synced 2024-10-28 18:19:39 +01:00
owncast/models/stats.go

17 lines
523 B
Go

package models
import (
"github.com/owncast/owncast/utils"
)
// Stats holds the stats for the system.
type Stats struct {
SessionMaxViewerCount int `json:"sessionMaxViewerCount"`
OverallMaxViewerCount int `json:"overallMaxViewerCount"`
LastDisconnectTime *utils.NullTime `json:"lastDisconnectTime"`
StreamConnected bool `json:"-"`
LastConnectTime *utils.NullTime `json:"-"`
ChatClients map[string]Client `json:"-"`
Viewers map[string]*Viewer `json:"-"`
}