-
Notifications
You must be signed in to change notification settings - Fork 4
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
Support vlogs new features: pipes and stats (pipe confuses the parser) #22
Labels
bug
Something isn't working
Comments
@Loori-R shall we remove support of |
The |
Loori-R
added a commit
that referenced
this issue
Jun 18, 2024
dmitryk-dk
added a commit
that referenced
this issue
Jun 25, 2024
* fix: change time range to start and end query args #22 * fix tests check and check zero time --------- Co-authored-by: dmitryk-dk <[email protected]>
@dmitryk-dk as far as I am able to test it works flawlessly. Thank you! |
Close as solved. Thank you! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Recent victorialogs supports marvelous features, namely pipes. However it breaks the logic in datasource:
cannot parse query [_time:[2024-05-16T11:56:06.733Z, 2024-05-16T17:56:06.733Z] AND (severity:warning | stats count() logs)]: unexpected token "|" instead of ')'; context: [ 2024-05-16T17:56:06.733Z] AND (severity:warning |]
The problem is that time gets inserted as
_time:XX AND ( <query_string> )
and pipe shall be at the end, outside of the parens. The easiest is probably simply put everything after and including the first pipe outside the parentheses.
The text was updated successfully, but these errors were encountered: