forked from Technofy/cloudwatch_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aws.go
276 lines (229 loc) · 8.12 KB
/
aws.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
package main
import (
"fmt"
"regexp"
"strings"
"sync"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials/stscreds"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/cloudwatch"
"github.com/prometheus/client_golang/prometheus"
"github.com/mtlang/cloudwatch_exporter/config"
)
func getLatestDatapoint(datapoints []*cloudwatch.Datapoint) *cloudwatch.Datapoint {
var latest *cloudwatch.Datapoint
for _, datapoint := range datapoints {
if latest == nil || latest.Timestamp.Before(*datapoint.Timestamp) {
latest = datapoint
}
}
return latest
}
func scrapeTask(collector *Collector, ch chan<- prometheus.Metric, task *config.Task, wg *sync.WaitGroup) {
defer wg.Done()
var innerWg sync.WaitGroup
session := session.Must(session.NewSession())
var svc *cloudwatch.CloudWatch
region := task.Region
if len(task.Account) > 0 && len(task.RoleName) > 0 {
roleArn := fmt.Sprintf("arn:aws:iam::%s:role/%s", task.Account, task.RoleName)
roleCreds := stscreds.NewCredentials(session, roleArn)
svc = cloudwatch.New(session, aws.NewConfig().WithCredentials(roleCreds).WithRegion(region))
} else {
svc = cloudwatch.New(session, aws.NewConfig().WithRegion(region))
}
for m := range task.Metrics {
configMetric := &task.Metrics[m]
now := time.Now()
end := now.Add(time.Duration(-configMetric.DelaySeconds) * time.Second)
params := &cloudwatch.GetMetricStatisticsInput{
EndTime: aws.Time(end),
StartTime: aws.Time(end.Add(time.Duration(-configMetric.RangeSeconds) * time.Second)),
Period: aws.Int64(int64(configMetric.PeriodSeconds)),
MetricName: aws.String(configMetric.Name),
Namespace: aws.String(configMetric.Namespace),
Dimensions: []*cloudwatch.Dimension{},
Statistics: []*string{},
ExtendedStatistics: []*string{},
Unit: nil,
}
dimensions := []*cloudwatch.Dimension{}
//This map will hold dimensions name which has been already collected
valueCollected := map[string]bool{}
if len(configMetric.DimensionsSelectRegex) == 0 {
configMetric.DimensionsSelectRegex = map[string]string{}
}
//Check for dimensions who does not have either select or dimensions select_regex and make them select everything using regex
for _, dimension := range configMetric.Dimensions {
_, found := configMetric.DimensionsSelect[dimension]
_, found2 := configMetric.DimensionsSelectRegex[dimension]
if !found && !found2 {
configMetric.DimensionsSelectRegex[dimension] = ".*"
}
}
for _, stat := range configMetric.Statistics {
params.Statistics = append(params.Statistics, aws.String(stat))
}
for _, stat := range configMetric.ExtendedStatistics {
params.ExtendedStatistics = append(params.ExtendedStatistics, aws.String(stat))
}
labels := make([]string, 0, len(task.LabelNames))
// Loop through the dimensions selects to build the filters and the labels array
for dim := range configMetric.DimensionsSelect {
for val := range configMetric.DimensionsSelect[dim] {
dimValue := configMetric.DimensionsSelect[dim][val]
// Replace $_target token by the actual URL target
if dimValue == "$_target" {
dimValue = collector.Target
}
dimensions = append(dimensions, &cloudwatch.Dimension{
Name: aws.String(dim),
Value: aws.String(dimValue),
})
labels = append(labels, dimValue)
}
}
if len(dimensions) > 0 || len(configMetric.Dimensions) == 0 {
labels = append(labels, task.Name)
labels = append(labels, region)
account := task.Account
if len(account) > 0 {
labels = append(labels, account)
} else {
labels = append(labels, "Not Specified")
}
params.Dimensions = dimensions
labels = append(labels, "")
innerWg.Add(1)
scrapeSingleDataPoint(collector, ch, *params, task, labels, svc, &innerWg)
}
//If no regex is specified, continue
if len(configMetric.DimensionsSelectRegex) == 0 {
continue
}
// Get all the metric to select the ones who'll match the regex
result, err := svc.ListMetrics(&cloudwatch.ListMetricsInput{
MetricName: aws.String(configMetric.Name),
Namespace: aws.String(configMetric.Namespace),
})
if err != nil {
fmt.Println(err)
continue
}
nextToken := result.NextToken
metrics := result.Metrics
totalRequests.Inc()
for nextToken != nil {
result, err := svc.ListMetrics(&cloudwatch.ListMetricsInput{
MetricName: aws.String(configMetric.Name),
Namespace: aws.String(configMetric.Namespace),
NextToken: nextToken,
})
if err != nil {
fmt.Println(err)
continue
}
nextToken = result.NextToken
metrics = append(metrics, result.Metrics...)
}
//For each metric returned by aws
for _, met := range result.Metrics {
labels := make([]string, 0, len(task.LabelNames))
dimensions = []*cloudwatch.Dimension{}
//Try to match each dimensions to the regex
for _, dim := range met.Dimensions {
dimRegex := configMetric.DimensionsSelectRegex[*dim.Name]
if dimRegex == "" {
dimRegex = "\\b" + strings.Join(configMetric.DimensionsSelect[*dim.Name], "\\b|\\b") + "\\b"
}
match, _ := regexp.MatchString(dimRegex, *dim.Value)
if match {
dimensions = append(dimensions, &cloudwatch.Dimension{
Name: aws.String(*dim.Name),
Value: aws.String(*dim.Value),
})
labels = append(labels, *dim.Value)
}
}
//Cheking if all dimensions matched
if len(labels) == len(configMetric.Dimensions) {
//Checking if this couple of dimensions has already been scraped
if _, ok := valueCollected[strings.Join(labels, ";")]; ok {
continue
}
//If no, then scrape them
valueCollected[strings.Join(labels, ";")] = true
params.Dimensions = dimensions
labels = append(labels, task.Name)
labels = append(labels, region)
account := task.Account
if len(account) > 0 {
labels = append(labels, account)
} else {
labels = append(labels, "Not Specified")
}
labels = append(labels, "")
innerWg.Add(1)
go scrapeSingleDataPoint(collector, ch, *params, task, labels, svc, &innerWg)
}
}
}
innerWg.Wait()
}
// scrape makes the required calls to AWS CloudWatch by using the parameters in the cwCollector
// Once converted into Prometheus format, the metrics are pushed on the ch channel.
func scrape(collector *Collector, ch chan<- prometheus.Metric) {
var wg sync.WaitGroup
for _, task := range collector.Tasks {
wg.Add(1)
go scrapeTask(collector, ch, task, &wg)
}
wg.Wait()
}
//Send a single dataPoint to the Prometheus lib
func scrapeSingleDataPoint(collector *Collector, ch chan<- prometheus.Metric, params cloudwatch.GetMetricStatisticsInput, task *config.Task, labels []string, svc *cloudwatch.CloudWatch, wg *sync.WaitGroup) error {
defer wg.Done()
resp, err := svc.GetMetricStatistics(¶ms)
totalRequests.Inc()
if err != nil {
collector.ErroneousRequests.Inc()
fmt.Println(fmt.Sprintf("%s - %s - %s:%s", task.Account, task.Region, *params.Dimensions[0].Name, *params.Dimensions[0].Value))
fmt.Println(err)
return err
}
// There's nothing in there, don't publish the metric
if len(resp.Datapoints) == 0 {
return nil
}
// Pick the latest datapoint
dp := getLatestDatapoint(resp.Datapoints)
if dp.Sum != nil {
labels[len(labels)-1] = "Sum"
ch <- prometheus.MustNewConstMetric(task.Desc, task.ValType, *dp.Sum, labels...)
}
if dp.Average != nil {
labels[len(labels)-1] = "Average"
ch <- prometheus.MustNewConstMetric(task.Desc, task.ValType, *dp.Average, labels...)
}
if dp.Maximum != nil {
labels[len(labels)-1] = "Maximum"
ch <- prometheus.MustNewConstMetric(task.Desc, task.ValType, *dp.Maximum, labels...)
}
if dp.Minimum != nil {
labels[len(labels)-1] = "Minimum"
ch <- prometheus.MustNewConstMetric(task.Desc, task.ValType, *dp.Minimum, labels...)
}
if dp.SampleCount != nil {
labels[len(labels)-1] = "SampleCount"
ch <- prometheus.MustNewConstMetric(task.Desc, task.ValType, *dp.SampleCount, labels...)
}
if dp.ExtendedStatistics != nil {
for statisticName, statisticValue := range dp.ExtendedStatistics {
labels[len(labels)-1] = statisticName
ch <- prometheus.MustNewConstMetric(task.Desc, task.ValType, *statisticValue, labels...)
}
}
return nil
}