graphite - ActiveState ActiveGo 1.8
...

Package graphite

import "github.com/prometheus/client_golang/prometheus/graphite"
Overview
Index
Examples

Overview ▾

Package graphite provides a bridge to push Prometheus metrics to a Graphite server.

type Bridge

Bridge pushes metrics to the configured Graphite server.

type Bridge struct {
    // contains filtered or unexported fields
}

Example

Code:

b, err := NewBridge(&Config{
    URL:           "graphite.example.org:3099",
    Gatherer:      prometheus.DefaultGatherer,
    Prefix:        "prefix",
    Interval:      15 * time.Second,
    Timeout:       10 * time.Second,
    ErrorHandling: AbortOnError,
    Logger:        log.New(os.Stdout, "graphite bridge: ", log.Lshortfile),
})
if err != nil {
    panic(err)
}

go func() {
    // Start something in a goroutine that uses metrics.
}()

// Push initial metrics to Graphite. Fail fast if the push fails.
if err := b.Push(); err != nil {
    panic(err)
}

// Create a Context to control stopping the Run() loop that pushes
// metrics to Graphite.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()

// Start pushing metrics to Graphite in the Run() loop.
b.Run(ctx)

func NewBridge

func NewBridge(c *Config) (*Bridge, error)

NewBridge returns a pointer to a new Bridge struct.

func (*Bridge) Push

func (b *Bridge) Push() error

Push pushes Prometheus metrics to the configured Graphite server.

func (*Bridge) Run

func (b *Bridge) Run(ctx context.Context)

Run starts the event loop that pushes Prometheus metrics to Graphite at the configured interval.

type Config

Config defines the Graphite bridge config.

type Config struct {
    // The url to push data to. Required.
    URL string

    // The prefix for the pushed Graphite metrics. Defaults to empty string.
    Prefix string

    // The interval to use for pushing data to Graphite. Defaults to 15 seconds.
    Interval time.Duration

    // The timeout for pushing metrics to Graphite. Defaults to 15 seconds.
    Timeout time.Duration

    // The Gatherer to use for metrics. Defaults to prometheus.DefaultGatherer.
    Gatherer prometheus.Gatherer

    // The logger that messages are written to. Defaults to no logging.
    Logger Logger

    // ErrorHandling defines how errors are handled. Note that errors are
    // logged regardless of the configured ErrorHandling provided Logger
    // is not nil.
    ErrorHandling HandlerErrorHandling
}

type HandlerErrorHandling

HandlerErrorHandling defines how a Handler serving metrics will handle errors.

type HandlerErrorHandling int

These constants cause handlers serving metrics to behave as described if errors are encountered.

const (
    // Ignore errors and try to push as many metrics to Graphite as possible.
    ContinueOnError HandlerErrorHandling = iota

    // Abort the push to Graphite upon the first error encountered.
    AbortOnError
)

type Logger

Logger is the minimal interface Bridge needs for logging. Note that log.Logger from the standard library implements this interface, and it is easy to implement by custom loggers, if they don't do so already anyway.

type Logger interface {
    Println(v ...interface{})
}