Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Metric ¶ added in v1.34.4
Metric is the basic entity which should be return by datasource It represents single data point with full list of labels
type Querier ¶ added in v1.34.8
Querier interface wraps Query method which executes given query and returns list of Metrics as result
type QuerierBuilder ¶ added in v1.59.0
type QuerierBuilder interface {
BuildWithParams(params QuerierParams) Querier
}
QuerierBuilder builds Querier with given params.
func Init ¶ added in v1.37.4
func Init() (QuerierBuilder, error)
Init creates a Querier from provided flag values.
type QuerierParams ¶ added in v1.59.0
QuerierParams params for Querier.
type Type ¶ added in v1.53.0
type Type struct {
// contains filtered or unexported fields
}
Type represents data source type
func NewGraphiteType ¶ added in v1.53.0
func NewGraphiteType() Type
NewGraphiteType returns graphite datasource type
func NewPrometheusType ¶ added in v1.53.0
func NewPrometheusType() Type
NewPrometheusType returns prometheus datasource type
func NewRawType ¶ added in v1.53.0
NewRawType returns datasource type from raw string without validation.
func (Type) MarshalYAML ¶ added in v1.53.0
MarshalYAML implements the yaml.Unmarshaler interface.
func (*Type) UnmarshalYAML ¶ added in v1.53.0
UnmarshalYAML implements the yaml.Unmarshaler interface.
func (*Type) ValidateExpr ¶ added in v1.53.0
ValidateExpr validates query expression with datasource ql.
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, basicAuthUser, basicAuthPass string, 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.