2023-06-10 03:29:02 +03:00
|
|
|
package handlers
|
2022-03-17 03:34:44 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/owncast/owncast/metrics"
|
2022-03-25 09:06:47 +03:00
|
|
|
"github.com/owncast/owncast/utils"
|
2023-06-10 03:29:02 +03:00
|
|
|
"github.com/owncast/owncast/webserver/responses"
|
2022-03-17 03:34:44 +03:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ReportPlaybackMetrics will accept playback metrics from a client and save
|
|
|
|
// them for future video health reporting.
|
2023-06-10 03:29:02 +03:00
|
|
|
func (h *Handlers) ReportPlaybackMetrics(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.Method != http.MethodPost {
|
|
|
|
responses.WriteSimpleResponse(w, false, r.Method+" not supported")
|
2022-03-17 03:34:44 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
type reportPlaybackMetricsRequest struct {
|
|
|
|
Bandwidth float64 `json:"bandwidth"`
|
|
|
|
Latency float64 `json:"latency"`
|
|
|
|
Errors float64 `json:"errors"`
|
|
|
|
DownloadDuration float64 `json:"downloadDuration"`
|
|
|
|
QualityVariantChanges float64 `json:"qualityVariantChanges"`
|
|
|
|
}
|
|
|
|
|
|
|
|
decoder := json.NewDecoder(r.Body)
|
|
|
|
var request reportPlaybackMetricsRequest
|
|
|
|
if err := decoder.Decode(&request); err != nil {
|
|
|
|
log.Errorln("error decoding playback metrics payload:", err)
|
2023-06-10 03:29:02 +03:00
|
|
|
responses.WriteSimpleResponse(w, false, err.Error())
|
2022-03-17 03:34:44 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-25 09:06:47 +03:00
|
|
|
clientID := utils.GenerateClientIDFromRequest(r)
|
|
|
|
|
|
|
|
metrics.RegisterPlaybackErrorCount(clientID, request.Errors)
|
2022-03-30 03:33:32 +03:00
|
|
|
if request.Bandwidth != 0.0 {
|
|
|
|
metrics.RegisterPlayerBandwidth(clientID, request.Bandwidth)
|
|
|
|
}
|
|
|
|
|
|
|
|
if request.Latency != 0.0 {
|
|
|
|
metrics.RegisterPlayerLatency(clientID, request.Latency)
|
|
|
|
}
|
|
|
|
|
|
|
|
if request.DownloadDuration != 0.0 {
|
|
|
|
metrics.RegisterPlayerSegmentDownloadDuration(clientID, request.DownloadDuration)
|
|
|
|
}
|
|
|
|
|
2022-03-25 09:06:47 +03:00
|
|
|
metrics.RegisterQualityVariantChangesCount(clientID, request.QualityVariantChanges)
|
2022-03-17 03:34:44 +03:00
|
|
|
}
|