You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
531 B
18 lines
531 B
package models |
|
|
|
import ( |
|
"github.com/owncast/owncast/utils" |
|
) |
|
|
|
// Stats holds the stats for the system. |
|
type Stats struct { |
|
LastDisconnectTime *utils.NullTime `json:"lastDisconnectTime"` |
|
|
|
LastConnectTime *utils.NullTime `json:"-"` |
|
ChatClients map[string]Client `json:"-"` |
|
Viewers map[string]*Viewer `json:"-"` |
|
SessionMaxViewerCount int `json:"sessionMaxViewerCount"` |
|
OverallMaxViewerCount int `json:"overallMaxViewerCount"` |
|
|
|
StreamConnected bool `json:"-"` |
|
}
|
|
|