package api
import "github.com/prometheus/client_golang/api"
Package api provides clients for the HTTP APIs.
Index ¶
- Variables
- func DoGetFallback(c Client, ctx context.Context, u *url.URL, args url.Values) (*http.Response, []byte, error)
- type Client
- type Config
Variables ¶
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 ¶
func DoGetFallback ¶
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.
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 ¶
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.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
api/prometheus | |
api/prometheus/v1 | Package v1 provides bindings to the Prometheus HTTP API v1: http://prometheus.io/docs/querying/api/ |
- Version
- v0.9.3
- Published
- May 16, 2019
- Platform
- darwin/amd64
- Imports
- 8 packages
- Last checked
- 3 weeks ago –
Tools for package owners.