-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
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
Empty result when using offset modifier in query #466
Comments
Downgrading to 0.0.72 fixed the problem. |
I am unable to reproduce the same; I am using the following config: promxy:
server_groups:
- static_configs:
- targets:
- demo.robustperception.io:9090
http_client:
dial_timeout: 1s And both the direct and the offset query work I'm also unable to reproduce with a local build of lastest prom Config: promxy:
server_groups:
- static_configs:
- targets:
- localhost:9090
labels:
az: a So unfortunately I don't see to be able to reproduce your issue; can you reproduce with the first demo config? |
I was able to reproduce; this seems to be an issue specifically for VectorSelectors (meaning if you add a function like count it doesn't reproduce). I have a test and fix in #467 |
I'm using promxy 0.0.73 and the following minimal configuration:
A query like
count(node_exporter_build_info)
works, but if you introduce the offset modifier likecount(node_exporter_build_info offset 2h)
the result set is empty.Querying the Prometheus query UI directly works so the problem seems to be in Promxy.
The text was updated successfully, but these errors were encountered: