mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
200 lines
5.3 KiB
Go
200 lines
5.3 KiB
Go
package logging
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"math"
|
|
"time"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
"github.com/aws/aws-sdk-go/aws/awserr"
|
|
"github.com/aws/aws-sdk-go/aws/credentials"
|
|
"github.com/aws/aws-sdk-go/aws/credentials/stscreds"
|
|
"github.com/aws/aws-sdk-go/aws/session"
|
|
"github.com/aws/aws-sdk-go/service/firehose"
|
|
"github.com/aws/aws-sdk-go/service/firehose/firehoseiface"
|
|
"github.com/go-kit/kit/log"
|
|
"github.com/go-kit/kit/log/level"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
const (
|
|
firehoseMaxRetries = 8
|
|
|
|
// See
|
|
// https://docs.aws.amazon.com/sdk-for-go/api/service/firehose/#Firehose.PutRecordBatch
|
|
// for documentation on limits.
|
|
firehoseMaxRecordsInBatch = 500
|
|
firehoseMaxSizeOfRecord = 1000 * 1000 // 1,000 KB
|
|
firehoseMaxSizeOfBatch = 4 * 1000 * 1000 // 4 MB
|
|
)
|
|
|
|
type firehoseLogWriter struct {
|
|
client firehoseiface.FirehoseAPI
|
|
stream string
|
|
logger log.Logger
|
|
}
|
|
|
|
func NewFirehoseLogWriter(region, endpointURL, id, secret, stsAssumeRoleArn, stream string, logger log.Logger) (*firehoseLogWriter, error) {
|
|
conf := &aws.Config{
|
|
Region: ®ion,
|
|
Endpoint: &endpointURL, // empty string or nil will use default values
|
|
}
|
|
|
|
// Only provide static credentials if we have them
|
|
// otherwise use the default credentials provider chain
|
|
if id != "" && secret != "" {
|
|
conf.Credentials = credentials.NewStaticCredentials(id, secret, "")
|
|
}
|
|
|
|
sess, err := session.NewSession(conf)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "create Firehose client")
|
|
}
|
|
|
|
if stsAssumeRoleArn != "" {
|
|
creds := stscreds.NewCredentials(sess, stsAssumeRoleArn)
|
|
conf.Credentials = creds
|
|
|
|
sess, err = session.NewSession(conf)
|
|
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "create Firehose client")
|
|
}
|
|
}
|
|
client := firehose.New(sess)
|
|
|
|
f := &firehoseLogWriter{
|
|
client: client,
|
|
stream: stream,
|
|
logger: logger,
|
|
}
|
|
if err := f.validateStream(); err != nil {
|
|
return nil, errors.Wrap(err, "create Firehose writer")
|
|
}
|
|
return f, nil
|
|
}
|
|
|
|
func (f *firehoseLogWriter) validateStream() error {
|
|
out, err := f.client.DescribeDeliveryStream(
|
|
&firehose.DescribeDeliveryStreamInput{
|
|
DeliveryStreamName: &f.stream,
|
|
},
|
|
)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "describe stream %s", f.stream)
|
|
}
|
|
|
|
if (*(*out.DeliveryStreamDescription).DeliveryStreamStatus) != firehose.DeliveryStreamStatusActive {
|
|
return errors.Errorf("delivery stream %s not active", f.stream)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (f *firehoseLogWriter) Write(ctx context.Context, logs []json.RawMessage) error {
|
|
var records []*firehose.Record
|
|
totalBytes := 0
|
|
for _, log := range logs {
|
|
// Add newline because Firehose does not output each record on
|
|
// a separate line.
|
|
log = append(log, '\n')
|
|
|
|
// We don't really have a good option for what to do with logs
|
|
// that are too big for Firehose. This behavior is consistent
|
|
// with osquery's behavior in the Firehose logger plugin, and
|
|
// the beginning bytes of the log should help the Fleet admin
|
|
// diagnose the query generating huge results.
|
|
if len(log) > firehoseMaxSizeOfRecord {
|
|
level.Info(f.logger).Log(
|
|
"msg", "dropping log over 1MB Firehose limit",
|
|
"size", len(log),
|
|
"log", string(log[:100])+"...",
|
|
)
|
|
continue
|
|
}
|
|
|
|
// If adding this log will exceed the limit on number of
|
|
// records in the batch, or the limit on total size of the
|
|
// records in the batch, we need to push this batch before
|
|
// adding any more.
|
|
if len(records) >= firehoseMaxRecordsInBatch ||
|
|
totalBytes+len(log) > firehoseMaxSizeOfBatch {
|
|
if err := f.putRecordBatch(0, records); err != nil {
|
|
return errors.Wrap(err, "put records")
|
|
}
|
|
totalBytes = 0
|
|
records = nil
|
|
}
|
|
|
|
records = append(records, &firehose.Record{Data: []byte(log)})
|
|
totalBytes += len(log)
|
|
}
|
|
|
|
// Push the final batch
|
|
if len(records) > 0 {
|
|
if err := f.putRecordBatch(0, records); err != nil {
|
|
return errors.Wrap(err, "put records")
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (f *firehoseLogWriter) putRecordBatch(try int, records []*firehose.Record) error {
|
|
if try > 0 {
|
|
time.Sleep(100 * time.Millisecond * time.Duration(math.Pow(2.0, float64(try))))
|
|
}
|
|
input := &firehose.PutRecordBatchInput{
|
|
DeliveryStreamName: &f.stream,
|
|
Records: records,
|
|
}
|
|
|
|
output, err := f.client.PutRecordBatch(input)
|
|
if err != nil {
|
|
var aerr awserr.Error
|
|
if errors.As(err, &aerr) {
|
|
if aerr.Code() == firehose.ErrCodeServiceUnavailableException && try < firehoseMaxRetries {
|
|
// Retry with backoff
|
|
return f.putRecordBatch(try+1, records)
|
|
}
|
|
}
|
|
|
|
// Not retryable or retries expired
|
|
return err
|
|
}
|
|
|
|
// Check errors on individual records
|
|
if output.FailedPutCount != nil && *output.FailedPutCount > 0 {
|
|
if try >= firehoseMaxRetries {
|
|
// Retrieve first error message to provide to user.
|
|
// There could be up to firehoseMaxRecordsInBatch
|
|
// errors here and we don't want to flood that.
|
|
var errMsg string
|
|
for _, record := range output.RequestResponses {
|
|
if record.ErrorCode != nil && record.ErrorMessage != nil {
|
|
errMsg = *record.ErrorMessage
|
|
break
|
|
}
|
|
}
|
|
|
|
return errors.Errorf(
|
|
"failed to put %d records, retries exhausted. First error: %s",
|
|
*output.FailedPutCount, errMsg,
|
|
)
|
|
}
|
|
|
|
var failedRecords []*firehose.Record
|
|
// Collect failed records for retry
|
|
for i, record := range output.RequestResponses {
|
|
if record.ErrorCode != nil {
|
|
failedRecords = append(failedRecords, records[i])
|
|
}
|
|
}
|
|
|
|
return f.putRecordBatch(try+1, failedRecords)
|
|
}
|
|
|
|
return nil
|
|
}
|