api

package
v0.9.4 Latest Latest
Warning

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

Go to latest
Published: Jun 7, 2019 License: Apache-2.0 Imports: 8 Imported by: 1,394

Documentation

Overview

Package api provides clients for the HTTP APIs.

Index

Constants

This section is empty.

Variables

View Source
var DefaultRoundTripper http.RoundTripper = &http.Transport{
	Proxy: http.ProxyFromEnvironment,
	DialContext: (&net.Dialer{
		Timeout:   30 * time.Second,
		KeepAlive: 30 * time.Second,
	}).DialContext,
	TLSHandshakeTimeout: 10 * time.Second,
}

DefaultRoundTripper is used if no RoundTripper is set in Config.

Functions

This section is empty.

Types

type Client

type Client interface {
	URL(ep string, args map[string]string) *url.URL
	Do(context.Context, *http.Request) (*http.Response, []byte, Error)
}

Client is the interface for an API client.

func NewClient

func NewClient(cfg Config) (Client, error)

NewClient returns a new Client.

It is safe to use the returned Client from multiple goroutines.

type Config

type Config struct {
	// The address of the Prometheus to connect to.
	Address string

	// RoundTripper is used by the Client to drive HTTP requests. If not
	// provided, DefaultRoundTripper will be used.
	RoundTripper http.RoundTripper
}

Config defines configuration parameters for a new client.

type Error added in v0.9.4

type Error interface {
	error
	// Err returns the underlying error.
	Err() error
	// Warnings returns a list of warnings.
	Warnings() []string
}

Error encapsulates an error + warning

func DoGetFallback added in v0.9.3

func DoGetFallback(c Client, ctx context.Context, u *url.URL, args url.Values) (*http.Response, []byte, Error)

DoGetFallback will attempt to do the request as-is, and on a 405 it will fallback to a GET request.

func NewErrorAPI added in v0.9.4

func NewErrorAPI(err error, warnings []string) Error

type ErrorAPI added in v0.9.4

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

func (*ErrorAPI) Err added in v0.9.4

func (w *ErrorAPI) Err() error

func (*ErrorAPI) Error added in v0.9.4

func (w *ErrorAPI) Error() string

func (*ErrorAPI) Warnings added in v0.9.4

func (w *ErrorAPI) Warnings() []string

Directories

Path Synopsis
prometheus
v1
Package v1 provides bindings to the Prometheus HTTP API v1: http://prometheus.io/docs/querying/api/
Package v1 provides bindings to the Prometheus HTTP API v1: http://prometheus.io/docs/querying/api/

Jump to

Keyboard shortcuts

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