forked from aws/amazon-cloudwatch-logs-for-fluent-bit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfluent-bit-cloudwatch.go
176 lines (147 loc) · 5.03 KB
/
fluent-bit-cloudwatch.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
// Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"). You may
// not use this file except in compliance with the License. A copy of the
// License is located at
//
// http://aws.amazon.com/apache2.0/
//
// or in the "license" file accompanying this file. This file 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 (
"C"
"fmt"
"unsafe"
"time"
"github.com/aws/amazon-cloudwatch-logs-for-fluent-bit/cloudwatch"
"github.com/aws/amazon-kinesis-firehose-for-fluent-bit/plugins"
"github.com/fluent/fluent-bit-go/output"
"github.com/sirupsen/logrus"
)
import (
"strings"
)
var (
pluginInstances []*cloudwatch.OutputPlugin
)
func addPluginInstance(ctx unsafe.Pointer) error {
pluginID := len(pluginInstances)
config := getConfiguration(ctx, pluginID)
err := config.Validate()
if err != nil {
return err
}
instance, err := cloudwatch.NewOutputPlugin(config)
if err != nil {
return err
}
output.FLBPluginSetContext(ctx, pluginID)
pluginInstances = append(pluginInstances, instance)
return nil
}
func getPluginInstance(ctx unsafe.Pointer) *cloudwatch.OutputPlugin {
pluginID := output.FLBPluginGetContext(ctx).(int)
return pluginInstances[pluginID]
}
//export FLBPluginRegister
func FLBPluginRegister(ctx unsafe.Pointer) int {
return output.FLBPluginRegister(ctx, "cloudwatch", "AWS CloudWatch Fluent Bit Plugin!")
}
func getConfiguration(ctx unsafe.Pointer, pluginID int) cloudwatch.OutputPluginConfig {
config := cloudwatch.OutputPluginConfig{}
config.PluginInstanceID = pluginID
config.LogGroupName = output.FLBPluginConfigKey(ctx, "log_group_name")
logrus.Infof("[cloudwatch %d] plugin parameter log_group = '%s'\n", pluginID, config.LogGroupName)
config.LogStreamPrefix = output.FLBPluginConfigKey(ctx, "log_stream_prefix")
logrus.Infof("[cloudwatch %d] plugin parameter log_stream_prefix = '%s'\n", pluginID, config.LogStreamPrefix)
config.LogStreamName = output.FLBPluginConfigKey(ctx, "log_stream_name")
logrus.Infof("[cloudwatch %d] plugin parameter log_stream = '%s'\n", pluginID, config.LogStreamName)
config.Region = output.FLBPluginConfigKey(ctx, "region")
logrus.Infof("[cloudwatch %d] plugin parameter region = '%s'\n", pluginID, config.Region)
config.LogKey = output.FLBPluginConfigKey(ctx, "log_key")
logrus.Infof("[cloudwatch %d] plugin parameter log_key = '%s'\n", pluginID, config.LogKey)
config.RoleARN = output.FLBPluginConfigKey(ctx, "role_arn")
logrus.Infof("[cloudwatch %d] plugin parameter role_arn = '%s'\n", pluginID, config.RoleARN)
config.AutoCreateGroup = getBoolParam(ctx, "auto_create_group", false)
logrus.Infof("[cloudwatch %d] plugin parameter auto_create_group = '%v'\n", pluginID, config.AutoCreateGroup)
config.CWEndpoint = output.FLBPluginConfigKey(ctx, "endpoint")
logrus.Infof("[cloudwatch %d] plugin parameter endpoint = '%s'\n", pluginID, config.CWEndpoint)
return config
}
func getBoolParam(ctx unsafe.Pointer, param string, defaultVal bool) bool {
val := strings.ToLower(output.FLBPluginConfigKey(ctx, param))
if val == "true" {
return true
} else if val == "false" {
return false
} else {
return defaultVal
}
}
//export FLBPluginInit
func FLBPluginInit(ctx unsafe.Pointer) int {
plugins.SetupLogger()
err := addPluginInstance(ctx)
if err != nil {
logrus.Error(err)
return output.FLB_ERROR
}
return output.FLB_OK
}
//export FLBPluginFlushCtx
func FLBPluginFlushCtx(ctx, data unsafe.Pointer, length C.int, tag *C.char) int {
var count int
var ret int
var ts interface{}
var record map[interface{}]interface{}
// Create Fluent Bit decoder
dec := output.NewDecoder(data, int(length))
cloudwatchLogs := getPluginInstance(ctx)
fluentTag := C.GoString(tag)
logrus.Debugf("[cloudwatch %d] Found logs with tag: %s\n", cloudwatchLogs.PluginInstanceID, fluentTag)
for {
// Extract Record
ret, ts, record = output.GetRecord(dec)
if ret != 0 {
break
}
var timestamp time.Time
switch tts := ts.(type) {
case output.FLBTime:
timestamp = tts.Time
case uint64:
// when ts is of type uint64 it appears to
// be the amount of seconds since unix epoch.
timestamp = time.Unix(int64(tts), 0)
default:
timestamp = time.Now()
}
retCode := cloudwatchLogs.AddEvent(fluentTag, record, timestamp)
if retCode != output.FLB_OK {
return retCode
}
count++
}
err := cloudwatchLogs.Flush(fluentTag)
if err != nil {
fmt.Println(err)
// TODO: Better error handling
return output.FLB_RETRY
}
logrus.Debugf("[cloudwatch %d] Processed %d events with tag %s\n", cloudwatchLogs.PluginInstanceID, count, fluentTag)
// Return options:
//
// output.FLB_OK = data have been processed.
// output.FLB_ERROR = unrecoverable error, do not try this again.
// output.FLB_RETRY = retry to flush later.
return output.FLB_OK
}
//export FLBPluginExit
func FLBPluginExit() int {
return output.FLB_OK
}
func main() {
}