Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/pkg/storage/errors/errors.go

10 lines
257 B

package errors
var ErrQueryMustContainMetricName = QueryError("query must contain metric name")
// Query errors are to be treated as user errors, rather than storage errors.
type QueryError string
func (e QueryError) Error() string {
return string(e)
}