Documentation ¶
Index ¶
- func GenerateTagsFromName(name []byte, opts models.TagOptions) (models.Tags, error)
- func GenerateTagsFromNameIntoSlice(name []byte, opts models.TagOptions, tags []models.Tag) (models.Tags, error)
- func NewIngester(downsamplerAndWriter ingest.DownsamplerAndWriter, rules CarbonIngesterRules, ...) (m3xserver.Handler, error)
- type CarbonIngesterRules
- type Options
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GenerateTagsFromName ¶
GenerateTagsFromName accepts a carbon metric name and blows it up into a list of key-value pair tags such that an input like:
foo.bar.baz
becomes
__g0__:foo __g1__:bar __g2__:baz
func GenerateTagsFromNameIntoSlice ¶
func GenerateTagsFromNameIntoSlice( name []byte, opts models.TagOptions, tags []models.Tag, ) (models.Tags, error)
GenerateTagsFromNameIntoSlice does the same thing as GenerateTagsFromName except it allows the caller to provide the slice into which the tags are appended.
func NewIngester ¶
func NewIngester( downsamplerAndWriter ingest.DownsamplerAndWriter, rules CarbonIngesterRules, opts Options, ) (m3xserver.Handler, error)
NewIngester returns an ingester for carbon metrics.
Types ¶
type CarbonIngesterRules ¶
type CarbonIngesterRules struct {
Rules []config.CarbonIngesterRuleConfiguration
}
CarbonIngesterRules contains the carbon ingestion rules.
Click to show internal directories.
Click to hide internal directories.