forked from aws/amazon-kinesis-firehose-for-fluent-bit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fluent-bit-firehose.go
167 lines (143 loc) · 5.6 KB
/
fluent-bit-firehose.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
// 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"
"unsafe"
"github.com/aws/amazon-kinesis-firehose-for-fluent-bit/firehose"
"github.com/aws/amazon-kinesis-firehose-for-fluent-bit/plugins"
"github.com/fluent/fluent-bit-go/output"
"github.com/sirupsen/logrus"
)
import (
"fmt"
"time"
)
var (
pluginInstances []*firehose.OutputPlugin
)
func addPluginInstance(ctx unsafe.Pointer) error {
pluginID := len(pluginInstances)
output.FLBPluginSetContext(ctx, pluginID)
instance, err := newFirehoseOutput(ctx, pluginID)
if err != nil {
return err
}
pluginInstances = append(pluginInstances, instance)
return nil
}
func getPluginInstance(ctx unsafe.Pointer) *firehose.OutputPlugin {
pluginID := output.FLBPluginGetContext(ctx).(int)
return pluginInstances[pluginID]
}
// The "export" comments have syntactic meaning
// This is how the compiler knows a function should be callable from the C code
//export FLBPluginRegister
func FLBPluginRegister(ctx unsafe.Pointer) int {
return output.FLBPluginRegister(ctx, "firehose", "Amazon Kinesis Data Firehose Fluent Bit Plugin.")
}
func newFirehoseOutput(ctx unsafe.Pointer, pluginID int) (*firehose.OutputPlugin, error) {
deliveryStream := output.FLBPluginConfigKey(ctx, "delivery_stream")
logrus.Infof("[firehose %d] plugin parameter delivery_stream = '%s'", pluginID, deliveryStream)
region := output.FLBPluginConfigKey(ctx, "region")
logrus.Infof("[firehose %d] plugin parameter region = '%s'", pluginID, region)
dataKeys := output.FLBPluginConfigKey(ctx, "data_keys")
logrus.Infof("[firehose %d] plugin parameter data_keys = '%s'", pluginID, dataKeys)
roleARN := output.FLBPluginConfigKey(ctx, "role_arn")
logrus.Infof("[firehose %d] plugin parameter role_arn = '%s'", pluginID, roleARN)
firehoseEndpoint := output.FLBPluginConfigKey(ctx, "endpoint")
logrus.Infof("[firehose %d] plugin parameter endpoint = '%s'", pluginID, firehoseEndpoint)
stsEndpoint := output.FLBPluginConfigKey(ctx, "sts_endpoint")
logrus.Infof("[firehose %d] plugin parameter sts_endpoint = '%s'", pluginID, stsEndpoint)
timeKey := output.FLBPluginConfigKey(ctx, "time_key")
logrus.Infof("[firehose %d] plugin parameter time_key = '%s'", pluginID, timeKey)
timeKeyFmt := output.FLBPluginConfigKey(ctx, "time_key_format")
logrus.Infof("[firehose %d] plugin parameter time_key_format = '%s'", pluginID, timeKeyFmt)
logKey := output.FLBPluginConfigKey(ctx, "log_key")
logrus.Infof("[firehose %d] plugin parameter log_key = '%s'", pluginID, logKey)
replaceDots := output.FLBPluginConfigKey(ctx, "replace_dots")
logrus.Infof("[firehose %d] plugin parameter replace_dots = '%s'", pluginID, replaceDots)
simpleAggregation := plugins.GetBoolParam(output.FLBPluginConfigKey(ctx, "simple_aggregation"), false)
logrus.Infof("[firehose %d] plugin parameter simple_aggregation = '%v'",
pluginID, simpleAggregation)
if deliveryStream == "" || region == "" {
return nil, fmt.Errorf("[firehose %d] delivery_stream and region are required configuration parameters", pluginID)
}
return firehose.NewOutputPlugin(region, deliveryStream, dataKeys, roleARN, firehoseEndpoint, stsEndpoint, timeKey,
timeKeyFmt, logKey, replaceDots, pluginID, simpleAggregation)
}
//export FLBPluginInit
func FLBPluginInit(ctx unsafe.Pointer) int {
plugins.SetupLogger()
logrus.Info("A new higher performance Firehose plugin has been released; " +
"you are using the old plugin. Check out the new plugin's documentation and " +
"consider migrating.\n" +
"https://docs.fluentbit.io/manual/pipeline/outputs/firehose")
err := addPluginInstance(ctx)
if err != nil {
logrus.Errorf("[firehose] Failed to initialize plugin: %v", 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 timestamp time.Time
var record map[interface{}]interface{}
// Create Fluent Bit decoder
dec := output.NewDecoder(data, int(length))
firehoseOutput := getPluginInstance(ctx)
fluentTag := C.GoString(tag)
logrus.Debugf("[firehose %d] Found logs with tag: %s", firehoseOutput.PluginID, fluentTag)
for {
// Extract Record
ret, ts, record = output.GetRecord(dec)
if ret != 0 {
break
}
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 := firehoseOutput.AddRecord(record, ×tamp)
if retCode != output.FLB_OK {
return retCode
}
count++
}
retCode := firehoseOutput.Flush()
if retCode != output.FLB_OK {
return retCode
}
logrus.Debugf("[firehose %d] Processed %d events with tag %s", firehoseOutput.PluginID, count, fluentTag)
return output.FLB_OK
}
//export FLBPluginExit
func FLBPluginExit() int {
// Before final exit, call Flush() for all the instances of the Output Plugin
for i := range pluginInstances {
pluginInstances[i].Flush()
}
return output.FLB_OK
}
func main() {
}