mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
babbcecc9c
* WIP playback metrics * Playback metrics collecting + APIs. Closes #793 * Cleanup console messages * Update test * Increase browser test timeout * Update browser tests to not fail
20 lines
415 B
Go
20 lines
415 B
Go
package admin
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"github.com/owncast/owncast/metrics"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// GetHardwareStats will return hardware utilization over time.
|
|
func GetHardwareStats(w http.ResponseWriter, r *http.Request) {
|
|
m := metrics.GetMetrics()
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
err := json.NewEncoder(w).Encode(m)
|
|
if err != nil {
|
|
log.Errorln(err)
|
|
}
|
|
}
|