-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
572 lines (478 loc) · 21.3 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
package main
import (
"context"
"fmt"
"io"
"log"
"net"
"net/http"
"net/url"
"os"
"strconv"
"strings"
"time"
"github.com/aws/aws-lambda-go/cfn"
"github.com/aws/aws-lambda-go/lambda"
metricsExporter "github.com/logzio/go-metrics-sdk"
"github.com/mmcloughlin/geohash"
"go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/metric"
controller "go.opentelemetry.io/otel/sdk/metric/controller/basic"
"go.opentelemetry.io/otel/sdk/resource"
semconv "go.opentelemetry.io/otel/semconv/v1.7.0"
)
const (
apiUrlEnvName = "API_URL"
methodEnvName = "METHOD"
headersEnvName = "HEADERS"
bodyEnvName = "BODY"
bearerTokenEnvName = "BEARER_TOKEN"
usernameEnvName = "USERNAME"
passwordEnvName = "PASSWORD"
apiResponseTimeoutEnvName = "API_RESPONSE_TIMEOUT"
expectedStatusCodeEnvName = "EXPECTED_STATUS_CODE"
expectedBodyEnvName = "EXPECTED_BODY"
logzioMetricsListenerEnvName = "LOGZIO_METRICS_LISTENER"
logzioMetricsTokenEnvName = "LOGZIO_METRICS_TOKEN"
awsRegionEnvName = "AWS_REGION"
awsLambdaFunctionNameEnvName = "AWS_LAMBDA_FUNCTION_NAME"
meterName = "api_status"
statusMetricName = meterName + "_status"
responseTimeMetricName = meterName + "_response_time"
responseBodyLengthMetricName = meterName + "_response_body_length"
statusObserverDescription = "API status"
statusMetricValue = 1
awsRegionLabelName = "aws_region"
awsLambdaFunctionLabelName = "aws_lambda_function"
urlLabelName = "url"
methodLabelName = "method"
statusMetricStatusLabelName = "status"
responseTimeoutStatusMetricStatusLabelValue = "response_timeout"
connectionFailedStatusMetricStatusLabelValue = "connection_failed"
readResponseBodyFailedStatusMetricStatusLabelValue = "read_response_body_failed"
noMatchStatusCodeStatusMetricStatusLabelValue = "no_match_status_code"
noMatchResponseBodyStatusMetricStatusLabelValue = "no_match_response_body"
successStatusMetricStatusLabelValue = "success"
statusMetricResponseTimeoutLabelName = "response_timeout"
statusMetricResponseTimeoutUnitLabelName = "response_timeout_unit"
statusMetricResponseTimeoutUnitLabelValue = "seconds"
statusMetricErrorLabelName = "error"
statusMetricResponseStatusCodeLabelName = "response_status_code"
statusMetricExpectedResponseStatusCodeLabelName = "expected_response_status_code"
statusMetricResponseBodyLabelName = "response_body"
statusMetricExpectedResponseBodyLabelName = "expected_response_body"
unitLabelName = "unit"
responseTimeMetricUnitLabelValue = "milliseconds"
responseBodyLengthMetricUnitLabelValue = "bytes"
geoHashLabelName = "geohash"
longitudeIndex = 0
latitudeIndex = 1
)
var (
debugLogger = log.New(os.Stdout, "DEBUG: ", log.Ldate|log.Ltime|log.Lshortfile)
infoLogger = log.New(os.Stdout, "INFO: ", log.Ldate|log.Ltime|log.Lshortfile)
errorLogger = log.New(os.Stdout, "ERROR: ", log.Ldate|log.Ltime|log.Lshortfile)
regionToGeoLocation = map[string][]float64{
"us-east-1": {-78.024902, 37.926868}, // N. Virginia
"us-east-2": {-82.996216, 40.367474}, // Ohio
"us-west-1": {-119.417931, 36.778259}, // N. California
"us-west-2": {-120.500000, 44.000000}, // Oregon
"ap-south-1": {72.877426, 19.076090}, // Mumbai
"ap-northeast-3": {135.484802, 34.672314}, // Osaka
"ap-northeast-2": {127.024612, 37.532600}, // Seoul
"ap-southeast-1": {103.851959, 1.290270}, // Singapore
"ap-southeast-2": {151.209900, -33.865143}, // Sydney
"ap-northeast-1": {139.839478, 35.652832}, // Tokyo
"ca-central-1": {-73.561668, 45.508888}, // Canada Central
"eu-central-1": {8.682127, 50.110924}, // Frankfurt
"eu-west-1": {-6.266155, 53.350140}, // Ireland
"eu-west-2": {-0.118092, 51.509865}, // London
"eu-west-3": {2.349014, 48.864716}, // Paris
"eu-north-1": {18.063240, 59.334591}, // Stockholm
"sa-east-1": {-46.625290, -23.533773}, // Sao Paulo
}
awsRegion string
geoHash string
)
type logzioApiStatus struct {
ctx context.Context
logzioMetricsListener string
logzioMetricsToken string
url string
method string
headers map[string]string
body string
responseTimeout time.Duration
bearerToken string
username string
password string
expectedResponseStatusCode int
expectedResponseBody string
}
type int64GaugeObserver struct {
name string
int64ObserverCallback func(context.Context, metric.Int64ObserverResult)
description string
}
type float64GaugeObserver struct {
name string
float64ObserverCallback func(context.Context, metric.Float64ObserverResult)
description string
}
type metricRegister interface {
registerMetric(metric.Meter)
}
func newLogzioApiStatus(ctx context.Context) (*logzioApiStatus, error) {
logzioMetricsListener := os.Getenv(logzioMetricsListenerEnvName)
if logzioMetricsListener == "" {
return nil, fmt.Errorf("%s must not be empty", logzioMetricsListenerEnvName)
}
logzioMetricsToken := os.Getenv(logzioMetricsTokenEnvName)
if logzioMetricsToken == "" {
return nil, fmt.Errorf("%s must not be empty", logzioMetricsTokenEnvName)
}
apiURL := os.Getenv(apiUrlEnvName)
if apiURL == "" {
return nil, fmt.Errorf("%s must not be empty", apiUrlEnvName)
}
parsedURL, err := url.Parse(apiURL)
if err != nil {
return nil, fmt.Errorf("error parsing url %s: %v", apiURL, err)
}
method := os.Getenv(methodEnvName)
if method != http.MethodGet && method != http.MethodPost {
return nil, fmt.Errorf("%s must be GET or POST", methodEnvName)
}
headers, err := getApiRequestHeaders()
if err != nil {
return nil, fmt.Errorf("error getting api headers: %v", err)
}
responseTimeout, err := strconv.Atoi(os.Getenv(apiResponseTimeoutEnvName))
if err != nil {
return nil, fmt.Errorf("%s must be a number", apiResponseTimeoutEnvName)
}
if responseTimeout < 1 {
return nil, fmt.Errorf("%s must be a positive number", apiResponseTimeoutEnvName)
}
expectedResponseStatusCode, err := strconv.Atoi(os.Getenv(expectedStatusCodeEnvName))
if err != nil {
return nil, fmt.Errorf("%s must be a number", expectedStatusCodeEnvName)
}
if expectedResponseStatusCode < 100 || expectedResponseStatusCode > 599 {
return nil, fmt.Errorf("%s must be a between 100 and 599 (inclusive)", apiResponseTimeoutEnvName)
}
return &logzioApiStatus{
ctx: ctx,
logzioMetricsListener: logzioMetricsListener,
logzioMetricsToken: logzioMetricsToken,
url: parsedURL.String(),
method: method,
headers: headers,
body: os.Getenv(bodyEnvName),
responseTimeout: time.Duration(responseTimeout) * time.Second,
bearerToken: os.Getenv(bearerTokenEnvName),
username: os.Getenv(usernameEnvName),
password: os.Getenv(passwordEnvName),
expectedResponseStatusCode: expectedResponseStatusCode,
expectedResponseBody: os.Getenv(expectedBodyEnvName),
}, nil
}
func newInt64GaugeObserver(name string, observerCallback func(context.Context, metric.Int64ObserverResult), description string) *int64GaugeObserver {
return &int64GaugeObserver{
name: name,
int64ObserverCallback: observerCallback,
description: description,
}
}
func newFloat64GaugeObserver(name string, observerCallback func(context.Context, metric.Float64ObserverResult), description string) *float64GaugeObserver {
return &float64GaugeObserver{
name: name,
float64ObserverCallback: observerCallback,
description: description,
}
}
func (igo *int64GaugeObserver) registerMetric(meter metric.Meter) {
_ = metric.Must(meter).NewInt64GaugeObserver(
igo.name,
igo.int64ObserverCallback,
metric.WithDescription(igo.description),
)
}
func (fgo *float64GaugeObserver) registerMetric(meter metric.Meter) {
_ = metric.Must(meter).NewFloat64GaugeObserver(
fgo.name,
fgo.float64ObserverCallback,
metric.WithDescription(fgo.description),
)
}
func (las *logzioApiStatus) createApiHttpRequest() (*http.Request, error) {
debugLogger.Println("Creating API HTTP request...")
var bodyReader io.Reader
if las.body != "" {
bodyReader = strings.NewReader(las.body)
}
request, err := http.NewRequest(las.method, las.url, bodyReader)
if err != nil {
return nil, fmt.Errorf("error creating request: %v", err)
}
if las.bearerToken != "" {
bearer := "Bearer " + strings.Trim(las.bearerToken, "\n")
request.Header.Add("Authorization", bearer)
}
for key, value := range las.headers {
request.Header.Add(key, value)
if key == "Host" {
request.Host = value
}
}
if las.username != "" || las.password != "" {
request.SetBasicAuth(las.username, las.password)
}
return request, nil
}
func (las *logzioApiStatus) getApiHttpResponse(request *http.Request) (*http.Response, float64, error) {
debugLogger.Println("Getting API HTTP response...")
client := &http.Client{
Transport: http.DefaultTransport,
Timeout: las.responseTimeout * time.Second,
}
start := time.Now()
response, err := client.Do(request)
end := time.Now()
responseTime := float64(end.Sub(start)) / float64(time.Millisecond)
return response, responseTime, err
}
func (las *logzioApiStatus) getResponseErrorStatusGaugeObserver(responseError error) *int64GaugeObserver {
if responseError == nil {
debugLogger.Println("No response error status")
return nil
}
if timeoutError, ok := responseError.(net.Error); ok && timeoutError.Timeout() {
observerCallback := func(_ context.Context, result metric.Int64ObserverResult) {
debugLogger.Println("Running response timeout status observer callback...")
result.Observe(statusMetricValue,
attribute.String(urlLabelName, las.url),
attribute.String(methodLabelName, las.method),
attribute.String(statusMetricStatusLabelName, responseTimeoutStatusMetricStatusLabelValue),
attribute.Float64(statusMetricResponseTimeoutLabelName, float64(las.responseTimeout/time.Second)),
attribute.String(statusMetricResponseTimeoutUnitLabelName, statusMetricResponseTimeoutUnitLabelValue),
attribute.String(statusMetricErrorLabelName, responseError.Error()))
}
return newInt64GaugeObserver(statusMetricName, observerCallback, statusObserverDescription)
}
observerCallback := func(_ context.Context, result metric.Int64ObserverResult) {
debugLogger.Println("Running connection failed status observer callback...")
result.Observe(statusMetricValue,
attribute.String(urlLabelName, las.url),
attribute.String(methodLabelName, las.method),
attribute.String(statusMetricStatusLabelName, connectionFailedStatusMetricStatusLabelValue),
attribute.String(statusMetricErrorLabelName, responseError.Error()))
}
return newInt64GaugeObserver(statusMetricName, observerCallback, statusObserverDescription)
}
func (las *logzioApiStatus) getReadResponseBodyErrorStatusGaugeObserver(responseStatusCode int, readResponseBodyError error) *int64GaugeObserver {
if readResponseBodyError == nil {
debugLogger.Println("No read response body error status")
return nil
}
observerCallback := func(_ context.Context, result metric.Int64ObserverResult) {
debugLogger.Println("Running read response body failed status observer callback...")
result.Observe(statusMetricValue,
attribute.String(urlLabelName, las.url),
attribute.String(methodLabelName, las.method),
attribute.String(statusMetricStatusLabelName, readResponseBodyFailedStatusMetricStatusLabelValue),
attribute.Int(statusMetricResponseStatusCodeLabelName, responseStatusCode),
attribute.String(statusMetricErrorLabelName, readResponseBodyError.Error()))
}
return newInt64GaugeObserver(statusMetricName, observerCallback, statusObserverDescription)
}
func (las *logzioApiStatus) getNoMatchStatusGaugeObserver(responseStatusCode int, responseBodyBytes []byte) *int64GaugeObserver {
if responseStatusCode != las.expectedResponseStatusCode {
observerCallback := func(_ context.Context, result metric.Int64ObserverResult) {
debugLogger.Println("Running no match status code status observer callback...")
result.Observe(statusMetricValue,
attribute.String(urlLabelName, las.url),
attribute.String(methodLabelName, las.method),
attribute.String(statusMetricStatusLabelName, noMatchStatusCodeStatusMetricStatusLabelValue),
attribute.Int(statusMetricResponseStatusCodeLabelName, responseStatusCode),
attribute.Int(statusMetricExpectedResponseStatusCodeLabelName, las.expectedResponseStatusCode))
}
return newInt64GaugeObserver(statusMetricName, observerCallback, statusObserverDescription)
}
if string(responseBodyBytes) != las.expectedResponseBody {
observerCallback := func(_ context.Context, result metric.Int64ObserverResult) {
debugLogger.Println("Running no match response body status observer callback...")
result.Observe(statusMetricValue,
attribute.String(urlLabelName, las.url),
attribute.String(methodLabelName, las.method),
attribute.String(statusMetricStatusLabelName, noMatchResponseBodyStatusMetricStatusLabelValue),
attribute.Int(statusMetricResponseStatusCodeLabelName, responseStatusCode),
attribute.String(statusMetricResponseBodyLabelName, string(responseBodyBytes)),
attribute.String(statusMetricExpectedResponseBodyLabelName, las.expectedResponseBody))
}
return newInt64GaugeObserver(statusMetricName, observerCallback, statusObserverDescription)
}
debugLogger.Println("No no match status")
return nil
}
func (las *logzioApiStatus) getSuccessStatusGaugeObserver(responseStatusCode int) *int64GaugeObserver {
observerCallback := func(_ context.Context, result metric.Int64ObserverResult) {
debugLogger.Println("Running success status observer callback...")
result.Observe(statusMetricValue,
attribute.String(urlLabelName, las.url),
attribute.String(methodLabelName, las.method),
attribute.String(statusMetricStatusLabelName, successStatusMetricStatusLabelValue),
attribute.Int(statusMetricResponseStatusCodeLabelName, responseStatusCode))
}
return newInt64GaugeObserver(statusMetricName, observerCallback, statusObserverDescription)
}
func (las *logzioApiStatus) getResponseTimeGaugeObserver(responseTime float64) *float64GaugeObserver {
observerCallback := func(_ context.Context, result metric.Float64ObserverResult) {
debugLogger.Println("Running response time observer callback...")
result.Observe(responseTime,
attribute.String(urlLabelName, las.url),
attribute.String(methodLabelName, las.method),
attribute.String(unitLabelName, responseTimeMetricUnitLabelValue))
}
return newFloat64GaugeObserver(responseTimeMetricName, observerCallback, "API response time")
}
func (las *logzioApiStatus) getResponseBodyLengthGaugeObserver(responseBodyLength int) *int64GaugeObserver {
observerCallback := func(_ context.Context, result metric.Int64ObserverResult) {
debugLogger.Println("Running response body length observer callback...")
result.Observe(int64(responseBodyLength),
attribute.String(urlLabelName, las.url),
attribute.String(methodLabelName, las.method),
attribute.String(unitLabelName, responseBodyLengthMetricUnitLabelValue))
}
return newInt64GaugeObserver(responseBodyLengthMetricName, observerCallback, "API response body length")
}
func getApiRequestHeaders() (map[string]string, error) {
var headers map[string]string
if headersString := os.Getenv(headersEnvName); headersString != "" {
headers = make(map[string]string)
for _, header := range strings.Split(headersString, ",") {
if !strings.Contains(header, "=") {
return nil, fmt.Errorf("header's key and value must be separated by '='")
}
header = strings.Replace(header, " ", "", -1)
headerKeyAndValue := strings.Split(header, "=")
headers[headerKeyAndValue[0]] = headerKeyAndValue[1]
debugLogger.Println("Got API HTTP request header:", headerKeyAndValue[0], "=", headerKeyAndValue[1])
}
}
return headers, nil
}
func (las *logzioApiStatus) createController() (*controller.Controller, error) {
config := metricsExporter.Config{
LogzioMetricsListener: las.logzioMetricsListener,
LogzioMetricsToken: las.logzioMetricsToken,
RemoteTimeout: 30 * time.Second,
PushInterval: 15 * time.Second,
}
return metricsExporter.InstallNewPipeline(config,
controller.WithCollectPeriod(5*time.Second),
controller.WithResource(
resource.NewWithAttributes(
semconv.SchemaURL,
attribute.String(awsRegionLabelName, awsRegion),
attribute.String(awsLambdaFunctionLabelName, os.Getenv(awsLambdaFunctionNameEnvName)),
attribute.String(geoHashLabelName, geoHash),
),
),
)
}
func (las *logzioApiStatus) collectMetrics(metricRegisters []metricRegister) error {
cont, err := las.createController()
if err != nil {
return fmt.Errorf("error creating controller: %v", err)
}
debugLogger.Println("Collecting metrics...")
defer func() {
handleErr(cont.Stop(las.ctx))
}()
meter := cont.Meter(meterName)
for _, metricReg := range metricRegisters {
metricReg.registerMetric(meter)
}
return nil
}
func run(ctx context.Context) error {
setRegionLocation()
gaugeObservers := make([]metricRegister, 0)
apiStatus, err := newLogzioApiStatus(ctx)
if err != nil {
return fmt.Errorf("error creating logzioApiStatus instance: %v", err)
}
request, err := apiStatus.createApiHttpRequest()
if err != nil {
return fmt.Errorf("error creating API HTTP request: %v", err)
}
response, responseTime, err := apiStatus.getApiHttpResponse(request)
if statusGaugeObserver := apiStatus.getResponseErrorStatusGaugeObserver(err); statusGaugeObserver != nil {
gaugeObservers = append(gaugeObservers, statusGaugeObserver)
return apiStatus.collectMetrics(gaugeObservers)
}
responseTimeGaugeObserver := apiStatus.getResponseTimeGaugeObserver(responseTime)
gaugeObservers = append(gaugeObservers, responseTimeGaugeObserver)
defer closeResponseBody(response.Body)
bodyBytes, err := io.ReadAll(response.Body)
if statusGaugeObserver := apiStatus.getReadResponseBodyErrorStatusGaugeObserver(response.StatusCode, err); statusGaugeObserver != nil {
gaugeObservers = append(gaugeObservers, statusGaugeObserver)
return apiStatus.collectMetrics(gaugeObservers)
}
responseBodyLengthGaugeObserver := apiStatus.getResponseBodyLengthGaugeObserver(len(bodyBytes))
gaugeObservers = append(gaugeObservers, responseBodyLengthGaugeObserver)
if statusGaugeObserver := apiStatus.getNoMatchStatusGaugeObserver(response.StatusCode, bodyBytes); statusGaugeObserver != nil {
gaugeObservers = append(gaugeObservers, statusGaugeObserver)
return apiStatus.collectMetrics(gaugeObservers)
}
statusGaugeObserver := apiStatus.getSuccessStatusGaugeObserver(response.StatusCode)
gaugeObservers = append(gaugeObservers, statusGaugeObserver)
return apiStatus.collectMetrics(gaugeObservers)
}
func setRegionLocation() {
awsRegion = os.Getenv(awsRegionEnvName)
if awsRegion == "" {
errorLogger.Print("Could not get aws region. geolocation will not be added\nֿ")
} else {
if location, ok := regionToGeoLocation[awsRegion]; ok {
geoHash = geohash.Encode(location[latitudeIndex], location[longitudeIndex])
} else {
errorLogger.Printf("Region %s is not mapped. Geolocation will not be added\n", awsRegion)
}
}
}
func handleErr(err error) {
if err != nil {
panic(fmt.Errorf("something went wrong: %v", err))
}
}
func closeResponseBody(responseBody io.ReadCloser) {
if err := responseBody.Close(); err != nil {
panic(fmt.Errorf("error closing response body: %v", err))
}
}
// Wrapper for first invocation from cloud formation custom resource
func customResourceRun(ctx context.Context, event cfn.Event) (physicalResourceID string, data map[string]interface{}, err error) {
if err = run(ctx); err != nil {
errorLogger.Printf("Error in first running: %s", err.Error())
}
return
}
func HandleRequest(ctx context.Context, event cfn.Event) (string, error) {
infoLogger.Println("Starting to get API status...")
// If requestID is empty - the lambda call is not from a custom resource
if event.RequestID == "" {
if err := run(ctx); err != nil {
return "lambda finished", err
}
} else {
// Custom resource invocation
lambda.Start(cfn.LambdaWrap(customResourceRun))
}
infoLogger.Println("API status has been sent to Logz.io successfully")
return "lambda finished", nil
}
func main() {
lambda.Start(HandleRequest)
}