forked from teralytics/prometheus-ecs-discovery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
706 lines (639 loc) · 20.2 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
// Copyright 2017 Teralytics.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"flag"
"fmt"
"io/ioutil"
"log"
"strconv"
"strings"
"time"
"context"
"github.com/aws/aws-sdk-go-v2/aws/awserr"
"github.com/aws/aws-sdk-go-v2/aws/external"
"github.com/aws/aws-sdk-go-v2/aws/stscreds"
"github.com/aws/aws-sdk-go-v2/service/ec2"
"github.com/aws/aws-sdk-go-v2/service/ecs"
"github.com/aws/aws-sdk-go-v2/service/sts"
"github.com/go-yaml/yaml"
)
type labels struct {
TaskArn string `yaml:"task_arn"`
TaskName string `yaml:"task_name"`
JobName string `yaml:"job,omitempty"`
TaskRevision string `yaml:"task_revision"`
TaskGroup string `yaml:"task_group"`
ClusterArn string `yaml:"cluster_arn"`
ContainerName string `yaml:"container_name"`
ContainerArn string `yaml:"container_arn"`
DockerImage string `yaml:"docker_image"`
MetricsPath string `yaml:"__metrics_path__,omitempty"`
Scheme string `yaml:"__scheme__,omitempty"`
}
// Docker label for enabling dynamic port detection
const dynamicPortLabel = "PROMETHEUS_DYNAMIC_EXPORT"
var cluster = flag.String("config.cluster", "", "name of the cluster to scrape")
var outFile = flag.String("config.write-to", "ecs_file_sd.yml", "path of file to write ECS service discovery information to")
var interval = flag.Duration("config.scrape-interval", 60*time.Second, "interval at which to scrape the AWS API for ECS service discovery information")
var times = flag.Int("config.scrape-times", 0, "how many times to scrape before exiting (0 = infinite)")
var roleArn = flag.String("config.role-arn", "", "ARN of the role to assume when scraping the AWS API (optional)")
var prometheusPortLabel = flag.String("config.port-label", "PROMETHEUS_EXPORTER_PORT", "Docker label to define the scrape port of the application (if missing an application won't be scraped)")
var prometheusPathLabel = flag.String("config.path-label", "PROMETHEUS_EXPORTER_PATH", "Docker label to define the scrape path of the application")
var prometheusSchemeLabel= flag.String("config.scheme-label", "PROMETHEUS_EXPORTER_SCHEME", "Docker label to define the scheme of the target application")
var prometheusFilterLabel = flag.String("config.filter-label", "", "Docker label (and optionally value) to require to scrape the application")
var prometheusServerNameLabel = flag.String("config.server-name-label", "PROMETHEUS_EXPORTER_SERVER_NAME", "Docker label to define the server name")
var prometheusJobNameLabel = flag.String("config.job-name-label", "PROMETHEUS_EXPORTER_JOB_NAME", "Docker label to define the job name")
var prometheusDynamicPortDetection = flag.Bool("config.dynamic-port-detection", false, fmt.Sprintf("If true, only tasks with the Docker label %s=1 will be scraped", dynamicPortLabel))
// logError is a convenience function that decodes all possible ECS
// errors and displays them to standard error.
func logError(err error) {
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
switch aerr.Code() {
case ecs.ErrCodeException:
log.Println(ecs.ErrCodeException, aerr.Error())
case ecs.ErrCodeServerException:
log.Println(ecs.ErrCodeServerException, aerr.Error())
case ecs.ErrCodeInvalidParameterException:
log.Println(ecs.ErrCodeInvalidParameterException, aerr.Error())
case ecs.ErrCodeClusterNotFoundException:
log.Println(ecs.ErrCodeClusterNotFoundException, aerr.Error())
default:
log.Println(aerr.Error())
}
} else {
log.Println(err.Error())
}
}
}
// GetClusters retrieves a list of *ClusterArns from Amazon ECS,
// dealing with the mandatory pagination as needed.
func GetClusters(svc *ecs.Client) (*ecs.ListClustersOutput, error) {
input := &ecs.ListClustersInput{}
output := &ecs.ListClustersOutput{}
for {
req := svc.ListClustersRequest(input)
myoutput, err := req.Send(context.Background())
if err != nil {
return nil, err
}
output.ClusterArns = append(output.ClusterArns, myoutput.ClusterArns...)
if myoutput.NextToken == nil {
break
}
input.NextToken = myoutput.NextToken
}
return output, nil
}
// AugmentedTask represents an ECS task augmented with an extra set of
// structures representing the ECS task definition and EC2 instance
// associated with the running task.
type AugmentedTask struct {
*ecs.Task
TaskDefinition *ecs.TaskDefinition
EC2Instance *ec2.Instance
}
// PrometheusContainer represents a tuple of information
// (Container Name, Container ARN, Docker image, Port)
// extracted from a task, its task definition
type PrometheusContainer struct {
ContainerName string
ContainerArn string
DockerImage string
Port int
}
// PrometheusTaskInfo is the final structure that will be
// output as a Prometheus file service discovery config.
type PrometheusTaskInfo struct {
Targets []string `yaml:"targets"`
Labels labels `yaml:"labels"`
}
// ExporterInformation returns a list of []*PrometheusTaskInfo
// enumerating the IPs, ports that the task's containers exports
// to Prometheus (one per container), so long as the Docker
// labels in its corresponding container definition for the
// container in the task has a PROMETHEUS_EXPORTER_PORT
//
// Example:
// ...
// "Name": "apache",
// "DockerLabels": {
// "PROMETHEUS_EXPORTER_PORT": "1234"
// },
// ...
// "PortMappings": [
// {
// "ContainerPort": 1883,
// "HostPort": 0,
// "Protocol": "tcp"
// },
// {
// "ContainerPort": 1234,
// "HostPort": 0,
// "Protocol": "tcp"
// }
// ],
// ...
func (t *AugmentedTask) ExporterInformation() []*PrometheusTaskInfo {
ret := []*PrometheusTaskInfo{}
var host string
var ip string
if t.LaunchType != ecs.LaunchTypeFargate {
if t.EC2Instance == nil {
return ret
}
if len(t.EC2Instance.NetworkInterfaces) == 0 {
return ret
}
for _, iface := range t.EC2Instance.NetworkInterfaces {
if iface.PrivateIpAddress != nil && *iface.PrivateIpAddress != "" &&
iface.PrivateDnsName != nil && *iface.PrivateDnsName != "" &&
*iface.PrivateDnsName == *t.EC2Instance.PrivateDnsName {
ip = *iface.PrivateIpAddress
break
}
}
if ip == "" {
return ret
}
}
var filter []string
if *prometheusFilterLabel != "" {
filter = strings.Split(*prometheusFilterLabel, "=")
}
for _, i := range t.Containers {
// Let's go over the containers to see which ones are defined
var d ecs.ContainerDefinition
for _, d = range t.TaskDefinition.ContainerDefinitions {
if *i.Name == *d.Name {
// Aha, the container definition match this container we
// are inspecting, stop the loop cos we got the D now.
break
}
}
if *i.Name != *d.Name && t.LaunchType != ecs.LaunchTypeFargate {
// Nope, no match, this container cannot be exported. We continue.
continue
}
var hostPort int64
if *prometheusDynamicPortDetection {
v, ok := d.DockerLabels[dynamicPortLabel]
if !ok || v != "1" {
// Nope, no Prometheus-exported port in this container def.
// This container is no good. We continue.
continue
}
if len(i.NetworkBindings) != 1 {
// Dynamic port mapping is only supported with a single binding.
// Otherwise, how would we know which port to use?
continue
}
if port := i.NetworkBindings[0].HostPort; port != nil {
hostPort = *port
}
} else {
v, ok := d.DockerLabels[*prometheusPortLabel]
if !ok {
// Nope, no Prometheus-exported port in this container def.
// This container is no good. We continue.
continue
}
if len(filter) != 0 {
v, ok := d.DockerLabels[filter[0]]
if !ok {
// Nope, the filter label isn't present.
continue
}
if len(filter) == 2 && v != filter[1] {
// Nope, the filter label value doesn't match.
continue
}
}
var exporterPort int
var err error
if exporterPort, err = strconv.Atoi(v); err != nil || exporterPort < 0 {
// This container has an invalid port definition.
// This container is no good. We continue.
continue
}
if len(i.NetworkBindings) > 0 {
for _, nb := range i.NetworkBindings {
if int(*nb.ContainerPort) == exporterPort {
hostPort = *nb.HostPort
}
}
} else {
for _, ni := range i.NetworkInterfaces {
if *ni.PrivateIpv4Address != "" {
ip = *ni.PrivateIpv4Address
}
}
hostPort = int64(exporterPort)
}
}
if hostPort == 0 {
// This container has network bindings but none have a container port matching the exporter port.
// Since the host port is mandatory for the generated Prometheus config and host port 0 does
// not make sense, this container will be skipped.
continue
}
var exporterServerName string
var exporterPath string
var scheme string
var ok bool
exporterServerName, ok = d.DockerLabels[*prometheusServerNameLabel]
if ok {
host = strings.TrimRight(exporterServerName, "/")
} else {
// No server name, so fall back to ip address
host = ip
}
labels := labels{
TaskArn: *t.TaskArn,
TaskName: *t.TaskDefinition.Family,
JobName: d.DockerLabels[*prometheusJobNameLabel],
TaskRevision: fmt.Sprintf("%d", *t.TaskDefinition.Revision),
TaskGroup: *t.Group,
ClusterArn: *t.ClusterArn,
ContainerName: *i.Name,
ContainerArn: *i.ContainerArn,
DockerImage: *d.Image,
}
exporterPath, ok = d.DockerLabels[*prometheusPathLabel]
if ok {
labels.MetricsPath = exporterPath
}
scheme, ok = d.DockerLabels[*prometheusSchemeLabel]
if ok {
labels.Scheme = scheme
}
ret = append(ret, &PrometheusTaskInfo{
Targets: []string{fmt.Sprintf("%s:%d", host, hostPort)},
Labels: labels,
})
}
return ret
}
// AddTaskDefinitionsOfTasks adds to each Task the TaskDefinition
// corresponding to it.
func AddTaskDefinitionsOfTasks(svc *ecs.Client, taskList []*AugmentedTask) ([]*AugmentedTask, error) {
task2def := make(map[string]*ecs.TaskDefinition)
for _, task := range taskList {
task2def[*task.TaskDefinitionArn] = nil
}
jobs := make(chan *ecs.DescribeTaskDefinitionInput, len(task2def))
results := make(chan struct {
out *ecs.DescribeTaskDefinitionResponse
err error
}, len(task2def))
for w := 1; w <= 4; w++ {
go func() {
for in := range jobs {
req := svc.DescribeTaskDefinitionRequest(in)
out, err := req.Send(context.Background())
results <- struct {
out *ecs.DescribeTaskDefinitionResponse
err error
}{out, err}
}
}()
}
for tn := range task2def {
m := string(append([]byte{}, tn...))
jobs <- &ecs.DescribeTaskDefinitionInput{TaskDefinition: &m}
}
close(jobs)
var err error
for range task2def {
result := <-results
if result.err != nil {
err = result.err
log.Printf("Error describing task definition: %s", err)
} else {
task2def[*result.out.TaskDefinition.TaskDefinitionArn] = result.out.TaskDefinition
}
}
if err != nil {
return nil, err
}
for _, task := range taskList {
task.TaskDefinition = task2def[*task.TaskDefinitionArn]
}
return taskList, nil
}
// StringToStarString converts a list of strings to a list of
// pointers to strings, which is a common requirement of the
// Amazon API.
func StringToStarString(s []string) []*string {
c := make([]*string, 0, len(s))
for n := range s {
c = append(c, &s[n])
}
return c
}
// SplitArray splits given array into chunks, it's usefull
// because AWS API has limits on number of elements you can
// submit via one call.
func SplitArray(a []string, size int) [][]string {
var splitted [][]string
for i := 0; i < len(a); i += size {
end := i + size
if end > len(a) {
end = len(a)
}
splitted = append(splitted, a[i:end])
}
return splitted
}
// DescribeInstancesUnpaginated describes a list of EC2 instances.
// It is unpaginated because the API function does not require
// pagination.
func DescribeInstancesUnpaginated(svc *ec2.Client, instanceIds []string) ([]ec2.Instance, error) {
if len(instanceIds) == 0 {
return nil, nil
}
finalOutput := &ec2.DescribeInstancesOutput{}
splittedInstanceIds := SplitArray(instanceIds, 100)
for _, chunkedInstanceIds := range splittedInstanceIds {
input := &ec2.DescribeInstancesInput{
InstanceIds: chunkedInstanceIds,
}
for {
req := svc.DescribeInstancesRequest(input)
output, err := req.Send(context.Background())
if err != nil {
return nil, err
}
log.Printf("Described %d EC2 reservations", len(output.Reservations))
finalOutput.Reservations = append(finalOutput.Reservations, output.Reservations...)
if output.NextToken == nil {
break
}
input.NextToken = output.NextToken
}
}
result := []ec2.Instance{}
for _, rsv := range finalOutput.Reservations {
for _, i := range rsv.Instances {
result = append(result, i)
}
}
return result, nil
}
// AddContainerInstancesToTasks adds to each Task the EC2 instance
// running its containers.
func AddContainerInstancesToTasks(svc *ecs.Client, svcec2 *ec2.Client, taskList []*AugmentedTask) ([]*AugmentedTask, error) {
clusterArnToContainerInstancesArns := make(map[string]map[string]*ecs.ContainerInstance)
for _, task := range taskList {
if task.ContainerInstanceArn != nil {
if _, ok := clusterArnToContainerInstancesArns[*task.ClusterArn]; !ok {
clusterArnToContainerInstancesArns[*task.ClusterArn] = make(map[string]*ecs.ContainerInstance)
}
clusterArnToContainerInstancesArns[*task.ClusterArn][*task.ContainerInstanceArn] = nil
}
}
instanceIDToEC2Instance := make(map[string]*ec2.Instance)
for clusterArn, containerInstancesArns := range clusterArnToContainerInstancesArns {
keys := make([]string, 0, len(containerInstancesArns))
for k := range containerInstancesArns {
keys = append(keys, k)
}
splittedKeys := SplitArray(keys, 100)
for _, chunkedKeys := range splittedKeys {
input := &ecs.DescribeContainerInstancesInput{
Cluster: &clusterArn,
ContainerInstances: chunkedKeys,
}
req := svc.DescribeContainerInstancesRequest(input)
output, err := req.Send(context.Background())
if err != nil {
return nil, err
}
if len(output.Failures) > 0 {
log.Printf("Described %d failures in cluster %s", len(output.Failures), clusterArn)
}
for _, ci := range output.ContainerInstances {
cInst := ci
clusterArnToContainerInstancesArns[clusterArn][*cInst.ContainerInstanceArn] = &cInst
instanceIDToEC2Instance[*cInst.Ec2InstanceId] = nil
}
}
}
if len(instanceIDToEC2Instance) == 0 {
return taskList, nil
}
keys := make([]string, 0, len(instanceIDToEC2Instance))
for id := range instanceIDToEC2Instance {
keys = append(keys, id)
}
instances, err := DescribeInstancesUnpaginated(svcec2, keys)
if err != nil {
return nil, err
}
for _, i := range instances {
inst := i
instanceIDToEC2Instance[*i.InstanceId] = &inst
}
for _, task := range taskList {
if task.ContainerInstanceArn != nil {
containerInstance, ok := clusterArnToContainerInstancesArns[*task.ClusterArn][*task.ContainerInstanceArn]
if !ok {
log.Printf("Cannot find container instance %s in cluster %s", *task.ContainerInstanceArn, *task.ClusterArn)
continue
}
instance, ok := instanceIDToEC2Instance[*containerInstance.Ec2InstanceId]
if !ok {
log.Printf("Cannot find EC2 instance %s", *containerInstance.Ec2InstanceId)
continue
}
task.EC2Instance = instance
}
}
return taskList, nil
}
// GetTasksOfClusters returns the EC2 tasks running in a list of Clusters.
func GetTasksOfClusters(svc *ecs.Client, clusterArns []*string) ([]ecs.Task, error) {
jobs := make(chan *string, len(clusterArns))
results := make(chan struct {
out *ecs.DescribeTasksOutput
err error
}, len(clusterArns))
for w := 1; w <= 4; w++ {
go func() {
for clusterArn := range jobs {
input := &ecs.ListTasksInput{
Cluster: clusterArn,
}
finalOutput := &ecs.DescribeTasksOutput{}
var err error
for {
req := svc.ListTasksRequest(input)
output, err1 := req.Send(context.Background())
if err1 != nil {
err = err1
log.Printf("Error listing tasks of cluster %s: %s", *clusterArn, err)
break
}
if len(output.TaskArns) == 0 {
break
}
log.Printf("Inspected cluster %s, found %d tasks", *clusterArn, len(output.TaskArns))
reqDescribe := svc.DescribeTasksRequest(&ecs.DescribeTasksInput{
Cluster: clusterArn,
Tasks: output.TaskArns,
})
descOutput, err2 := reqDescribe.Send(context.Background())
if err2 != nil {
err = err2
log.Printf("Error describing tasks of cluster %s: %s", *clusterArn, err)
break
}
log.Printf("Described %d tasks in cluster %s", len(descOutput.Tasks), *clusterArn)
if len(descOutput.Failures) > 0 {
log.Printf("Described %d failures in cluster %s", len(descOutput.Failures), *clusterArn)
}
finalOutput.Tasks = append(finalOutput.Tasks, descOutput.Tasks...)
finalOutput.Failures = append(finalOutput.Failures, descOutput.Failures...)
if output.NextToken == nil {
break
}
input.NextToken = output.NextToken
}
results <- struct {
out *ecs.DescribeTasksOutput
err error
}{finalOutput, err}
}
}()
}
for _, clusterArn := range clusterArns {
jobs <- clusterArn
}
close(jobs)
tasks := []ecs.Task{}
for range clusterArns {
result := <-results
if result.err != nil {
return nil, result.err
}
for _, task := range result.out.Tasks {
tasks = append(tasks, task)
}
}
return tasks, nil
}
// GetAugmentedTasks gets the fully AugmentedTasks running on
// a list of Clusters.
func GetAugmentedTasks(svc *ecs.Client, svcec2 *ec2.Client, clusterArns []*string) ([]*AugmentedTask, error) {
simpleTasks, err := GetTasksOfClusters(svc, clusterArns)
if err != nil {
return nil, err
}
tasks := []*AugmentedTask{}
for i := 0; i < len(simpleTasks); i++ {
tasks = append(tasks, &AugmentedTask{&simpleTasks[i], nil, nil})
}
tasks, err = AddTaskDefinitionsOfTasks(svc, tasks)
if err != nil {
return nil, err
}
tasks, err = AddContainerInstancesToTasks(svc, svcec2, tasks)
if err != nil {
return nil, err
}
return tasks, nil
}
func main() {
flag.Parse()
config, err := external.LoadDefaultAWSConfig()
if err != nil {
logError(err)
return
}
if *roleArn != "" {
// Assume role
stsSvc := sts.New(config)
config.Credentials = stscreds.NewAssumeRoleProvider(stsSvc, *roleArn)
}
// Initialise AWS Service clients
svc := ecs.New(config)
svcec2 := ec2.New(config)
work := func() {
var clusters *ecs.ListClustersOutput
if *cluster != "" {
res, err := svc.DescribeClustersRequest(&ecs.DescribeClustersInput{
Clusters: []string{*cluster},
}).Send(context.Background())
if err != nil {
logError(err)
return
}
if len(res.Clusters) == 0 {
logError(fmt.Errorf(
"%s cluster not found",
ecs.ErrCodeClusterNotFoundException,
))
return
}
clusters = &ecs.ListClustersOutput{
ClusterArns: []string{*cluster},
}
} else {
c, err := GetClusters(svc)
if err != nil {
logError(err)
return
}
clusters = c
}
tasks, err := GetAugmentedTasks(svc, svcec2, StringToStarString(clusters.ClusterArns))
if err != nil {
logError(err)
return
}
infos := []*PrometheusTaskInfo{}
for _, t := range tasks {
info := t.ExporterInformation()
infos = append(infos, info...)
}
m, err := yaml.Marshal(infos)
if err != nil {
logError(err)
return
}
log.Printf("Writing %d discovered exporters to %s", len(infos), *outFile)
err = ioutil.WriteFile(*outFile, m, 0644)
if err != nil {
logError(err)
return
}
}
s := time.NewTimer(1 * time.Millisecond)
t := time.NewTicker(*interval)
n := *times
for {
select {
case <-s.C:
case <-t.C:
}
work()
n = n - 1
if *times > 0 && n == 0 {
break
}
}
}