mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-06 01:38:10 +00:00
21 lines
1 KiB
Go
21 lines
1 KiB
Go
package provider
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrorNewOperatorNotSupportedByPrometheus creates an error that represents the fact that we were requested to service a query that
|
|
// Prometheus would be unable to support.
|
|
ErrorNewOperatorNotSupportedByPrometheus = errors.New("operator not supported by prometheus")
|
|
|
|
// ErrorNewOperatorRequiresValues creates an error that represents the fact that we were requested to service a query
|
|
// that was malformed in its operator/value combination.
|
|
ErrorNewOperatorRequiresValues = errors.New("operator requires values")
|
|
|
|
// ErrorNewOperatorDoesNotSupportValues creates an error that represents the fact that we were requested to service a query
|
|
// that was malformed in its operator/value combination.
|
|
ErrorNewOperatorDoesNotSupportValues = errors.New("operator does not support values")
|
|
|
|
// ErrorNewLabelNotSpecified creates an error that represents the fact that we were requested to service a query
|
|
// that was malformed in its label specification.
|
|
ErrorNewLabelNotSpecified = errors.New("label not specified")
|
|
)
|