graphite

package
v0.14.3 Latest Latest
Warning

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

Go to latest
Published: Apr 22, 2020 License: Apache-2.0 Imports: 29 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// FindURL is the url for finding graphite metrics.
	FindURL = handler.RoutePrefixV1 + "/graphite/metrics/find"
)
View Source
const (
	// ReadURL is the url for the graphite query handler.
	ReadURL = handler.RoutePrefixV1 + "/graphite/render"
)

Variables

View Source
var (
	// FindHTTPMethods is the HTTP methods used with this resource.
	FindHTTPMethods = []string{http.MethodGet, http.MethodPost}
)
View Source
var (
	// ReadHTTPMethods is the HTTP methods used with this resource.
	ReadHTTPMethods = []string{http.MethodGet, http.MethodPost}
)

Functions

func NewFindHandler

func NewFindHandler(
	storage storage.Storage,
	fetchOptionsBuilder handler.FetchOptionsBuilder,
	instrumentOpts instrument.Options,
) http.Handler

NewFindHandler returns a new instance of handler.

func NewRenderHandler

func NewRenderHandler(
	storage storage.Storage,
	queryContextOpts models.QueryContextOptions,
	enforcer cost.ChainedEnforcer,
	instrumentOpts instrument.Options,
) http.Handler

NewRenderHandler returns a new render handler around the given storage.

func WriteRenderResponse

func WriteRenderResponse(
	w http.ResponseWriter,
	series ts.SeriesList,
	format string,
) error

WriteRenderResponse writes the response to a render request

Types

type RenderRequest

type RenderRequest struct {
	Targets       []string
	Format        string
	From          time.Time
	Until         time.Time
	MaxDataPoints int64
	Compare       time.Duration
	Timeout       time.Duration
}

RenderRequest are the arguments to a render call.

func ParseRenderRequest

func ParseRenderRequest(r *http.Request) (RenderRequest, error)

ParseRenderRequest parses the arguments to a render call from an incoming request.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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