mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-22 07:53:38 +01:00
8e2a2c4dbc
- Shutdown the HTTP server before exiting - Persist data to store before exiting, if applicable
50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
"github.com/TwinProduction/gatus/config"
|
|
"github.com/TwinProduction/gatus/controller"
|
|
"github.com/TwinProduction/gatus/storage"
|
|
"github.com/TwinProduction/gatus/watchdog"
|
|
)
|
|
|
|
func main() {
|
|
cfg := loadConfiguration()
|
|
go watchdog.Monitor(cfg)
|
|
go controller.Handle()
|
|
// Wait for termination signal
|
|
sig := make(chan os.Signal, 1)
|
|
done := make(chan bool, 1)
|
|
signal.Notify(sig, os.Interrupt, os.Kill, syscall.SIGTERM)
|
|
go func() {
|
|
<-sig
|
|
log.Println("Received interruption signal, attempting to gracefully shut down")
|
|
controller.Shutdown()
|
|
err := storage.Get().Save()
|
|
if err != nil {
|
|
log.Println("Failed to save storage provider:", err.Error())
|
|
}
|
|
done <- true
|
|
}()
|
|
<-done
|
|
log.Println("Shutting down")
|
|
}
|
|
|
|
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()
|
|
}
|