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
Influx was not return any results when true was wrapped with double quotes vs single quotes.
This returned 0: select count(distinct(hostname)) FROM "clients" WHERE ($timeFilter AND ap_name =~ /$AP$/ AND site_name =~ /$Site$/ AND is_guest = "true")
This returns the actual guest count: select count(distinct(hostname)) FROM "clients" WHERE ($timeFilter AND ap_name =~ /$AP$/ AND site_name =~ /$Site$/ AND is_guest = 'true')
The Guest count for the 'UAP Insights - InfluxDB' dashboard displays as 0/zero.
To fix change the query to is_guest evaluation to
AND is_guest = 'true'
note single quotes rather than double.The text was updated successfully, but these errors were encountered: