mirror of
https://github.com/owncast/owncast.git
synced 2024-11-29 11:39:08 +03:00
769fc3a561
Co-authored-by: Michael Leow <mleow@moneylion.com>
16 lines
341 B
Go
16 lines
341 B
Go
package admin
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"github.com/owncast/owncast/metrics"
|
|
)
|
|
|
|
// GetHardwareStats will return hardware utilization over time
|
|
func GetHardwareStats(w http.ResponseWriter, r *http.Request) {
|
|
metrics := metrics.Metrics
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
json.NewEncoder(w).Encode(metrics)
|
|
}
|