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
!=
The following:
.ddtags.kube_namespace=="kong" && .message!="[notice] 2383#0:4 [lua] init.lua:272:"
Gives the error:
error[E203]: syntax error ┌─ :1:38 │ 1 │ .ddtags.kube_namespace=="kong" && .message!="[notice] 2383#0:4 [lua] init.lua:272:" │ ^^^^^^^ │ │ │ unexpected syntax token: "FunctionCall" │ expected one of: ".", "[", "abort", "identifier", "path field", "return", "string literal", RQuery │ = see language documentation at https://vrl.dev = try your code in the VRL REPL, learn more at https://vrl.dev/examples
Adding whitespace around the != seems to fix it:
.ddtags.kube_namespace=="kong" && .message != "[notice] 2383#0:4 [lua] init.lua:272:"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following:
Gives the error:
Adding whitespace around the
!=
seems to fix it:The text was updated successfully, but these errors were encountered: