mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 05:17:27 +08:00 
			
		
		
		
	* WIP playback metrics * Playback metrics collecting + APIs. Closes #793 * Cleanup console messages * Update test * Increase browser test timeout * Update browser tests to not fail
		
			
				
	
	
		
			21 lines
		
	
	
		
			415 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 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)
 | 
						|
	}
 | 
						|
}
 |