mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-11 08:04:04 -08:00
73ddf603af
Label selector can be "set-based"(https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#set-based-requirement) but such a selector causes Prometheus start failure with the "unexpected error: parsing YAML file ...: invalid selector: 'foo in (bar,baz)'; can't understand 'baz)'"-like error. This is caused by the `fields.ParseSelector(string)` function that simply splits an expression as a CSV-list, so a comma confuses such a parsing method and lead to the error. Use `labels.Parse(string)` to use a valid lexer to parse a selector expression. Closes #8284. Signed-off-by: Alexey Shumkin <Alex.Crezoff@gmail.com>
14 lines
349 B
YAML
14 lines
349 B
YAML
scrape_configs:
|
|
- job_name: prometheus
|
|
kubernetes_sd_configs:
|
|
- role: pod
|
|
selectors:
|
|
- role: "pod"
|
|
label: "foo=bar"
|
|
field: "metadata.status=Running"
|
|
- role: pod
|
|
selectors:
|
|
- role: "pod"
|
|
label: "foo in (bar,baz)"
|
|
field: "metadata.status=Running"
|