158 lines
3.7 KiB
Go
158 lines
3.7 KiB
Go
// Licensed to Elasticsearch B.V. under one or more contributor
|
|
// license agreements. See the NOTICE file distributed with
|
|
// this work for additional information regarding copyright
|
|
// ownership. Elasticsearch B.V. licenses this file to you under
|
|
// the Apache License, Version 2.0 (the "License"); you may
|
|
// not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing,
|
|
// software distributed under the License 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 fileout
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/elastic/beats/libbeat/beat"
|
|
"github.com/elastic/beats/libbeat/common"
|
|
"github.com/elastic/beats/libbeat/common/file"
|
|
"github.com/elastic/beats/libbeat/logp"
|
|
"github.com/elastic/beats/libbeat/outputs"
|
|
"github.com/elastic/beats/libbeat/outputs/codec"
|
|
"github.com/elastic/beats/libbeat/publisher"
|
|
)
|
|
|
|
func init() {
|
|
outputs.RegisterType("file", makeFileout)
|
|
}
|
|
|
|
type fileOutput struct {
|
|
filePath string
|
|
beat beat.Info
|
|
observer outputs.Observer
|
|
rotator *file.Rotator
|
|
codec codec.Codec
|
|
}
|
|
|
|
// makeFileout instantiates a new file output instance.
|
|
func makeFileout(
|
|
beat beat.Info,
|
|
observer outputs.Observer,
|
|
cfg *common.Config,
|
|
) (outputs.Group, error) {
|
|
config := defaultConfig
|
|
if err := cfg.Unpack(&config); err != nil {
|
|
return outputs.Fail(err)
|
|
}
|
|
|
|
// disable bulk support in publisher pipeline
|
|
cfg.SetInt("bulk_max_size", -1, -1)
|
|
|
|
fo := &fileOutput{
|
|
beat: beat,
|
|
observer: observer,
|
|
}
|
|
if err := fo.init(beat, config); err != nil {
|
|
return outputs.Fail(err)
|
|
}
|
|
|
|
return outputs.Success(-1, 0, fo)
|
|
}
|
|
|
|
func (out *fileOutput) init(beat beat.Info, c config) error {
|
|
var path string
|
|
if c.Filename != "" {
|
|
path = filepath.Join(c.Path, c.Filename)
|
|
} else {
|
|
path = filepath.Join(c.Path, out.beat.Beat)
|
|
}
|
|
|
|
out.filePath = path
|
|
|
|
var err error
|
|
out.rotator, err = file.NewFileRotator(
|
|
path,
|
|
file.MaxSizeBytes(c.RotateEveryKb*1024),
|
|
file.MaxBackups(c.NumberOfFiles),
|
|
file.Permissions(os.FileMode(c.Permissions)),
|
|
file.WithLogger(logp.NewLogger("rotator").With(logp.Namespace("rotator"))),
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
out.codec, err = codec.CreateEncoder(beat, c.Codec)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
logp.Info("Initialized file output. "+
|
|
"path=%v max_size_bytes=%v max_backups=%v permissions=%v",
|
|
path, c.RotateEveryKb*1024, c.NumberOfFiles, os.FileMode(c.Permissions))
|
|
|
|
return nil
|
|
}
|
|
|
|
// Implement Outputer
|
|
func (out *fileOutput) Close() error {
|
|
return out.rotator.Close()
|
|
}
|
|
|
|
func (out *fileOutput) Publish(
|
|
batch publisher.Batch,
|
|
) error {
|
|
defer batch.ACK()
|
|
|
|
st := out.observer
|
|
events := batch.Events()
|
|
st.NewBatch(len(events))
|
|
|
|
dropped := 0
|
|
for i := range events {
|
|
event := &events[i]
|
|
|
|
serializedEvent, err := out.codec.Encode(out.beat.Beat, &event.Content)
|
|
if err != nil {
|
|
if event.Guaranteed() {
|
|
logp.Critical("Failed to serialize the event: %v", err)
|
|
} else {
|
|
logp.Warn("Failed to serialize the event: %v", err)
|
|
}
|
|
|
|
dropped++
|
|
continue
|
|
}
|
|
|
|
if _, err = out.rotator.Write(append(serializedEvent, '\n')); err != nil {
|
|
st.WriteError(err)
|
|
|
|
if event.Guaranteed() {
|
|
logp.Critical("Writing event to file failed with: %v", err)
|
|
} else {
|
|
logp.Warn("Writing event to file failed with: %v", err)
|
|
}
|
|
|
|
dropped++
|
|
continue
|
|
}
|
|
|
|
st.WriteBytes(len(serializedEvent) + 1)
|
|
}
|
|
|
|
st.Dropped(dropped)
|
|
st.Acked(len(events) - dropped)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (out *fileOutput) String() string {
|
|
return "file(" + out.filePath + ")"
|
|
}
|