1
0
Fork 0
mirror of https://github.com/TwiN/gatus.git synced 2024-12-15 17:51:09 +00:00
twin-gatus/main.go

59 lines
1.5 KiB
Go
Raw Normal View History

2019-09-04 23:37:13 +00:00
package main
import (
"encoding/json"
2019-11-16 20:48:37 +00:00
"github.com/TwinProduction/gatus/config"
2019-10-06 02:20:36 +00:00
"github.com/TwinProduction/gatus/core"
"github.com/TwinProduction/gatus/watchdog"
2019-11-16 20:48:37 +00:00
"github.com/prometheus/client_golang/prometheus/promhttp"
"log"
"net/http"
"os"
2019-09-04 23:37:13 +00:00
)
func main() {
cfg := loadConfiguration()
go watchdog.Monitor(cfg)
http.HandleFunc("/api/v1/results", serviceResultsHandler)
http.HandleFunc("/health", healthHandler)
2019-09-12 20:15:42 +00:00
http.Handle("/", http.FileServer(http.Dir("./static")))
if cfg.Metrics {
2019-11-16 20:48:37 +00:00
http.Handle("/metrics", promhttp.Handler())
}
2019-10-06 02:20:36 +00:00
log.Println("[main][main] Listening on port 8080")
log.Fatal(http.ListenAndServe(":8080", nil))
}
func loadConfiguration() *config.Config {
args := os.Args
var err error
if len(args) == 2 {
err = config.Load(args[1])
} else {
err = config.LoadDefaultConfiguration()
}
if err != nil {
panic(err)
}
return config.Get()
}
2019-11-16 20:48:37 +00:00
func serviceResultsHandler(writer http.ResponseWriter, _ *http.Request) {
serviceResults := watchdog.GetServiceResults()
writer.WriteHeader(http.StatusOK)
_, _ = writer.Write(structToJsonBytes(serviceResults))
}
2019-11-16 20:48:37 +00:00
func healthHandler(writer http.ResponseWriter, _ *http.Request) {
writer.WriteHeader(http.StatusOK)
_, _ = writer.Write(structToJsonBytes(&core.HealthStatus{Status: "UP"}))
}
func structToJsonBytes(obj interface{}) []byte {
bytes, err := json.Marshal(obj)
if err != nil {
log.Printf("[main][structToJsonBytes] Unable to marshall object to JSON: %s", err.Error())
2019-09-07 00:25:31 +00:00
}
return bytes
2019-09-04 23:37:13 +00:00
}