2020-06-23 04:11:56 +03:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2020-10-05 20:07:09 +03:00
|
|
|
"github.com/owncast/owncast/utils"
|
2020-06-23 04:11:56 +03:00
|
|
|
)
|
|
|
|
|
2020-11-13 02:14:59 +03:00
|
|
|
// Stats holds the stats for the system.
|
2020-06-23 04:11:56 +03:00
|
|
|
type Stats struct {
|
2021-08-04 03:47:16 +03:00
|
|
|
SessionMaxViewerCount int `json:"sessionMaxViewerCount"`
|
|
|
|
OverallMaxViewerCount int `json:"overallMaxViewerCount"`
|
|
|
|
LastDisconnectTime *utils.NullTime `json:"lastDisconnectTime"`
|
2020-06-23 04:11:56 +03:00
|
|
|
|
2022-03-07 04:31:47 +03:00
|
|
|
StreamConnected bool `json:"-"`
|
|
|
|
LastConnectTime *utils.NullTime `json:"-"`
|
|
|
|
ChatClients map[string]Client `json:"-"`
|
|
|
|
Viewers map[string]*Viewer `json:"-"`
|
2020-06-23 04:11:56 +03:00
|
|
|
}
|