We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Essentially prometheus/prometheus#12605 but on any component that implements StoreAPI.
Example response without external labels attached:
aaa{instance="bbb", job="etcd-prometheus-exporter", region="bar", service="etcd-prometheus-exporter", toposphere="test1"} 0 aaa{instance="bbb", job="etcd-prometheus-exporter", region="bar", service="etcd-prometheus-exporter", toposphere="test2"} 0 aaa{instance="bbb", job="etcd-prometheus-exporter", region="foo", service="etcd-prometheus-exporter", toposphere="test1"} 1 aaa{instance="bbb", job="etcd-prometheus-exporter", region="foo", service="etcd-prometheus-exporter", toposphere="test2"} 1 aaa{instance="bbb", job="etcd-prometheus-exporter", service="etcd-prometheus-exporter", toposphere="test1"} 1
With external label overwriting region to foo:
region
foo
aaa{instance="bbb", job="etcd-prometheus-exporter", region="foo", service="etcd-prometheus-exporter", toposphere="test1"} 0 aaa{instance="bbb", job="etcd-prometheus-exporter", region="foo", service="etcd-prometheus-exporter", toposphere="test2"} 0 aaa{instance="bbb", job="etcd-prometheus-exporter", region="foo", service="etcd-prometheus-exporter", toposphere="test1"} 1 aaa{instance="bbb", job="etcd-prometheus-exporter", region="foo", service="etcd-prometheus-exporter", toposphere="test2"} 1 aaa{instance="bbb", job="etcd-prometheus-exporter", region="foo", service="etcd-prometheus-exporter", toposphere="test1"} 1
All of these places are probably affected: https://github.com/search?q=repo%3Athanos-io%2Fthanos+labelpb.ExtendSortedLabels&type=code.
I guess we need to return an error in case of duplicated series?
The text was updated successfully, but these errors were encountered:
This issue seems can be closed.
Sorry, something went wrong.
No branches or pull requests
Essentially prometheus/prometheus#12605 but on any component that implements StoreAPI.
Example response without external labels attached:
With external label overwriting
region
tofoo
:All of these places are probably affected: https://github.com/search?q=repo%3Athanos-io%2Fthanos+labelpb.ExtendSortedLabels&type=code.
I guess we need to return an error in case of duplicated series?
The text was updated successfully, but these errors were encountered: