common

package
v0.3.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 18, 2018 License: MIT Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const (
	TimeFormat        = time.RFC3339
	FollowPollTime    = 5 * time.Second
	ConnectionRetries = 10
)

Variables

This section is empty.

Functions

func Dedup added in v0.2.1

func Dedup(messageChan chan LogMessage) chan LogMessage

Skips duplicate messages (based on .ID)

func FlattenAttributes

func FlattenAttributes(m, into map[string]interface{}, prefix string)

func MatchesQuery

func MatchesQuery(m LogMessage, q Query) bool

func MustJsonDecode

func MustJsonDecode(jsonString string, dst interface{})

func MustJsonEncode

func MustJsonEncode(obj interface{}) string

func Project

func Project(m map[string]interface{}, fields []string) map[string]interface{}

func ReQueryFollow added in v0.2.1

func ReQueryFollow(ctx context.Context, queryMessagesFunc func() ([]LogMessage, error)) <-chan LogMessage

This is a simplistic way to implement log "following" (tailing) in a generic way. The idea is to simply execute the fetch log query (implemented by `queryMessagesFunc`) over and over, every `FollowPollTime` seconds, and push the results through the deduplicating result channel returned (deduplication happens based on message ID) This may seem overly inefficient, but due to the eventual-consistency type behavior of many log aggregation systems, logs may not actually arrive in sequence, so requesting new logs based on timestamps won't work reliably.

Types

type Client

type Client interface {
	Query(ctx context.Context, query Query) <-chan LogMessage
	ImplementsAdvancedFilters() bool
}

type EqualityFilter added in v0.3.0

type EqualityFilter struct {
	FieldName string
	Operator  string
	Value     string
}

func (EqualityFilter) Matches added in v0.3.0

func (f EqualityFilter) Matches(m LogMessage) bool

type ExistenceFilter added in v0.3.0

type ExistenceFilter struct {
	FieldName string
	Exists    bool // true if FieldName should exist in the message, false if FieldName should *not* exist

}

func (ExistenceFilter) Matches added in v0.3.0

func (f ExistenceFilter) Matches(m LogMessage) bool

Matches indicates whether the existence filter matches the log message

type LogMessage

type LogMessage struct {
	ID        string    `json:"id,omitempty"`
	Timestamp time.Time `json:"@timestamp"`
	// required: "message" attribute
	Attributes map[string]interface{} `json:"attributes"`
}

func FlattenLogMessage

func FlattenLogMessage(message LogMessage) LogMessage

func NewLogMessage

func NewLogMessage() LogMessage

func (LogMessage) ContentHash

func (lm LogMessage) ContentHash() string

func (LogMessage) Map

func (lm LogMessage) Map() map[string]interface{}

Map performs a shallow copy of the Attributes map and adds fields for '@id' and '@timestamp'

func (LogMessage) UniqueID

func (lm LogMessage) UniqueID() string

type MembershipFilter added in v0.3.0

type MembershipFilter struct {
	FieldName     string
	ValidValues   []string
	InvalidValues []string
}

func (MembershipFilter) Matches added in v0.3.0

func (f MembershipFilter) Matches(m LogMessage) bool

Matches indicates whether the log message satisfies membership constraints

type Query

type Query struct {
	QueryString       string
	After             *time.Time
	Before            *time.Time
	SelectFields      []string
	EqualityFilters   []EqualityFilter
	ExistenceFilters  []ExistenceFilter
	MembershipFilters []MembershipFilter
	MaxResults        int
	Unique            bool
	Follow            bool
}

type QuerySelectors

type QuerySelectors struct {
	Last        string   `yaml:"last,omitempty"`
	Before      string   `yaml:"before,omitempty"`
	After       string   `yaml:"after,omitempty"`
	Select      []string `yaml:"select,omitempty"`
	Where       []string `yaml:"where,omitempty"`
	OneOf       []string `yaml:"one_of,omitempty"`
	NotOneOf    []string `yaml:"not_one_of,omitempty"`
	Exists      []string `yaml:"exists,omitempty"`
	NotExists   []string `yaml:"not_exists,omitempty"`
	Unique      bool     `yaml:"unique,omitempty"`
	QueryString []string `yaml:"query,omitempty"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL