mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
d7e355bce1
* Add support for ending the inbound stream. Closes #191 * Add a simple success response to API requests * Connected clients API with geo details * Post-rebase cleanup * Make setting and reading geo details separate operations to unblock and speed up * Rename file * Fire geoip api call behind goroutine * Add comment * Post-rebase fixes * Add support for the MaxMind GeoLite2 GeoIP database
16 lines
468 B
Go
16 lines
468 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:"-"`
|
|
Clients map[string]Client `json:"-"`
|
|
}
|