You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f.IntVar(&l.AlertmanagerMaxAlertsSizeBytes, "alertmanager.max-alerts-size-bytes", 0, "Maximum total size of alerts that a single user can have, alert size is the sum of the bytes of its labels, annotations and generatorURL. Inserting more alerts will fail with a log message and metric increment. 0 = no limit.")
355
357
f.IntVar(&l.AlertmanagerMaxSilencesCount, "alertmanager.max-silences-count", 0, "Maximum number of silences that a single user can have, including expired silences. 0 = no limit.")
356
358
f.IntVar(&l.AlertmanagerMaxSilencesSizeBytes, "alertmanager.max-silences-size-bytes", 0, "Maximum size of individual silences that a single user can have. 0 = no limit.")
Copy file name to clipboardExpand all lines: schemas/cortex-config-schema.json
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5184,6 +5184,12 @@
5184
5184
"description": "List of metric relabel configurations. Note that in most situations, it is more effective to use metrics relabeling directly in the Prometheus server, e.g. remote_write.write_relabel_configs.",
5185
5185
"type": "string"
5186
5186
},
5187
+
"name_validation_scheme": {
5188
+
"default": "legacy",
5189
+
"description": "Name validation scheme for metric names and label names, Support values are: legacy, utf8.",
5190
+
"type": "number",
5191
+
"x-cli-flag": "validation.name-validation-scheme"
5192
+
},
5187
5193
"native_histogram_ingestion_burst_size": {
5188
5194
"default": 0,
5189
5195
"description": "Per-user allowed native histogram ingestion burst size (in number of samples)",
0 commit comments