Add logging admin APIs for dashboard #114
This commit is contained in:
50
controllers/admin/logs.go
Normal file
50
controllers/admin/logs.go
Normal file
@@ -0,0 +1,50 @@
|
||||
package admin
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
"time"
|
||||
|
||||
"github.com/owncast/owncast/logging"
|
||||
"github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
// GetLogs will return all logs
|
||||
func GetLogs(w http.ResponseWriter, r *http.Request) {
|
||||
logs := logging.Logger.AllEntries()
|
||||
response := make([]logsResponse, 0)
|
||||
|
||||
for i := 0; i < len(logs); i++ {
|
||||
response = append(response, fromEntry(logs[i]))
|
||||
}
|
||||
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
json.NewEncoder(w).Encode(response)
|
||||
}
|
||||
|
||||
// GetWarnings will return only warning and error logs
|
||||
func GetWarnings(w http.ResponseWriter, r *http.Request) {
|
||||
logs := logging.Logger.WarningEntries()
|
||||
response := make([]logsResponse, 0)
|
||||
|
||||
for i := 0; i < len(logs); i++ {
|
||||
response = append(response, fromEntry(logs[i]))
|
||||
}
|
||||
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
json.NewEncoder(w).Encode(response)
|
||||
}
|
||||
|
||||
type logsResponse struct {
|
||||
Message string `json:"message"`
|
||||
Level string `json:"level"`
|
||||
Time time.Time `json:"time"`
|
||||
}
|
||||
|
||||
func fromEntry(e *logrus.Entry) logsResponse {
|
||||
return logsResponse{
|
||||
Message: e.Message,
|
||||
Level: e.Level.String(),
|
||||
Time: e.Time,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user