-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathfluent-bit-cloudwatch.go
226 lines (177 loc) · 7.25 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
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
// 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"
"strconv"
"time"
"unsafe"
"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_name = '%s'", pluginID, config.LogGroupName)
config.DefaultLogGroupName = output.FLBPluginConfigKey(ctx, "default_log_group_name")
if config.DefaultLogGroupName == "" {
config.DefaultLogGroupName = "fluentbit-default"
}
logrus.Infof("[cloudwatch %d] plugin parameter default_log_group_name = '%s'", pluginID, config.DefaultLogGroupName)
config.LogStreamPrefix = output.FLBPluginConfigKey(ctx, "log_stream_prefix")
logrus.Infof("[cloudwatch %d] plugin parameter log_stream_prefix = '%s'", pluginID, config.LogStreamPrefix)
config.LogStreamName = output.FLBPluginConfigKey(ctx, "log_stream_name")
logrus.Infof("[cloudwatch %d] plugin parameter log_stream_name = '%s'", pluginID, config.LogStreamName)
config.DefaultLogStreamName = output.FLBPluginConfigKey(ctx, "default_log_stream_name")
if config.DefaultLogStreamName == "" {
config.DefaultLogStreamName = "/fluentbit-default"
}
logrus.Infof("[cloudwatch %d] plugin parameter default_log_stream_name = '%s'", pluginID, config.DefaultLogStreamName)
config.Region = output.FLBPluginConfigKey(ctx, "region")
logrus.Infof("[cloudwatch %d] plugin parameter region = '%s'", pluginID, config.Region)
config.LogKey = output.FLBPluginConfigKey(ctx, "log_key")
logrus.Infof("[cloudwatch %d] plugin parameter log_key = '%s'", pluginID, config.LogKey)
config.RoleARN = output.FLBPluginConfigKey(ctx, "role_arn")
logrus.Infof("[cloudwatch %d] plugin parameter role_arn = '%s'", pluginID, config.RoleARN)
config.AutoCreateGroup = getBoolParam(ctx, "auto_create_group", false)
logrus.Infof("[cloudwatch %d] plugin parameter auto_create_group = '%v'", pluginID, config.AutoCreateGroup)
config.AutoCreateStream = getBoolParam(ctx, "auto_create_stream", true)
logrus.Infof("[cloudwatch %d] plugin parameter auto_create_stream = '%v'", pluginID, config.AutoCreateStream)
config.NewLogGroupTags = output.FLBPluginConfigKey(ctx, "new_log_group_tags")
logrus.Infof("[cloudwatch %d] plugin parameter new_log_group_tags = '%s'", pluginID, config.NewLogGroupTags)
config.LogRetentionDays, _ = strconv.ParseInt(output.FLBPluginConfigKey(ctx, "log_retention_days"), 10, 64)
logrus.Infof("[cloudwatch %d] plugin parameter log_retention_days = '%d'", pluginID, config.LogRetentionDays)
config.CWEndpoint = output.FLBPluginConfigKey(ctx, "endpoint")
logrus.Infof("[cloudwatch %d] plugin parameter endpoint = '%s'", pluginID, config.CWEndpoint)
config.STSEndpoint = output.FLBPluginConfigKey(ctx, "sts_endpoint")
logrus.Infof("[cloudwatch %d] plugin parameter sts_endpoint = '%s'", pluginID, config.STSEndpoint)
config.ExternalID = output.FLBPluginConfigKey(ctx, "external_id")
logrus.Infof("[cloudwatch %d] plugin parameter external_id = '%s'", pluginID, config.ExternalID)
config.CredsEndpoint = output.FLBPluginConfigKey(ctx, "credentials_endpoint")
logrus.Infof("[cloudwatch %d] plugin parameter credentials_endpoint = %s", pluginID, config.CredsEndpoint)
config.LogFormat = output.FLBPluginConfigKey(ctx, "log_format")
logrus.Infof("[cloudwatch %d] plugin parameter log_format = '%s'", pluginID, config.LogFormat)
config.ExtraUserAgent = output.FLBPluginConfigKey(ctx, "extra_user_agent")
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()
logrus.Debug("A new higher performance CloudWatch Logs plugin has been released; " +
"you are using the old plugin. Check out the new plugin's documentation and " +
"determine if you can migrate.\n" +
"https://docs.fluentbit.io/manual/pipeline/outputs/cloudwatch")
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", 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(&cloudwatch.Event{Tag: fluentTag, Record: record, TS: timestamp})
if retCode != output.FLB_OK {
return retCode
}
count++
}
err := cloudwatchLogs.Flush()
if err != nil {
fmt.Println(err)
// TODO: Better error handling
return output.FLB_RETRY
}
logrus.Debugf("[cloudwatch %d] Processed %d events", cloudwatchLogs.PluginInstanceID, count)
// Return options:
//
// output.FLB_OK = data have been processed.
// output.FLB_ERROR = unrecoverable error, do not try this again. Never returned by flush.
// output.FLB_RETRY = retry to flush later.
return output.FLB_OK
}
//export FLBPluginExit
func FLBPluginExit() int {
return output.FLB_OK
}
func main() {
}