Documentation ¶
Index ¶
Constants ¶
View Source
const MaxBufferSize = 2
Variables ¶
View Source
var ( ErrEOF = errors.New("EOF") ErrInvalidTimestamp = errors.New("invalid timestamp") )
Functions ¶
This section is empty.
Types ¶
type ElementParser ¶
type ElementParser interface {
// contains filtered or unexported methods
}
func NewWavefrontElements ¶
func NewWavefrontElements() []ElementParser
NewWavefrontElements returns a slice of ElementParser's for the Graphite format
type LoopedParser ¶
type LoopedParser struct {
// contains filtered or unexported fields
}
type NameParser ¶
type NameParser struct{}
type PointParser ¶
type PointParser struct { Elements []ElementParser // contains filtered or unexported fields }
PointParser is a thread-unsafe parser and must be kept in a pool.
func NewPointParser ¶
func NewPointParser(parent *WavefrontParser) *PointParser
type PointScanner ¶
type PointScanner struct {
// contains filtered or unexported fields
}
Lexical Point Scanner
func NewScanner ¶
func NewScanner(r io.Reader) *PointScanner
func (*PointScanner) Scan ¶
func (s *PointScanner) Scan() (Token, string)
Scan returns the next token and literal value.
type TimestampParser ¶
type TimestampParser struct {
// contains filtered or unexported fields
}
type ValueParser ¶
type ValueParser struct{}
type WavefrontParser ¶
type WavefrontParser struct { Log telegraf.Logger `toml:"-"` // contains filtered or unexported fields }
func NewWavefrontParser ¶
func NewWavefrontParser(defaultTags map[string]string) *WavefrontParser
func (*WavefrontParser) Parse ¶
func (p *WavefrontParser) Parse(buf []byte) ([]telegraf.Metric, error)
func (*WavefrontParser) ParseLine ¶
func (p *WavefrontParser) ParseLine(line string) (telegraf.Metric, error)
func (*WavefrontParser) SetDefaultTags ¶
func (p *WavefrontParser) SetDefaultTags(tags map[string]string)
type WhiteSpaceParser ¶
type WhiteSpaceParser struct {
// contains filtered or unexported fields
}
Click to show internal directories.
Click to hide internal directories.