Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AttributeMatcher ¶
type AttributeMatcher struct { Key string // If both AttributeValue and StringFilter are nil only check for key existence. AttributeValue *pdata.AttributeValue // StringFilter is needed to match against a regular expression StringFilter filterset.FilterSet }
attributeMatcher is a attribute key/value pair to match to.
type AttributesMatcher ¶
type AttributesMatcher []AttributeMatcher
func NewAttributesMatcher ¶
func NewAttributesMatcher(config filterset.Config, attributes []filterconfig.Attribute) (AttributesMatcher, error)
func (AttributesMatcher) Match ¶
func (ma AttributesMatcher) Match(attrs pdata.AttributeMap) bool
match attributes specification against a span/log.
type PropertiesMatcher ¶
type PropertiesMatcher struct {
// contains filtered or unexported fields
}
propertiesMatcher allows matching a span against various span properties.
func NewMatcher ¶
func NewMatcher(mp *filterconfig.MatchProperties) (PropertiesMatcher, error)
NewMatcher creates a span Matcher that matches based on the given MatchProperties.
func (*PropertiesMatcher) Match ¶
func (mp *PropertiesMatcher) Match(attributes pdata.AttributeMap, resource pdata.Resource, library pdata.InstrumentationLibrary) bool
Match matches a span or log to a set of properties.