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

74 lines
1.6 KiB
Go
Raw Normal View History

2021-02-01 10:13:38 +00:00
package main
import (
"log"
2021-02-05 06:25:12 +00:00
"net/http"
2021-02-01 10:13:38 +00:00
"os"
2021-08-09 07:18:30 +00:00
"os/signal"
"runtime"
2021-08-09 07:18:30 +00:00
"time"
2021-02-01 10:13:38 +00:00
2021-09-16 03:31:04 +00:00
_ "net/http/pprof"
2021-02-05 06:25:12 +00:00
2021-02-01 10:13:38 +00:00
"github.com/RaaLabs/steward"
)
// Use ldflags to set version
// env CONFIGFOLDER=./etc/ go run -ldflags "-X main.version=v0.1.10" --race ./cmd/steward/.
// or
// env GOOS=linux GOARCH=amd64 go build -ldflags "-X main.version=v0.1.10" -o steward
var version string
2021-02-01 10:13:38 +00:00
func main() {
2021-08-16 11:01:12 +00:00
// 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
}
2021-02-01 10:13:38 +00:00
// Start profiling if profiling port is specified
if c.ProfilingPort != "" {
2021-02-05 06:25:12 +00:00
go func() {
http.ListenAndServe("localhost:"+c.ProfilingPort, nil)
2021-02-05 06:25:12 +00:00
}()
}
if c.SetBlockProfileRate != 0 {
2021-12-31 06:02:50 +00:00
runtime.SetBlockProfileRate(c.SetBlockProfileRate)
}
s, err := steward.NewServer(c, version)
2021-02-01 10:13:38 +00:00
if err != nil {
2021-03-12 09:41:03 +00:00
log.Printf("%v\n", err)
2021-02-01 10:13:38 +00:00
os.Exit(1)
}
2021-08-09 07:18:30 +00:00
// 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
2021-09-23 03:46:25 +00:00
log.Printf("Got exit signal, terminating all processes, %v\n", sig)
2021-08-09 07:18:30 +00:00
// 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()
2021-02-01 10:13:38 +00:00
}