2021-02-01 11:13:38 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
2021-02-05 07:25:12 +01:00
|
|
|
"net/http"
|
2021-02-01 11:13:38 +01:00
|
|
|
"os"
|
2021-08-09 09:18:30 +02:00
|
|
|
"os/signal"
|
2021-12-31 06:59:09 +01:00
|
|
|
"runtime"
|
2021-08-09 09:18:30 +02:00
|
|
|
"time"
|
2021-02-01 11:13:38 +01:00
|
|
|
|
2021-09-16 05:31:04 +02:00
|
|
|
_ "net/http/pprof"
|
2021-02-05 07:25:12 +01:00
|
|
|
|
2021-02-01 11:13:38 +01:00
|
|
|
"github.com/RaaLabs/steward"
|
|
|
|
)
|
|
|
|
|
2021-09-10 10:04:25 +02:00
|
|
|
// 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 11:13:38 +01:00
|
|
|
func main() {
|
2021-08-16 13:01:12 +02: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()
|
|
|
|
|
2021-03-01 20:49:43 +01:00
|
|
|
c := steward.NewConfiguration()
|
2021-03-24 10:14:17 +01:00
|
|
|
err := c.CheckFlags()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%v\n", err)
|
|
|
|
return
|
|
|
|
}
|
2021-02-01 11:13:38 +01:00
|
|
|
|
2021-02-25 13:08:10 +01:00
|
|
|
// Start profiling if profiling port is specified
|
2021-03-01 20:49:43 +01:00
|
|
|
if c.ProfilingPort != "" {
|
2021-02-05 07:25:12 +01:00
|
|
|
go func() {
|
2021-03-01 20:49:43 +01:00
|
|
|
http.ListenAndServe("localhost:"+c.ProfilingPort, nil)
|
2021-02-05 07:25:12 +01:00
|
|
|
}()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-12-31 06:59:09 +01:00
|
|
|
if c.SetBlockProfileRate != 0 {
|
2021-12-31 07:02:50 +01:00
|
|
|
runtime.SetBlockProfileRate(c.SetBlockProfileRate)
|
2021-12-31 06:59:09 +01:00
|
|
|
}
|
|
|
|
|
2021-09-10 10:04:25 +02:00
|
|
|
s, err := steward.NewServer(c, version)
|
2021-02-01 11:13:38 +01:00
|
|
|
if err != nil {
|
2021-03-12 10:41:03 +01:00
|
|
|
log.Printf("%v\n", err)
|
2021-02-01 11:13:38 +01:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2021-08-09 09:18:30 +02: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 05:46:25 +02:00
|
|
|
log.Printf("Got exit signal, terminating all processes, %v\n", sig)
|
2021-08-09 09:18:30 +02: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 11:13:38 +01:00
|
|
|
}
|