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
Use TimeSeries and Logs panels together on the same dashboard. Display some logs in Logs panel and try filtering by one of the fields:
TimeSeries
Logs
Filter is applied incorrectly and breaks all other panels on the dashboard:
The original query used for one of the panels:
kubernetes.pod_namespace:~"$namespace" kubernetes.pod_name:~"$pod" kubernetes.container_name:~"$container" | stats by (kubernetes.pod_name,kubernetes.container_name) count() logs_total | filter logs_total: > 10 | math(logs_total/$_interval)
The resulting query sent by Grafana after filtering by field value in the table:
kubernetes.pod_namespace:~"argocd" kubernetes.pod_name:~".*" kubernetes.container_name:~".*" 000000000000000006fe3869127251e6c8c8bbee1a18bfbc _stream_id:"=" | stats by (kubernetes.pod_name,kubernetes.container_name) count() logs_total | filter logs_total: > 10 | math(logs_total/$_interval)
The part 000000000000000006fe3869127251e6c8c8bbee1a18bfbc _stream_id:"=" is syntaxtically incorrect for LogsQL.
000000000000000006fe3869127251e6c8c8bbee1a18bfbc _stream_id:"="
The text was updated successfully, but these errors were encountered:
Hi! The issue was fixed in the new release. Please check it. If you find any problems feel free to reopen the issue
Sorry, something went wrong.
Loori-R
No branches or pull requests
Use
TimeSeries
andLogs
panels together on the same dashboard. Display some logs inLogs
panel and try filtering by one of the fields:Filter is applied incorrectly and breaks all other panels on the dashboard:
The original query used for one of the panels:
The resulting query sent by Grafana after filtering by field value in the table:
The part
000000000000000006fe3869127251e6c8c8bbee1a18bfbc _stream_id:"="
is syntaxtically incorrect for LogsQL.The text was updated successfully, but these errors were encountered: