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
I have a dashboard that uses the query (tags.host:$host) AND name:="freeipa_healthcheck" , but if I do not have parentheses around tags.host:$host then the query will return undesired logs because it generates the query tags.host:historia.local.shiftsystems.net OR krista.local.shiftsystems.net AND name:="freeipa_healthcheck" instead of the query (tags.host:historia.local.shiftsystems.net OR krista.local.shiftsystems.net) AND name:="freeipa_healthcheck". It would be nice if the generated query wrapped the part of the query with the variable automatically.
The text was updated successfully, but these errors were encountered:
Similar issue with selecting multiples in Grafana UI e.g selecting these two items
results in query like appname: "filterlog" AND action: rdr OR pass AND interface_name: * which does not work as intended. I came across this because changing the order of selection (i.e selecting one after another and vice versa) in Grafana UI provided different results and found this when digging into why
I have a dashboard that uses the query
(tags.host:$host) AND name:="freeipa_healthcheck"
, but if I do not have parentheses aroundtags.host:$host
then the query will return undesired logs because it generates the querytags.host:historia.local.shiftsystems.net OR krista.local.shiftsystems.net AND name:="freeipa_healthcheck"
instead of the query(tags.host:historia.local.shiftsystems.net OR krista.local.shiftsystems.net) AND name:="freeipa_healthcheck"
. It would be nice if the generated query wrapped the part of the query with the variable automatically.The text was updated successfully, but these errors were encountered: