1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2024-12-15 17:51:15 +00:00
ctrl/cmd/steward/main.go
2021-08-16 13:01:12 +02:00

63 lines
1.3 KiB
Go

package main
import (
"fmt"
"log"
"net/http"
"os"
"os/signal"
"time"
// _ "net/http/pprof"
"github.com/RaaLabs/steward"
)
func main() {
// defer profile.Start(profile.CPUProfile, profile.ProfilePath(".")).Stop()
// defer profile.Start(profile.TraceProfile, profile.ProfilePath(".")).Stop()
// defer profile.Start(profile.MemProfile, profile.MemProfileRate(1)).Stop()
c := steward.NewConfiguration()
err := c.CheckFlags()
if err != nil {
log.Printf("%v\n", err)
return
}
// Start profiling if profiling port is specified
if c.ProfilingPort != "" {
go func() {
http.ListenAndServe("localhost:"+c.ProfilingPort, nil)
}()
}
s, err := steward.NewServer(c)
if err != nil {
log.Printf("%v\n", err)
os.Exit(1)
}
// Start up the server
go s.Start()
// Wait for ctrl+c to stop the server.
sigCh := make(chan os.Signal, 1)
signal.Notify(sigCh, os.Interrupt)
// Block and wait for CTRL+C
sig := <-sigCh
fmt.Printf("Got exit signal, terminating all processes, %v\n", sig)
// Adding a safety function here so we can make sure that all processes
// are stopped after a given time if the context cancelation hangs.
go func() {
time.Sleep(time.Second * 10)
log.Printf("error: doing a non graceful shutdown of all processes..\n")
os.Exit(1)
}()
// Stop all processes.
s.Stop()
}