179 lines
3.9 KiB
Go
179 lines
3.9 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 input
|
|
|
|
import (
|
|
"fmt"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/mitchellh/hashstructure"
|
|
|
|
"github.com/elastic/beats/filebeat/channel"
|
|
"github.com/elastic/beats/filebeat/input/file"
|
|
"github.com/elastic/beats/libbeat/common"
|
|
"github.com/elastic/beats/libbeat/logp"
|
|
"github.com/elastic/beats/libbeat/monitoring"
|
|
)
|
|
|
|
var (
|
|
inputList = monitoring.NewUniqueList()
|
|
)
|
|
|
|
func init() {
|
|
monitoring.NewFunc(monitoring.GetNamespace("state").GetRegistry(), "input", inputList.Report, monitoring.Report)
|
|
}
|
|
|
|
// Input is the interface common to all input
|
|
type Input interface {
|
|
Run()
|
|
Stop()
|
|
Wait()
|
|
}
|
|
|
|
// Runner encapsulate the lifecycle of the input
|
|
type Runner struct {
|
|
config inputConfig
|
|
input Input
|
|
done chan struct{}
|
|
wg *sync.WaitGroup
|
|
ID uint64
|
|
Once bool
|
|
beatDone chan struct{}
|
|
}
|
|
|
|
// New instantiates a new Runner
|
|
func New(
|
|
conf *common.Config,
|
|
outlet channel.Connector,
|
|
beatDone chan struct{},
|
|
states []file.State,
|
|
dynFields *common.MapStrPointer,
|
|
) (*Runner, error) {
|
|
input := &Runner{
|
|
config: defaultConfig,
|
|
wg: &sync.WaitGroup{},
|
|
done: make(chan struct{}),
|
|
Once: false,
|
|
beatDone: beatDone,
|
|
}
|
|
|
|
var err error
|
|
if err = conf.Unpack(&input.config); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var h map[string]interface{}
|
|
conf.Unpack(&h)
|
|
input.ID, err = hashstructure.Hash(h, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var f Factory
|
|
f, err = GetFactory(input.config.Type)
|
|
if err != nil {
|
|
return input, err
|
|
}
|
|
|
|
context := Context{
|
|
States: states,
|
|
Done: input.done,
|
|
BeatDone: input.beatDone,
|
|
DynamicFields: dynFields,
|
|
Meta: nil,
|
|
}
|
|
var ipt Input
|
|
ipt, err = f(conf, outlet, context)
|
|
if err != nil {
|
|
return input, err
|
|
}
|
|
input.input = ipt
|
|
|
|
return input, nil
|
|
}
|
|
|
|
// Start starts the input
|
|
func (p *Runner) Start() {
|
|
p.wg.Add(1)
|
|
logp.Info("Starting input of type: %v; ID: %d ", p.config.Type, p.ID)
|
|
|
|
onceWg := sync.WaitGroup{}
|
|
if p.Once {
|
|
// Make sure start is only completed when Run did a complete first scan
|
|
defer onceWg.Wait()
|
|
}
|
|
|
|
onceWg.Add(1)
|
|
inputList.Add(p.config.Type)
|
|
// Add waitgroup to make sure input is finished
|
|
go func() {
|
|
defer func() {
|
|
onceWg.Done()
|
|
p.stop()
|
|
p.wg.Done()
|
|
}()
|
|
|
|
p.Run()
|
|
}()
|
|
}
|
|
|
|
// Run starts scanning through all the file paths and fetch the related files. Start a harvester for each file
|
|
func (p *Runner) Run() {
|
|
// Initial input run
|
|
p.input.Run()
|
|
|
|
// Shuts down after the first complete run of all input
|
|
if p.Once {
|
|
return
|
|
}
|
|
|
|
for {
|
|
select {
|
|
case <-p.done:
|
|
logp.Info("input ticker stopped")
|
|
return
|
|
case <-time.After(p.config.ScanFrequency):
|
|
logp.Debug("input", "Run input")
|
|
p.input.Run()
|
|
}
|
|
}
|
|
}
|
|
|
|
// Stop stops the input and with it all harvesters
|
|
func (p *Runner) Stop() {
|
|
// Stop scanning and wait for completion
|
|
close(p.done)
|
|
p.wg.Wait()
|
|
inputList.Remove(p.config.Type)
|
|
}
|
|
|
|
func (p *Runner) stop() {
|
|
logp.Info("Stopping Input: %d", p.ID)
|
|
|
|
// In case of once, it will be waited until harvesters close itself
|
|
if p.Once {
|
|
p.input.Wait()
|
|
} else {
|
|
p.input.Stop()
|
|
}
|
|
}
|
|
|
|
func (p *Runner) String() string {
|
|
return fmt.Sprintf("input [type=%s, ID=%d]", p.config.Type, p.ID)
|
|
}
|