[bot] [main] Automated version update (#2436)
Co-authored-by: Prometheus Operator Bot <prom-op-bot@users.noreply.github.com>
This commit is contained in:
@@ -2023,6 +2023,9 @@ spec:
|
||||
severity:
|
||||
description: Severity of the incident.
|
||||
type: string
|
||||
source:
|
||||
description: Unique location of the affected system.
|
||||
type: string
|
||||
url:
|
||||
description: The URL to send requests to.
|
||||
type: string
|
||||
|
||||
@@ -4932,7 +4932,7 @@ spec:
|
||||
podMonitorNamespaceSelector:
|
||||
description: |-
|
||||
Namespaces to match for PodMonitors discovery. An empty label selector
|
||||
matches all namespaces. A null label selector matches the current
|
||||
matches all namespaces. A null label selector (default value) matches the current
|
||||
namespace only.
|
||||
properties:
|
||||
matchExpressions:
|
||||
@@ -6532,6 +6532,107 @@ spec:
|
||||
|
||||
Only one scrape class can be set as the default.
|
||||
type: boolean
|
||||
metricRelabelings:
|
||||
description: |-
|
||||
MetricRelabelings configures the relabeling rules to apply to all samples before ingestion.
|
||||
|
||||
|
||||
The Operator adds the scrape class metric relabelings defined here.
|
||||
Then the Operator adds the target-specific metric relabelings defined in ServiceMonitors, PodMonitors, Probes and ScrapeConfigs.
|
||||
Then the Operator adds namespace enforcement relabeling rule, specified in '.spec.enforcedNamespaceLabel'.
|
||||
|
||||
|
||||
More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs
|
||||
items:
|
||||
description: |-
|
||||
RelabelConfig allows dynamic rewriting of the label set for targets, alerts,
|
||||
scraped samples and remote write samples.
|
||||
|
||||
|
||||
More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config
|
||||
properties:
|
||||
action:
|
||||
default: replace
|
||||
description: |-
|
||||
Action to perform based on the regex matching.
|
||||
|
||||
|
||||
`Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0.
|
||||
`DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0.
|
||||
|
||||
|
||||
Default: "Replace"
|
||||
enum:
|
||||
- replace
|
||||
- Replace
|
||||
- keep
|
||||
- Keep
|
||||
- drop
|
||||
- Drop
|
||||
- hashmod
|
||||
- HashMod
|
||||
- labelmap
|
||||
- LabelMap
|
||||
- labeldrop
|
||||
- LabelDrop
|
||||
- labelkeep
|
||||
- LabelKeep
|
||||
- lowercase
|
||||
- Lowercase
|
||||
- uppercase
|
||||
- Uppercase
|
||||
- keepequal
|
||||
- KeepEqual
|
||||
- dropequal
|
||||
- DropEqual
|
||||
type: string
|
||||
modulus:
|
||||
description: |-
|
||||
Modulus to take of the hash of the source label values.
|
||||
|
||||
|
||||
Only applicable when the action is `HashMod`.
|
||||
format: int64
|
||||
type: integer
|
||||
regex:
|
||||
description: Regular expression against which the extracted value is matched.
|
||||
type: string
|
||||
replacement:
|
||||
description: |-
|
||||
Replacement value against which a Replace action is performed if the
|
||||
regular expression matches.
|
||||
|
||||
|
||||
Regex capture groups are available.
|
||||
type: string
|
||||
separator:
|
||||
description: Separator is the string between concatenated SourceLabels.
|
||||
type: string
|
||||
sourceLabels:
|
||||
description: |-
|
||||
The source labels select values from existing labels. Their content is
|
||||
concatenated using the configured Separator and matched against the
|
||||
configured regular expression.
|
||||
items:
|
||||
description: |-
|
||||
LabelName is a valid Prometheus label name which may only contain ASCII
|
||||
letters, numbers, as well as underscores.
|
||||
pattern: ^[a-zA-Z_][a-zA-Z0-9_]*$
|
||||
type: string
|
||||
type: array
|
||||
targetLabel:
|
||||
description: |-
|
||||
Label to which the resulting string is written in a replacement.
|
||||
|
||||
|
||||
It is mandatory for `Replace`, `HashMod`, `Lowercase`, `Uppercase`,
|
||||
`KeepEqual` and `DropEqual` actions.
|
||||
|
||||
|
||||
Regex capture groups are available.
|
||||
type: string
|
||||
type: object
|
||||
type: array
|
||||
name:
|
||||
description: Name of the scrape class.
|
||||
minLength: 1
|
||||
@@ -7105,7 +7206,7 @@ spec:
|
||||
serviceMonitorNamespaceSelector:
|
||||
description: |-
|
||||
Namespaces to match for ServicedMonitors discovery. An empty label selector
|
||||
matches all namespaces. A null label selector matches the current
|
||||
matches all namespaces. A null label selector (default value) matches the current
|
||||
namespace only.
|
||||
properties:
|
||||
matchExpressions:
|
||||
|
||||
@@ -4290,7 +4290,7 @@ spec:
|
||||
podMonitorNamespaceSelector:
|
||||
description: |-
|
||||
Namespaces to match for PodMonitors discovery. An empty label selector
|
||||
matches all namespaces. A null label selector matches the current
|
||||
matches all namespaces. A null label selector (default value) matches the current
|
||||
namespace only.
|
||||
properties:
|
||||
matchExpressions:
|
||||
@@ -5307,6 +5307,107 @@ spec:
|
||||
|
||||
Only one scrape class can be set as the default.
|
||||
type: boolean
|
||||
metricRelabelings:
|
||||
description: |-
|
||||
MetricRelabelings configures the relabeling rules to apply to all samples before ingestion.
|
||||
|
||||
|
||||
The Operator adds the scrape class metric relabelings defined here.
|
||||
Then the Operator adds the target-specific metric relabelings defined in ServiceMonitors, PodMonitors, Probes and ScrapeConfigs.
|
||||
Then the Operator adds namespace enforcement relabeling rule, specified in '.spec.enforcedNamespaceLabel'.
|
||||
|
||||
|
||||
More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs
|
||||
items:
|
||||
description: |-
|
||||
RelabelConfig allows dynamic rewriting of the label set for targets, alerts,
|
||||
scraped samples and remote write samples.
|
||||
|
||||
|
||||
More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config
|
||||
properties:
|
||||
action:
|
||||
default: replace
|
||||
description: |-
|
||||
Action to perform based on the regex matching.
|
||||
|
||||
|
||||
`Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0.
|
||||
`DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0.
|
||||
|
||||
|
||||
Default: "Replace"
|
||||
enum:
|
||||
- replace
|
||||
- Replace
|
||||
- keep
|
||||
- Keep
|
||||
- drop
|
||||
- Drop
|
||||
- hashmod
|
||||
- HashMod
|
||||
- labelmap
|
||||
- LabelMap
|
||||
- labeldrop
|
||||
- LabelDrop
|
||||
- labelkeep
|
||||
- LabelKeep
|
||||
- lowercase
|
||||
- Lowercase
|
||||
- uppercase
|
||||
- Uppercase
|
||||
- keepequal
|
||||
- KeepEqual
|
||||
- dropequal
|
||||
- DropEqual
|
||||
type: string
|
||||
modulus:
|
||||
description: |-
|
||||
Modulus to take of the hash of the source label values.
|
||||
|
||||
|
||||
Only applicable when the action is `HashMod`.
|
||||
format: int64
|
||||
type: integer
|
||||
regex:
|
||||
description: Regular expression against which the extracted value is matched.
|
||||
type: string
|
||||
replacement:
|
||||
description: |-
|
||||
Replacement value against which a Replace action is performed if the
|
||||
regular expression matches.
|
||||
|
||||
|
||||
Regex capture groups are available.
|
||||
type: string
|
||||
separator:
|
||||
description: Separator is the string between concatenated SourceLabels.
|
||||
type: string
|
||||
sourceLabels:
|
||||
description: |-
|
||||
The source labels select values from existing labels. Their content is
|
||||
concatenated using the configured Separator and matched against the
|
||||
configured regular expression.
|
||||
items:
|
||||
description: |-
|
||||
LabelName is a valid Prometheus label name which may only contain ASCII
|
||||
letters, numbers, as well as underscores.
|
||||
pattern: ^[a-zA-Z_][a-zA-Z0-9_]*$
|
||||
type: string
|
||||
type: array
|
||||
targetLabel:
|
||||
description: |-
|
||||
Label to which the resulting string is written in a replacement.
|
||||
|
||||
|
||||
It is mandatory for `Replace`, `HashMod`, `Lowercase`, `Uppercase`,
|
||||
`KeepEqual` and `DropEqual` actions.
|
||||
|
||||
|
||||
Regex capture groups are available.
|
||||
type: string
|
||||
type: object
|
||||
type: array
|
||||
name:
|
||||
description: Name of the scrape class.
|
||||
minLength: 1
|
||||
@@ -5880,7 +5981,7 @@ spec:
|
||||
serviceMonitorNamespaceSelector:
|
||||
description: |-
|
||||
Namespaces to match for ServicedMonitors discovery. An empty label selector
|
||||
matches all namespaces. A null label selector matches the current
|
||||
matches all namespaces. A null label selector (default value) matches the current
|
||||
namespace only.
|
||||
properties:
|
||||
matchExpressions:
|
||||
|
||||
Reference in New Issue
Block a user