1 Star 0 Fork 0

sqos/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
flows.go 1.93 KB
一键复制 编辑 原始数据 按行查看 历史
urso 提交于 2016-01-08 15:03 . Adds flows feature to packetbeat
package flows
import (
"time"
"github.com/elastic/beats/libbeat/logp"
"github.com/elastic/beats/packetbeat/config"
"github.com/elastic/beats/packetbeat/publish"
)
type Flows struct {
worker *worker
table *flowMetaTable
counterReg *counterReg
}
var debugf = logp.MakeDebug("flows")
const (
defaultTimeout = 30 * time.Second
defaultPeriod = 10 * time.Second
)
func NewFlows(pub publish.Flows, config *config.Flows) (*Flows, error) {
duration := func(s string, d time.Duration) (time.Duration, error) {
if s == "" {
return d, nil
}
return time.ParseDuration(s)
}
timeout, err := duration(config.Timeout, defaultTimeout)
if err != nil {
logp.Err("failed to parse flow timeout: %v", err)
return nil, err
}
period, err := duration(config.Period, defaultPeriod)
if err != nil {
logp.Err("failed to parse period: %v", err)
return nil, err
}
table := &flowMetaTable{
table: make(map[flowIDMeta]*flowTable),
}
counter := &counterReg{}
worker, err := newFlowsWorker(pub, table, counter, timeout, period)
if err != nil {
logp.Err("failed to configure flows processing intervals: %v", err)
return nil, err
}
return &Flows{
table: table,
worker: worker,
counterReg: counter,
}, nil
}
func (f *Flows) Lock() {
debugf("lock flows")
f.table.Lock()
}
func (f *Flows) Unlock() {
debugf("unlock flows")
f.table.Unlock()
}
func (f *Flows) Get(id *FlowID) *Flow {
debugf("get flow")
if id.flow.stats == nil {
debugf("lookup flow: %v => %v", id.flowIDMeta, id.flowID)
id.flow = f.table.get(id, f.counterReg)
}
return &id.flow
}
func (f *Flows) Start() {
f.worker.Start()
}
func (f *Flows) Stop() {
f.worker.Stop()
}
func (f *Flows) NewInt(name string) (*Int, error) {
return f.counterReg.newInt(name)
}
func (f *Flows) NewUint(name string) (*Uint, error) {
return f.counterReg.newUint(name)
}
func (f *Flows) NewFloat(name string) (*Float, error) {
return f.counterReg.newFloat(name)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sqos/beats.git
git@gitee.com:sqos/beats.git
sqos
beats
beats
v5.6.9

搜索帮助