mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-22 16:03:44 +01:00
59 lines
1.6 KiB
Go
59 lines
1.6 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/TwinProduction/gatus/config"
|
|
"github.com/TwinProduction/gatus/watchdog"
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
cfg := loadConfiguration()
|
|
http.HandleFunc("/api/v1/results", serviceResultsHandler)
|
|
http.HandleFunc("/health", healthHandler)
|
|
http.Handle("/", http.FileServer(http.Dir("./static")))
|
|
if cfg.Metrics {
|
|
http.Handle("/metrics", promhttp.Handler())
|
|
}
|
|
log.Println("[main][main] Listening on port 8080")
|
|
go watchdog.Monitor(cfg)
|
|
log.Fatal(http.ListenAndServe(":8080", nil))
|
|
}
|
|
|
|
func loadConfiguration() *config.Config {
|
|
var err error
|
|
customConfigFile := os.Getenv("GATUS_CONFIG_FILE")
|
|
if len(customConfigFile) > 0 {
|
|
err = config.Load(customConfigFile)
|
|
} else {
|
|
err = config.LoadDefaultConfiguration()
|
|
}
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return config.Get()
|
|
}
|
|
|
|
func serviceResultsHandler(writer http.ResponseWriter, _ *http.Request) {
|
|
serviceResults := watchdog.GetServiceResults()
|
|
data, err := json.Marshal(serviceResults)
|
|
if err != nil {
|
|
log.Printf("[main][serviceResultsHandler] Unable to marshall object to JSON: %s", err.Error())
|
|
writer.WriteHeader(http.StatusInternalServerError)
|
|
_, _ = writer.Write([]byte("Unable to marshall object to JSON"))
|
|
return
|
|
}
|
|
writer.Header().Add("Content-type", "application/json")
|
|
writer.WriteHeader(http.StatusOK)
|
|
_, _ = writer.Write(data)
|
|
}
|
|
|
|
func healthHandler(writer http.ResponseWriter, _ *http.Request) {
|
|
writer.Header().Add("Content-type", "application/json")
|
|
writer.WriteHeader(http.StatusOK)
|
|
_, _ = writer.Write([]byte("{\"status\":\"UP\"}"))
|
|
}
|