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/dataobj/metastore/multitenancy/timeranges.go

12 lines
182 B

package multitenancy
import (
"time"
)
// TimeRange represents a time range for a specific tenant.
type TimeRange struct {
Tenant string
MinTime time.Time
MaxTime time.Time
}