2020-06-23 04:11:56 +03:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2021-05-21 06:29:01 +03:00
|
|
|
"time"
|
|
|
|
|
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 {
|
2020-07-19 01:06:54 +03:00
|
|
|
SessionMaxViewerCount int `json:"sessionMaxViewerCount"`
|
|
|
|
OverallMaxViewerCount int `json:"overallMaxViewerCount"`
|
|
|
|
LastDisconnectTime utils.NullTime `json:"lastDisconnectTime"`
|
2020-06-23 04:11:56 +03:00
|
|
|
|
2021-05-21 06:29:01 +03:00
|
|
|
StreamConnected bool `json:"-"`
|
|
|
|
LastConnectTime utils.NullTime `json:"-"`
|
|
|
|
ChatClients map[string]Client `json:"-"`
|
|
|
|
Viewers map[string]time.Time `json:"-"`
|
2020-06-23 04:11:56 +03:00
|
|
|
}
|