2019-09-05 01:37:13 +02:00
package main
import (
2021-02-06 02:45:28 +01:00
"log"
2019-12-04 22:44:35 +01:00
"os"
2021-02-06 02:45:28 +01:00
"os/signal"
"syscall"
2021-05-19 04:29:15 +02:00
"time"
2020-10-30 16:30:03 +01:00
2022-12-06 07:41:09 +01:00
"github.com/TwiN/gatus/v5/config"
"github.com/TwiN/gatus/v5/controller"
"github.com/TwiN/gatus/v5/storage/store"
"github.com/TwiN/gatus/v5/watchdog"
2019-09-05 01:37:13 +02:00
)
func main ( ) {
2021-05-19 04:29:15 +02:00
cfg , err := loadConfiguration ( )
if err != nil {
panic ( err )
}
2021-10-29 01:35:46 +02:00
initializeStorage ( cfg )
2021-05-19 04:29:15 +02:00
start ( cfg )
2021-02-06 02:45:28 +01:00
// Wait for termination signal
2021-05-19 04:29:15 +02:00
signalChannel := make ( chan os . Signal , 1 )
2021-02-06 02:45:28 +01:00
done := make ( chan bool , 1 )
2021-05-19 04:29:15 +02:00
signal . Notify ( signalChannel , os . Interrupt , syscall . SIGTERM )
2021-02-06 02:45:28 +01:00
go func ( ) {
2021-05-19 04:29:15 +02:00
<- signalChannel
2021-03-04 04:31:55 +01:00
log . Println ( "Received termination signal, attempting to gracefully shut down" )
2021-05-19 04:29:15 +02:00
stop ( )
save ( )
2021-02-06 02:45:28 +01:00
done <- true
} ( )
<- done
log . Println ( "Shutting down" )
2019-09-07 03:59:50 +02:00
}
2021-07-09 05:39:12 +02:00
func start ( cfg * config . Config ) {
2022-07-29 02:07:53 +02:00
go controller . Handle ( cfg )
2021-07-09 05:39:12 +02:00
watchdog . Monitor ( cfg )
go listenToConfigurationFileChanges ( cfg )
}
2021-05-19 04:29:15 +02:00
func stop ( ) {
watchdog . Shutdown ( )
controller . Shutdown ( )
}
func save ( ) {
2021-10-29 01:35:46 +02:00
if err := store . Get ( ) . Save ( ) ; err != nil {
2021-05-19 04:29:15 +02:00
log . Println ( "Failed to save storage provider:" , err . Error ( ) )
}
}
func loadConfiguration ( ) ( cfg * config . Config , err error ) {
2020-03-08 23:16:39 +01:00
customConfigFile := os . Getenv ( "GATUS_CONFIG_FILE" )
if len ( customConfigFile ) > 0 {
2021-05-19 04:29:15 +02:00
cfg , err = config . Load ( customConfigFile )
2019-12-04 22:44:35 +01:00
} else {
2021-05-19 04:29:15 +02:00
cfg , err = config . LoadDefaultConfiguration ( )
2019-12-04 22:44:35 +01:00
}
2021-05-19 04:29:15 +02:00
return
}
2021-10-29 01:35:46 +02:00
// initializeStorage initializes the storage provider
//
// Q: "TwiN, why are you putting this here? Wouldn't it make more sense to have this in the config?!"
// A: Yes. Yes it would make more sense to have it in the config package. But I don't want to import
2022-12-06 07:41:09 +01:00
// the massive SQL dependencies just because I want to import the config, so here we are.
2021-10-29 01:35:46 +02:00
func initializeStorage ( cfg * config . Config ) {
err := store . Initialize ( cfg . Storage )
if err != nil {
panic ( err )
}
// Remove all EndpointStatus that represent endpoints which no longer exist in the configuration
var keys [ ] string
for _ , endpoint := range cfg . Endpoints {
keys = append ( keys , endpoint . Key ( ) )
}
numberOfEndpointStatusesDeleted := store . Get ( ) . DeleteAllEndpointStatusesNotInKeys ( keys )
if numberOfEndpointStatusesDeleted > 0 {
log . Printf ( "[config][validateStorageConfig] Deleted %d endpoint statuses because their matching endpoints no longer existed" , numberOfEndpointStatusesDeleted )
}
}
2021-05-19 04:29:15 +02:00
func listenToConfigurationFileChanges ( cfg * config . Config ) {
for {
time . Sleep ( 30 * time . Second )
if cfg . HasLoadedConfigurationFileBeenModified ( ) {
log . Println ( "[main][listenToConfigurationFileChanges] Configuration file has been modified" )
2021-12-04 00:20:09 +01:00
stop ( )
time . Sleep ( time . Second ) // Wait a bit to make sure everything is done.
2021-05-19 04:29:15 +02:00
save ( )
updatedConfig , err := loadConfiguration ( )
if err != nil {
if cfg . SkipInvalidConfigUpdate {
log . Println ( "[main][listenToConfigurationFileChanges] Failed to load new configuration:" , err . Error ( ) )
log . Println ( "[main][listenToConfigurationFileChanges] The configuration file was updated, but it is not valid. The old configuration will continue being used." )
// Update the last file modification time to avoid trying to process the same invalid configuration again
cfg . UpdateLastFileModTime ( )
continue
} else {
panic ( err )
}
}
2021-12-04 00:20:09 +01:00
initializeStorage ( updatedConfig )
2021-05-19 04:29:15 +02:00
start ( updatedConfig )
return
}
2019-12-04 22:44:35 +01:00
}
}