4d2066a76d
* Start cleaning up linter errors. For #357 * Fix unmarshalling NullTime values * More linter fixes * Remove commented code * Move defer up * Consolidate error check lines * Move error check to make sure row iteration was successful * Cleaner error check + do not recreate pipe if it exists * Consolidate hashing to generate client id
21 lines
410 B
Go
21 lines
410 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.Metrics
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
err := json.NewEncoder(w).Encode(m)
|
|
if err != nil {
|
|
log.Errorln(err)
|
|
}
|
|
}
|