Documentation ¶
Index ¶
- Variables
- func GenDateParse(date string) (string, time.Time)
- func GeoIpASN(field string, p *types.Event, ctx interface{}) (map[string]string, error)
- func GeoIpCity(field string, p *types.Event, ctx interface{}) (map[string]string, error)
- func GeoIpInit(cfg map[string]string) (interface{}, error)
- func IpToRange(field string, p *types.Event, ctx interface{}) (map[string]string, error)
- func Parse(ctx UnixParserCtx, xp types.Event, nodes []Node) (types.Event, error)
- func ParseDate(in string, p *types.Event, x interface{}) (map[string]string, error)
- func SetTargetByName(target string, value string, evt *types.Event) bool
- type EnrichFunc
- type EnricherCtx
- type GeoIpEnricherCtx
- type InitFunc
- type Node
- type Parsers
- type Stagefile
- type UnixParserCtx
Constants ¶
This section is empty.
Variables ¶
View Source
var ExportedFuncs = []string{"GeoIpASN", "GeoIpCity"}
All plugins must export a list of function pointers for exported symbols
View Source
var NodesHits = prometheus.NewCounterVec( prometheus.CounterOpts{ Name: "cs_node_hits_total", Help: "Total events entered node.", }, []string{"source", "name"}, )
View Source
var NodesHitsKo = prometheus.NewCounterVec( prometheus.CounterOpts{ Name: "cs_node_hits_ko_total", Help: "Total events unsuccessfuly exited node.", }, []string{"source", "name"}, )
View Source
var NodesHitsOk = prometheus.NewCounterVec( prometheus.CounterOpts{ Name: "cs_node_hits_ok_total", Help: "Total events successfuly exited node.", }, []string{"source", "name"}, )
View Source
var ParseDump bool
View Source
var StageParseCache map[string]map[string]types.Event
Functions ¶
Types ¶
type EnrichFunc ¶
should be part of a packaged shared with enrich/geoip.go
type EnricherCtx ¶
type EnricherCtx struct { Funcs map[string]EnrichFunc Init InitFunc Plugin *plugin.Plugin //pointer to the actual plugin Name string Path string //path to .so ? RuntimeCtx interface{} //the internal context of plugin, given back over every call // contains filtered or unexported fields }
func Loadplugin ¶
func Loadplugin(path string) ([]EnricherCtx, error)
mimic plugin loading
TODO fix this shit with real plugin loading
type GeoIpEnricherCtx ¶
type GeoIpEnricherCtx struct {
// contains filtered or unexported fields
}
type Node ¶
type Node struct { FormatVersion string `yaml:"format"` //Enable config + runtime debug of node via config o/ Debug bool `yaml:"debug,omitempty"` //If enabled, the node (and its child) will report their own statistics Profiling bool `yaml:"profiling,omitempty"` //Name, author, description and reference(s) for parser pattern Name string `yaml:"name,omitempty"` Author string `yaml:"author,omitempty"` Description string `yaml:"description,omitempty"` Rerferences []string `yaml:"references,omitempty"` //This is mostly a hack to make writting less repetive. //relying on stage, we know which field to parse, and we //can as well promote log to next stage on success Stage string `yaml:"stage,omitempty"` //OnSuccess allows to tag a node to be able to move log to next stage on success OnSuccess string `yaml:"onsuccess,omitempty"` //Filter is executed at runtime (with current log line as context) //and must succeed or node is exited Filter string `yaml:"filter,omitempty"` RunTimeFilter *vm.Program `yaml:"-" json:"-"` //the actual compiled filter ExprDebugger *exprhelpers.ExprDebugger `yaml:"-" json:"-"` //used to debug expression by printing the content of each variable of the expression //If node has leafs, execute all of them until one asks for a 'break' LeavesNodes []Node `yaml:"nodes,omitempty"` //Flag used to describe when to 'break' or return an 'error' EnrichFunctions []EnricherCtx /* If the node is actually a leaf, it can have : grok, enrich, statics */ //pattern_syntax are named grok patterns that are re-utilised over several grok patterns SubGroks map[string]string `yaml:"pattern_syntax,omitempty"` //Holds a grok pattern Grok types.GrokPattern `yaml:"grok,omitempty"` //Statics can be present in any type of node and is executed last Statics []types.ExtraField `yaml:"statics,omitempty"` //Whitelists Whitelist types.Whitelist `yaml:"whitelist,omitempty"` Data []*types.DataSource `yaml:"data,omitempty"` // contains filtered or unexported fields }
func LoadStages ¶
func LoadStages(stageFiles []Stagefile, pctx *UnixParserCtx, ectx []EnricherCtx) ([]Node, error)
func (*Node) ProcessStatics ¶ added in v1.0.0
type Parsers ¶ added in v1.0.0
type Parsers struct { Ctx *UnixParserCtx Povfwctx *UnixParserCtx StageFiles []Stagefile PovfwStageFiles []Stagefile Nodes []Node Povfwnodes []Node EnricherCtx []EnricherCtx }
func LoadParsers ¶ added in v1.0.0
func LoadParsers(cConfig *csconfig.GlobalConfig, parsers *Parsers) (*Parsers, error)
Click to show internal directories.
Click to hide internal directories.