Documentation ¶
Index ¶
- func InitSecretFlags()
- type Label
- type Metric
- type Param
- type Querier
- type QuerierBuilder
- type QuerierParams
- type VMStorage
- func (s *VMStorage) ApplyParams(params QuerierParams) *VMStorage
- func (s *VMStorage) BuildWithParams(params QuerierParams) Querier
- func (s *VMStorage) Clone() *VMStorage
- func (s *VMStorage) Query(ctx context.Context, query string, ts time.Time) ([]Metric, error)
- func (s *VMStorage) QueryRange(ctx context.Context, query string, start, end time.Time) ([]Metric, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func InitSecretFlags ¶ added in v1.79.3
func InitSecretFlags()
InitSecretFlags must be called after flag.Parse and before any logging
Types ¶
type Metric ¶ added in v1.34.4
Metric is the basic entity which should be return by datasource
type Param ¶ added in v1.65.0
type Param struct {
Key, Value string
}
Param represents an HTTP GET param
type Querier ¶ added in v1.34.8
type Querier interface { Query(ctx context.Context, query string, ts time.Time) ([]Metric, error) QueryRange(ctx context.Context, query string, from, to time.Time) ([]Metric, error) }
Querier interface wraps Query and QueryRange methods
type QuerierBuilder ¶ added in v1.59.0
type QuerierBuilder interface {
BuildWithParams(params QuerierParams) Querier
}
QuerierBuilder builds Querier with given params.
type QuerierParams ¶ added in v1.59.0
type QuerierParams struct { DataSourceType string EvaluationInterval time.Duration QueryParams url.Values Headers map[string]string }
QuerierParams params for Querier.
type VMStorage ¶
type VMStorage struct {
// contains filtered or unexported fields
}
VMStorage represents vmstorage entity with ability to read and write metrics
func NewVMStorage ¶ added in v1.34.4
func NewVMStorage(baseURL string, authCfg *promauth.Config, lookBack time.Duration, queryStep time.Duration, appendTypePrefix bool, c *http.Client) *VMStorage
NewVMStorage is a constructor for VMStorage
func (*VMStorage) ApplyParams ¶ added in v1.59.0
func (s *VMStorage) ApplyParams(params QuerierParams) *VMStorage
ApplyParams - changes given querier params.
func (*VMStorage) BuildWithParams ¶ added in v1.59.0
func (s *VMStorage) BuildWithParams(params QuerierParams) Querier
BuildWithParams - implements interface.
func (*VMStorage) QueryRange ¶ added in v1.61.0
func (s *VMStorage) QueryRange(ctx context.Context, query string, start, end time.Time) ([]Metric, error)
QueryRange executes the given query on the given time range. For Prometheus type see https://prometheus.io/docs/prometheus/latest/querying/api/#range-queries Graphite type isn't supported.