-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
903 lines (740 loc) · 23.4 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
package main
import (
"context"
"crypto/tls"
"encoding/json"
"errors"
"flag"
"fmt"
"io"
"math"
"net/http"
"net/http/httputil"
"os"
"runtime/debug"
"strconv"
"sync"
"time"
"github.com/go-chi/chi/v5"
"github.com/go-chi/chi/v5/middleware"
influxdb2 "github.com/influxdata/influxdb-client-go/v2"
"github.com/sirupsen/logrus"
"github.com/spf13/viper"
)
type Configuration struct {
Authorization string `mapstructure:"authorization"`
Database InfluxConfiguration `mapstructure:"database"`
Debug bool `mapstructure:"debug"`
ListenIP string `mapstructure:"listen_ip"`
ListenPort string `mapstructure:"listen_port"`
Privileged bool `mapstructure:"privileged"`
Satellites map[string]Satellite `mapstructure:"satellites"`
Targets map[string]Target `mapstructure:"targets"`
Version int64 `mapstructure:"version"`
}
type InfluxConfiguration struct {
Host string `mapstructure:"host"`
Token string `mapstructure:"token"`
Org string `mapstructure:"org"`
Bucket string `mapstructure:"bucket"`
}
type ErrorResponse struct {
Errors []*ErrorPacket `json:"errors"`
}
type ErrorPacket struct {
Status string `json:"status"`
Source string `json:"source"`
Title string `json:"title"`
Detail string `json:"detail"`
}
type Satellite struct {
Active bool `mapstructure:"active"`
Name string `mapstructure:"name"`
Secret string `mapstructure:"secret"`
Targets []string `mapstructure:"targets"`
LastData time.Time `mapstructure:"last_data" json:"-"`
Health bool `mapstructure:"health" json:"-"`
}
type SatelliteConfig struct {
Active bool `mapstructure:"active"`
Name string `mapstructure:"name"`
Targets []string `mapstructure:"targets"`
}
type ResponsePacket struct {
SatelliteName string `mapstructure:"satellite_name"`
TargetName string `mapstructure:"target_name"`
ProbeType string `mapstructure:"probe_type"`
Probes []Probe `mapstructure:"probes"`
}
type SatelliteCreateResponsePacket struct {
Active bool `mapstructure:"active"`
Name string `mapstructure:"satellite_name"`
Secret string `mapstructure:"secret"`
}
type Probe struct {
MinRTT float64 `mapstructure:"min_rtt"`
MaxRTT float64 `mapstructure:"max_rtt"`
Median float64 `mapstructure:"median"`
StdDev float64 `mapstructure:"stddev"`
Loss float64 `mapstructure:"loss"`
NumProbes int `mapstructure:"num_probes"`
Timestamp time.Time `mapstructure:"timestamp"`
}
type Target struct {
Name string `mapstructure:"name"`
Host string `mapstructure:"host"`
ProbeType string `mapstructure:"probe_type"`
Probes int `mapstructure:"probes"`
Interval int `mapstructure:"interval"`
BatchSize int `mapstructure:"batch_size"`
}
type Worker struct {
Target Target
HeadUrl string
ProbeName string
Id int
Err error
}
var cMutex sync.Mutex
var Config Configuration
var ConfigFile string
var Client influxdb2.Client
var log *logrus.Logger
var buildtime = ""
var built = func() string {
if info, ok := debug.ReadBuildInfo(); ok {
for _, setting := range info.Settings {
if setting.Key == "vcs.time" {
return setting.Value
}
}
}
return buildtime
}()
var commitS = ""
var commit = func() string {
if info, ok := debug.ReadBuildInfo(); ok {
for _, setting := range info.Settings {
if setting.Key == "vcs.revision" {
return setting.Value
}
}
}
return commitS
}()
var version = "0.0.3"
const apiVersion = "0.3.0"
const HeaderAuthorization = "X-Authorization"
const HeaderNprobeVersion = "X-Nprobe-Version"
const HeaderNprobeApiVersion = "X-Nprobe-Api-Version"
const HeaderNprobeConfig = "X-Nprobe-Config"
const HeaderNprobePayloadHash = "X-Nprobe-Hash"
const DefaultProbeType = "icmp"
const DefaultBatchSize = 5
const DefaultProbes = 5
const DefaultInterval = 30
func main() {
if len(commit) > 0 {
version = version + "-" + commit[0:7]
}
log = logrus.New()
log.SetLevel(logrus.InfoLevel)
log.SetFormatter(&logrus.TextFormatter{
DisableColors: true,
FullTimestamp: true,
})
hostname, err := os.Hostname()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
configFile := flag.String("config", "config/config.json", "config file")
debugMode := flag.Bool("debug", false, "enable debug mode")
headNode := flag.String("head", "", "fqdn / ip of head node")
insecureTls := flag.Bool("insecure-tls", false, "disable use of tls cert checking")
mode := flag.String("mode", "satellite", "head / satellite")
notls := flag.Bool("notls", false, "disable use of tls")
privileged := flag.Bool("privileged", false, "enable privileged mode")
probeName := flag.String("name", hostname, "name of probe")
flag.Parse()
if *debugMode {
log.SetLevel(logrus.DebugLevel)
Config.Debug = true
}
if *privileged {
Config.Privileged = true
}
if *headNode == "" {
*mode = "head"
}
log.WithFields(logrus.Fields{
"host": *probeName,
"version": version,
"built": built,
"mode": *mode,
}).Info("nprobe is starting")
if *mode == "head" {
parseConfig(configFile)
ConfigFile = *configFile
if Config.Database.Host != "" {
Client = influxdb2.NewClient(Config.Database.Host, Config.Database.Token)
defer Client.Close()
} else {
log.Warn("No Database configuration")
}
if Config.ListenPort == "" {
Config.ListenPort = "8000"
}
router := chi.NewRouter()
router.Use(middleware.Logger)
// make use of our middleware to set content type and such
router.Use(commonMiddleware)
router.Group(func(router chi.Router) {
router.Get("/healthz", HealthRequest)
router.Get("/satellites/{name}", GetSatellite)
router.Get("/satellites/{name}/targets", GetTargets)
router.Put("/satellites/{name}/{target}/metrics", SubmitTarget)
router.Get("/version", VersionRequest)
})
// Private Routes
// Require Authentication
router.Group(func(router chi.Router) {
router.Use(authMiddleware)
router.Get("/config", ConfigGet)
router.Post("/config", ConfigReload)
router.Put("/config", ConfigUpload)
router.Patch("/satellites/{name}", UpdateSatellite)
router.Put("/satellites/{name}", CreateSatellite)
router.Delete("/satellites/{name}", DeleteSatellite)
})
log.Fatal(http.ListenAndServe(Config.ListenIP+":"+Config.ListenPort, router))
} else {
headUrl := "https://"
if *notls {
headUrl = "http://"
}
headUrl = headUrl + *headNode + "/"
request, _ := http.NewRequest("GET", headUrl+"satellites/"+*probeName+"/targets", nil)
request.Header.Set(HeaderAuthorization, os.Getenv("NPROBE_SECRET"))
t := &http.Transport{}
if !*insecureTls {
t = &http.Transport{
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true,
},
}
}
client := &http.Client{Transport: t, Timeout: 15 * time.Second}
response, err := client.Do(request)
if err != nil {
log.WithFields(logrus.Fields{"error": err}).Fatal("Error retrieving configuration from head")
} else {
if response.StatusCode != 200 {
errorMsg, _ := io.ReadAll(response.Body)
switch response.StatusCode {
case 403:
log.WithFields(logrus.Fields{"Response Status": response.StatusCode}).
Error("Error talking to head - validate that your authorization is correct")
case 404:
log.WithFields(logrus.Fields{"Response Status": response.StatusCode}).
Error("Error talking to head - validate that your satellite name is correct")
default:
log.WithFields(logrus.Fields{"Response Status": response.StatusCode}).
Error("Error talking to head")
}
log.WithFields(logrus.Fields{"Raw Error Message": string(errorMsg)}).
Debug("Error talking to head")
log.Fatal("Abort - critical error")
}
data, _ := io.ReadAll(response.Body)
var targets []Target
err := json.Unmarshal(data, &targets)
if err != nil {
log.WithFields(logrus.Fields{"error": err}).Fatal("Error while processing configuration")
}
log.WithFields(logrus.Fields{
"targets": targets,
}).Infof("Targets received")
if headConfigVersion, err := strconv.Atoi(response.Header.Get(HeaderNprobeConfig)); err == nil {
Config.Version = int64(headConfigVersion)
} else {
log.Infof("Config version is weird: %s", response.Header.Get(HeaderNprobeConfig))
}
log.Debug("Configuration received")
workerChan := make(chan *Worker, len(targets))
i := 0
for _, k := range targets {
wk := &Worker{
Target: k,
HeadUrl: headUrl,
ProbeName: *probeName,
Id: i}
log.WithFields(logrus.Fields{
"worker id": i,
"target": wk.Target.Name,
"type": wk.Target.ProbeType,
}).Info("Launching worker")
go wk.HandleProbe(workerChan)
i++
// put a few seconds in between starting the worker
time.Sleep(5 * time.Second)
}
// read the channel, it will block until something is written, then a new
// goroutine will start
for wk := range workerChan {
// log the error
log.WithFields(logrus.Fields{
"worker id": wk.Id,
"target": wk.Target.Name,
"error": wk.Err,
}).Error()
// reset err
wk.Err = nil
// a goroutine has ended, restart it
go wk.HandleProbe(workerChan)
}
}
}
}
func ConfigReload(_ http.ResponseWriter, r *http.Request) {
log.Infof("Config Reload triggered")
parseConfig(&ConfigFile)
}
func ConfigGet(w http.ResponseWriter, r *http.Request) {
log.Infof("Config Get requested")
cMutex.Lock()
err := json.NewEncoder(w).Encode(Config)
cMutex.Unlock()
if err != nil {
log.WithFields(logrus.Fields{"error": err}).Error()
}
}
func ConfigUpload(w http.ResponseWriter, r *http.Request) {
log.Infof("Config Upload started")
viper.SetConfigType("json")
err := viper.ReadConfig(r.Body)
if err != nil {
handleError(w, http.StatusServiceUnavailable, r.RequestURI, "Error while encoding targets", err)
}
var uploadedConfig Configuration
err = viper.Unmarshal(&uploadedConfig)
if err != nil {
log.WithFields(logrus.Fields{"error": err}).Fatal("Error while unmarshalling")
}
cMutex.Lock()
Config = uploadedConfig
// set Version of config file to NOW
now := time.Now()
Config.Version = now.Unix()
viper.Set("Version", Config.Version)
err = viper.WriteConfigAs(ConfigFile)
cMutex.Unlock()
if err != nil {
log.WithFields(logrus.Fields{"error": err}).Errorf("Error while writing config file")
} else {
log.Infof("New config (version %d) stored", Config.Version)
}
}
func WriteConfig() error {
now := time.Now()
Config.Version = now.Unix()
viper.Set("Version", Config.Version)
viper.Set("satellites", Config.Satellites)
viper.Set("targets", Config.Targets)
err := viper.WriteConfigAs(ConfigFile)
if err != nil {
log.WithFields(logrus.Fields{"error": err}).Errorf("Error while writing config file")
return err
} else {
log.Infof("New config (version %d) stored", Config.Version)
}
return nil
}
func GetSatellite(w http.ResponseWriter, r *http.Request) {
cMutex.Lock()
satellite, found := Config.Satellites[chi.URLParam(r, "name")]
cMutex.Unlock()
if !found {
handleError(w, http.StatusNotFound, r.RequestURI, "Requested item not found", nil)
return
}
if r.Header.Get(HeaderAuthorization) == satellite.Secret {
sJson, _ := json.Marshal(satellite)
var sConfig SatelliteConfig
json.Unmarshal([]byte(sJson), &sConfig)
err := json.NewEncoder(w).Encode(sConfig)
if err != nil {
log.WithFields(logrus.Fields{"error": err}).Error()
}
return
} else {
handleError(w, http.StatusForbidden, r.RequestURI, "You're not allowed here", nil)
return
}
}
func CreateSatellite(w http.ResponseWriter, r *http.Request) {
if r.Header.Get(HeaderAuthorization) == Config.Authorization {
satelliteName := chi.URLParam(r, "name")
cMutex.Lock()
_, found := Config.Satellites[chi.URLParam(r, "name")]
cMutex.Unlock()
if found {
handleError(w, http.StatusBadRequest, r.RequestURI, "Satellite already exists", nil)
return
}
var satelliteStruct Satellite
err := json.NewDecoder(r.Body).Decode(&satelliteStruct)
if err != nil {
log.WithFields(logrus.Fields{"error": err}).Error()
handleError(w, http.StatusInternalServerError, r.RequestURI, "Failure parsing request. Satellite not added.", nil)
return
}
log.WithFields(logrus.Fields{"satelliteStruct": satelliteStruct}).Debug()
satelliteStruct.Name = satelliteName
if satelliteStruct.Secret == "" {
satelliteStruct.Secret = RandomString(20)
}
Config.Satellites[satelliteName] = satelliteStruct
log.WithFields(logrus.Fields{"Config after appending new satellite": Config}).Debug()
cMutex.Lock()
err = WriteConfig()
if err != nil {
delete(Config.Satellites, satelliteName)
handleError(w, http.StatusInternalServerError, r.RequestURI, "Failure persisting config. Satellite not added.", nil)
return
}
cMutex.Unlock()
retSatelliteConfig := SatelliteCreateResponsePacket{
Name: satelliteStruct.Name,
Active: satelliteStruct.Active,
Secret: satelliteStruct.Secret,
}
err = json.NewEncoder(w).Encode(retSatelliteConfig)
if err != nil {
log.WithFields(logrus.Fields{"error": err}).Error()
}
return
} else {
handleError(w, http.StatusForbidden, r.RequestURI, "You're not allowed here", nil)
return
}
}
func UpdateSatellite(w http.ResponseWriter, r *http.Request) {
if r.Header.Get(HeaderAuthorization) == Config.Authorization {
satelliteName := chi.URLParam(r, "name")
cMutex.Lock()
satellite, found := Config.Satellites[satelliteName]
cMutex.Unlock()
if !found {
handleError(w, http.StatusBadRequest, r.RequestURI, "Satellite not found", nil)
return
}
var satelliteStruct Satellite
err := json.NewDecoder(r.Body).Decode(&satelliteStruct)
if err != nil {
log.WithFields(logrus.Fields{"error": err}).Error()
handleError(w, http.StatusInternalServerError, r.RequestURI, "Failure parsing request. Satellite not updated. ", nil)
return
}
log.WithFields(logrus.Fields{"satelliteStruct": satelliteStruct}).Debug()
satellite.Active = satelliteStruct.Active
satellite.Targets = satelliteStruct.Targets
if satelliteStruct.Secret != "" {
satellite.Secret = satelliteStruct.Secret
}
Config.Satellites[satelliteName] = satellite
log.WithFields(logrus.Fields{
"satellite": satellite.Name,
"Config": Config,
}).Debugf("Config after updating satellite")
cMutex.Lock()
err = WriteConfig()
if err != nil {
handleError(w, http.StatusInternalServerError, r.RequestURI, "Failure persisting config. Satellite not updated.", nil)
return
}
cMutex.Unlock()
} else {
handleError(w, http.StatusForbidden, r.RequestURI, "You're not allowed here", nil)
return
}
}
func DeleteSatellite(w http.ResponseWriter, r *http.Request) {
if r.Header.Get(HeaderAuthorization) == Config.Authorization {
satelliteName := chi.URLParam(r, "name")
cMutex.Lock()
satelliteStruct, found := Config.Satellites[chi.URLParam(r, "name")]
cMutex.Unlock()
if !found {
handleError(w, http.StatusBadRequest, r.RequestURI, "Satellite not found", nil)
return
}
cMutex.Lock()
delete(Config.Satellites, satelliteName)
err := WriteConfig()
if err != nil {
Config.Satellites[satelliteName] = satelliteStruct
handleError(w, http.StatusInternalServerError, r.RequestURI, "Failure persisting config. Satellite not removed.", nil)
return
}
cMutex.Unlock()
} else {
handleError(w, http.StatusForbidden, r.RequestURI, "You're not allowed here", nil)
return
}
}
func GetTargets(w http.ResponseWriter, r *http.Request) {
cMutex.Lock()
satellite, found := Config.Satellites[chi.URLParam(r, "name")]
cMutex.Unlock()
if !found {
handleError(w, http.StatusNotFound, r.RequestURI, "Requested item not found", nil)
return
}
if r.Header.Get(HeaderAuthorization) != satellite.Secret {
handleError(w, http.StatusForbidden, r.RequestURI, "You're not allowed here", nil)
return
}
if !satellite.Active {
handleError(w, http.StatusForbidden, r.RequestURI, "You're not allowed here",
errors.New("satellite marked inactive"))
return
}
if len(satellite.Targets) == 0 {
msg := "no targets for satellite configured"
handleError(w, http.StatusServiceUnavailable, r.RequestURI, msg, errors.New(msg))
return
}
var targets = make([]Target, len(satellite.Targets))
var i = 0
for _, k := range satellite.Targets {
targets[i] = Config.Targets[k]
i++
}
log.WithFields(logrus.Fields{
"satellite": satellite.Name,
"targets": targets,
}).Debugf("Satellite is receiving targets")
err := json.NewEncoder(w).Encode(targets)
if err != nil {
handleError(w, http.StatusServiceUnavailable, r.RequestURI, "Error while encoding targets", err)
}
}
func SubmitTarget(w http.ResponseWriter, r *http.Request) {
cMutex.Lock()
satelliteName := chi.URLParam(r, "name")
satellite, found := Config.Satellites[satelliteName]
//target := chi.URLParam(r, "target")
cMutex.Unlock()
if !found {
log.Infof("Satellite name is not found: %s", satelliteName)
handleError(w, http.StatusForbidden, r.RequestURI, "You're not allowed here", nil)
return
}
if r.Header.Get(HeaderAuthorization) != satellite.Secret {
handleError(w, http.StatusForbidden, r.RequestURI, "You're not allowed here", nil)
return
}
// we've authorized the request, now we parse the json
var responsePacket ResponsePacket
_ = json.NewDecoder(r.Body).Decode(&responsePacket)
log.WithFields(logrus.Fields{"responsePacket": responsePacket}).Debug()
if !satellite.Active {
handleError(w, http.StatusForbidden, r.RequestURI, "You're not allowed here - satellite is marked inactive", nil)
return
}
writeData(responsePacket)
cMutex.Lock()
s := Config.Satellites[responsePacket.SatelliteName]
s.LastData = time.Now()
Config.Satellites[responsePacket.SatelliteName] = s
cMutex.Unlock()
log.WithFields(logrus.Fields{"data": s}).Debug()
satelliteConfigVersion := r.Header.Get(HeaderNprobeConfig)
if sConfigVersion, err := strconv.Atoi(satelliteConfigVersion); err == nil {
if int64(sConfigVersion) < Config.Version {
w.WriteHeader(204)
}
} else {
log.Infof("Submitted Config version is weird: %s", satelliteConfigVersion)
}
}
func writeData(responsePacket ResponsePacket) {
if Config.Database.Host != "" {
// user blocking write client for writes to desired bucket
writeAPI := Client.WriteAPI(Config.Database.Org, Config.Database.Bucket)
// create point using fluent style
for _, probe := range responsePacket.Probes {
p := influxdb2.NewPointWithMeasurement("stat").
AddTag("unit", "milliseconds").
AddTag("target", responsePacket.TargetName+" ("+responsePacket.ProbeType+")").
AddTag("probe", responsePacket.SatelliteName).
AddField("stddev", probe.StdDev).
AddField("median", probe.Median).
AddField("max", probe.MaxRTT).
AddField("min", probe.MinRTT).
AddField("loss", probe.Loss).
SetTime(probe.Timestamp)
writeAPI.WritePoint(p)
}
}
}
func handleError(w http.ResponseWriter, status int, source string, title string, err error) {
log.WithFields(logrus.Fields{
"error": err,
"msg": title,
}).Error()
errorResponse := ErrorResponse{Errors: []*ErrorPacket{
{
Status: strconv.Itoa(status),
Source: source,
Title: title,
Detail: fmt.Sprintf("%v", err)}}}
e, _ := json.Marshal(errorResponse)
http.Error(w, string(e[:]), status)
}
func commonMiddleware(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
dumpRequest(r)
w.Header().Add("Content-Type", "application/vnd.api+json")
w.Header().Add(HeaderNprobeApiVersion, apiVersion)
w.Header().Add(HeaderNprobeVersion, version)
w.Header().Add(HeaderNprobeConfig, fmt.Sprintf("%d", Config.Version))
w.Header().Add("X-Powered-By", "nprobe")
next.ServeHTTP(w, r)
})
}
func authMiddleware(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Header.Get(HeaderAuthorization) == Config.Authorization {
next.ServeHTTP(w, r)
} else {
handleError(w, http.StatusForbidden, r.RequestURI, "You're not allowed here", nil)
return
}
})
}
func HealthRequest(w http.ResponseWriter, r *http.Request) {
log.Info("Running Health-Check")
msg := "Health Check not ok"
var err error
authHeader := r.Header.Get(HeaderAuthorization)
authedRequest := false
if authHeader == Config.Authorization {
authedRequest = true
}
if Client != nil {
health, err := Client.Health(context.Background())
if err != nil {
log.WithFields(logrus.Fields{"error": err}).Error()
if authedRequest {
if health != nil {
msg = fmt.Sprintf("Influx Error: %s", *health.Message)
}
} else {
// for unauthed requests to /health we don't want to leak the actual error
err = nil
}
handleError(w, http.StatusServiceUnavailable, "/healthz", msg, err)
return
}
}
// check each satellite
for _, k := range Config.Satellites {
if k.Active {
last := k.LastData
// find interval
interval := math.MaxInt64
for _, t := range k.Targets {
s := Config.Targets[t]
if s.Interval < interval {
interval = s.Interval
}
}
timeout := time.Now().Add(-time.Minute * time.Duration(int64(interval)))
if last.Before(timeout) {
msg = fmt.Sprintf("Probe '%s' has not come back in time. Last message from '%s'", k.Name, k.LastData)
log.WithFields(logrus.Fields{
"msg": msg,
}).Error("Health-Check error")
if !authedRequest {
msg = ""
}
handleError(w, http.StatusServiceUnavailable, "/healthz", msg, err)
return
}
}
}
log.Info("Health-Check completed OK")
}
func VersionRequest(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte(fmt.Sprintf("{ \"Version:\" \"%s\", \"Configuration:\" \"%d\" }", version, Config.Version)))
if err != nil {
log.WithFields(logrus.Fields{"error": err}).Error()
}
}
func dumpRequest(r *http.Request) {
if log.GetLevel() == logrus.DebugLevel {
requestDump, err := httputil.DumpRequest(r, true)
if err != nil {
log.WithFields(logrus.Fields{"error": err}).Error()
} else {
log.Debugf("%s", string(requestDump))
}
}
}
func parseConfig(configPtr *string) {
if Config.Debug {
viper.Set("Verbose", true)
}
viper.SetConfigFile(*configPtr) // name of config file (without extension)
viper.SetConfigType("json")
err := viper.ReadInConfig() // Find and read the config file
if err != nil { // Handle errors reading the config file
log.WithFields(logrus.Fields{"error": err}).Fatal("Error while processing configuration")
}
log.Infof("Using config file: %s\n", viper.ConfigFileUsed())
err = viper.Unmarshal(&Config)
if err != nil {
log.WithFields(logrus.Fields{"error": err}).Fatal("Error while unmarshalling")
}
// inject name from map names, apply defaults
for name, s := range Config.Satellites {
s.Name = name
Config.Satellites[name] = s
}
for name, k := range Config.Targets {
k.Name = name
if k.ProbeType == "" {
k.ProbeType = DefaultProbeType
}
if k.BatchSize == 0 {
k.BatchSize = DefaultBatchSize
}
if k.Interval == 0 {
k.Interval = DefaultInterval
}
if k.Probes == 0 {
k.Probes = DefaultProbes
}
Config.Targets[name] = k
}
// validate targets configured
for key := range Config.Satellites {
targets := Config.Satellites[key].Targets
for _, key2 := range targets {
target, ok := Config.Targets[key2]
if !ok {
log.WithFields(
logrus.Fields{"target": target}).Fatal("Target referenced is not defined. Configuration invalid.")
}
}
}
if Config.Authorization == "" {
log.Warn("Running without authorization")
}
// set Version of config file to NOW
now := time.Now()
Config.Version = now.Unix()
log.Debugf("%+v", Config)
}