You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Installation details
Panel Name: Non-Token Aware queries
Dashboard Name: Scylla CQL
Scylla-Monitoring Version: Not sure, says master. In any case, the current master (c313539) seems to be affected as well as I checked the code.
Scylla-Version: 2021
Description
We encountered a HTTP 414 URI too long error from Prometheus when rendering "Non-Token Aware queries" widget. This was because all the values for node variable were concatenated in the query. The query for the widget combines multiple metrics together, so this list was repeated multiple times. This can be fixed by specifying .* as All value for the template variable, which will make the query shorter.
All template variables should be updated to have "allValue": ".*" in their JSON definition so that Grafana does not list all the options in case "All" is selected.
The text was updated successfully, but these errors were encountered:
Installation details
Panel Name: Non-Token Aware queries
Dashboard Name: Scylla CQL
Scylla-Monitoring Version: Not sure, says master. In any case, the current master (c313539) seems to be affected as well as I checked the code.
Scylla-Version: 2021
Description
We encountered a HTTP 414 URI too long error from Prometheus when rendering "Non-Token Aware queries" widget. This was because all the values for node variable were concatenated in the query. The query for the widget combines multiple metrics together, so this list was repeated multiple times. This can be fixed by specifying
.*
asAll value
for the template variable, which will make the query shorter.All template variables should be updated to have
"allValue": ".*"
in their JSON definition so that Grafana does not list all the options in case "All" is selected.The text was updated successfully, but these errors were encountered: