Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(operator): Disable log level discovery for OpenShift tenancy modes #14613

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions operator/internal/manifests/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ func ConfigOptions(opt Options) config.Options {
ObjectStorage: opt.ObjectStorage,
HTTPTimeouts: opt.Timeouts.Loki,
EnableRemoteReporting: opt.Gates.GrafanaLabsUsageReport,
DiscoverLogLevels: discoverLogLevels(&opt.Stack),
Ruler: config.Ruler{
Enabled: rulerEnabled,
RulesStorageDirectory: rulesStorageDirectory,
Expand Down Expand Up @@ -396,3 +397,16 @@ func retentionConfig(ls *lokiv1.LokiStackSpec) config.RetentionOptions {
DeleteWorkerCount: deleteWorkerCountMap[ls.Size],
}
}

func discoverLogLevels(ls *lokiv1.LokiStackSpec) bool {
if ls.Tenants == nil {
return true
}

if ls.Tenants.Mode == lokiv1.OpenshiftLogging ||
ls.Tenants.Mode == lokiv1.OpenshiftNetwork {
return false
}

return true
}
20 changes: 20 additions & 0 deletions operator/internal/manifests/internal/config/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: true
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -259,6 +260,7 @@ overrides:
},
Shippers: []string{"boltdb"},
EnableRemoteReporting: true,
DiscoverLogLevels: true,
HTTPTimeouts: HTTPTimeoutConfig{
IdleTimeout: 30 * time.Second,
ReadTimeout: 30 * time.Second,
Expand Down Expand Up @@ -355,6 +357,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -782,6 +785,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -1141,6 +1145,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -1501,6 +1506,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -1895,6 +1901,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -2231,6 +2238,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -2671,6 +2679,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -2996,6 +3005,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -3494,6 +3504,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -3756,6 +3767,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -4019,6 +4031,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -4283,6 +4296,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -4583,6 +4597,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -4881,6 +4896,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -5380,6 +5396,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -5557,6 +5574,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -5727,6 +5745,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down Expand Up @@ -6118,6 +6137,7 @@ limits_config:
max_line_size: 256000
max_entries_limit_per_query: 5000
discover_service_name: []
discover_log_levels: false
max_global_streams_per_user: 0
max_chunks_per_query: 2000000
max_query_length: 721h
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ limits_config:
max_line_size: {{ .Stack.Limits.Global.IngestionLimits.MaxLineSize }}
max_entries_limit_per_query: {{ .Stack.Limits.Global.QueryLimits.MaxEntriesLimitPerQuery }}
discover_service_name: []
discover_log_levels: {{ .DiscoverLogLevels }}
max_global_streams_per_user: {{ .Stack.Limits.Global.IngestionLimits.MaxGlobalStreamsPerTenant }}
max_chunks_per_query: {{ .Stack.Limits.Global.QueryLimits.MaxChunksPerQuery }}
max_query_length: 721h
Expand Down
1 change: 1 addition & 0 deletions operator/internal/manifests/internal/config/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ type Options struct {
MaxConcurrent MaxConcurrent
WriteAheadLog WriteAheadLog
EnableRemoteReporting bool
DiscoverLogLevels bool
Shippers []string

ObjectStorage storage.Options
Expand Down
Loading