owncast/controllers/admin/hardware.go

21 lines
415 B
Go
Raw Normal View History

package admin
import (
"encoding/json"
"net/http"
"github.com/owncast/owncast/metrics"
log "github.com/sirupsen/logrus"
)
2020-11-13 02:14:59 +03:00
// 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)
}
}