Browse Source
* Add metrics for disk usage * Add admin API for hardware metrics * Fix error message alertpull/221/head
5 changed files with 62 additions and 11 deletions
@ -0,0 +1,16 @@
@@ -0,0 +1,16 @@
|
||||
package admin |
||||
|
||||
import ( |
||||
"encoding/json" |
||||
"net/http" |
||||
|
||||
"github.com/gabek/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) |
||||
} |
Loading…
Reference in new issue