This repository was archived by the owner on Aug 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathmain.go
76 lines (67 loc) · 1.99 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
71
72
73
74
75
76
package main
import (
"flag"
"fmt"
"github.com/grafana/metrictank/logger"
log "github.com/sirupsen/logrus"
"net/http"
"net/url"
"runtime"
)
var (
version = "(none)"
showVersion = flag.Bool("version", false, "print version string")
metrictankUrl = flag.String("metrictank-url", "http://localhost:6060", "metrictank address")
graphiteURL = flag.String("graphite-url", "http://localhost:8080", "graphite-api address")
importerURL = flag.String("importer-url", "", "mt-whisper-importer-writer address")
addr = flag.String("addr", ":80", "http service address")
defaultOrgId = flag.Int("default-org-id", -1, "default org ID to send to downstream services if none is provided")
brokers = flag.String("kafka-tcp-addr", "localhost:9092", "kafka tcp address(es) for metrics, in csv host[:port] format")
)
type Urls struct {
metrictank *url.URL
graphite *url.URL
bulkImporter *url.URL
kafkaBrokers string
}
func init() {
formatter := &logger.TextFormatter{}
formatter.TimestampFormat = "2006-01-02 15:04:05.000"
log.SetFormatter(formatter)
log.SetLevel(log.InfoLevel)
}
func main() {
flag.Usage = func() {
fmt.Println("mt-gateway")
fmt.Println("Provides an HTTP gateway for interacting with metrictank, including metrics ingestion")
fmt.Println()
fmt.Println("Usage:")
fmt.Println()
fmt.Println(" mt-gateway [flags]")
fmt.Println()
fmt.Println("Flags:")
flag.PrintDefaults()
}
flag.Parse()
if *showVersion {
fmt.Printf("mt-gateway (version: %s - runtime: %s)\n", version, runtime.Version())
return
}
var err error
urls := Urls{}
urls.kafkaBrokers = *brokers
urls.metrictank, err = url.Parse(*metrictankUrl)
if err != nil {
log.Fatal(err)
}
urls.graphite, err = url.Parse(*graphiteURL)
if err != nil {
log.Fatal(err)
}
urls.bulkImporter, err = url.Parse(*importerURL)
if err != nil {
log.Fatal(err)
}
log.WithField("addr", *addr).Info("starting server")
log.WithError(http.ListenAndServe(*addr, NewApi(urls).Mux())).Fatal("terminating")
}