This repository has been archived by the owner on Jun 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
70 lines (53 loc) · 1.39 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package main
import (
"context"
"fmt"
"github.com/Gufran/flightpath/log"
"github.com/Gufran/flightpath/metrics"
"github.com/sirupsen/logrus"
"os"
"os/signal"
"github.com/Gufran/flightpath/discovery"
)
func main() {
config := discovery.NewEmptyConfig()
config.ParseFlags()
ctx, cancel := context.WithCancel(context.Background())
log.Init(config.Global.LogLevel, config.Global.LogFormat)
err := setupMetrics(ctx, config.Global)
if err != nil {
log.Global.WithError(err).Errorf("failed to initialize metrics subsystem")
}
exit := make(chan os.Signal, 1)
signal.Notify(exit, os.Interrupt)
shutdown, err := discovery.Start(ctx, config)
if err != nil {
logrus.Printf("failed to start service discovery server. %s", err)
return
}
<-exit
shutdown()
cancel()
}
func setupMetrics(ctx context.Context, config *discovery.GlobalConfig) error {
if config.MetricsSink == "" {
return nil
}
if config.MetricsSink == "dogstatsd" {
sink, err := metrics.NewStatsdSink(config.DogstatsdAddr, config.DogstatsdPort, config.DogstatsdNS)
if err != nil {
return err
}
metrics.SetSink(sink)
if config.EnableRuntimeMetrics {
go metrics.EnableRuntimeMetrics(ctx)
}
return nil
}
if config.MetricsSink == "stderr" {
sink := metrics.NewFileSink(os.Stderr, "plain")
metrics.SetSink(sink)
return nil
}
return fmt.Errorf("unsupported metrics sink: %s", config.MetricsSink)
}