Skip to content

Commit 571ec08

Browse files
committed
Remove ingestion_limit config option from docs
1 parent be969ea commit 571ec08

File tree

2 files changed

+1
-15
lines changed
  • docs/sources/configure-server/reference-configuration-parameters
  • pkg/validation

2 files changed

+1
-15
lines changed

docs/sources/configure-server/reference-configuration-parameters/index.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2020,20 +2020,6 @@ The `limits` block configures default and per-tenant limits imposed by component
20202020
# CLI flag: -distributor.ingestion-burst-size-mb
20212021
[ingestion_burst_size_mb: <float> | default = 2]
20222022
2023-
ingestion_limit:
2024-
[period_type: <string> | default = ""]
2025-
2026-
[period_limit_mb: <int> | default = ]
2027-
2028-
[limit_reset_time: <int> | default = ]
2029-
2030-
[limit_reached: <boolean> | default = ]
2031-
2032-
sampling:
2033-
[num_requests: <int> | default = ]
2034-
2035-
[period: <duration> | default = ]
2036-
20372023
# Maximum length accepted for label names.
20382024
# CLI flag: -validation.max-length-label-name
20392025
[max_label_name_length: <int> | default = 1024]

pkg/validation/limits.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ type Limits struct {
3333
// Distributor enforced limits.
3434
IngestionRateMB float64 `yaml:"ingestion_rate_mb" json:"ingestion_rate_mb"`
3535
IngestionBurstSizeMB float64 `yaml:"ingestion_burst_size_mb" json:"ingestion_burst_size_mb"`
36-
IngestionLimit *ingest_limits.Config `yaml:"ingestion_limit" json:"ingestion_limit"`
36+
IngestionLimit *ingest_limits.Config `yaml:"ingestion_limit" json:"ingestion_limit" category:"advanced" doc:"hidden"`
3737
MaxLabelNameLength int `yaml:"max_label_name_length" json:"max_label_name_length"`
3838
MaxLabelValueLength int `yaml:"max_label_value_length" json:"max_label_value_length"`
3939
MaxLabelNamesPerSeries int `yaml:"max_label_names_per_series" json:"max_label_names_per_series"`

0 commit comments

Comments
 (0)