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/util/allowed_tenants.go

54 lines
1.4 KiB

package util
// AllowedTenants that can answer whether tenant is allowed or not based on configuration.
// Default value (nil) allows all tenants.
type AllowedTenants struct {
// If empty, all tenants are enabled. If not empty, only tenants in the map are enabled.
enabled map[string]struct{}
// If empty, no tenants are disabled. If not empty, tenants in the map are disabled.
disabled map[string]struct{}
}
// NewAllowedTenants builds new allowed tenants based on enabled and disabled tenants.
// If there are any enabled tenants, then only those tenants are allowed.
// If there are any disabled tenants, then tenant from that list, that would normally be allowed, is disabled instead.
func NewAllowedTenants(enabled []string, disabled []string) *AllowedTenants {
a := &AllowedTenants{}
if len(enabled) > 0 {
a.enabled = make(map[string]struct{}, len(enabled))
for _, u := range enabled {
a.enabled[u] = struct{}{}
}
}
if len(disabled) > 0 {
a.disabled = make(map[string]struct{}, len(disabled))
for _, u := range disabled {
a.disabled[u] = struct{}{}
}
}
return a
}
func (a *AllowedTenants) IsAllowed(tenantID string) bool {
if a == nil {
return true
}
if len(a.enabled) > 0 {
if _, ok := a.enabled[tenantID]; !ok {
return false
}
}
if len(a.disabled) > 0 {
if _, ok := a.disabled[tenantID]; ok {
return false
}
}
return true
}