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
Describe the bug
Operators are not working in Grafana when using the plugin.
To Reproduce
Steps to reproduce the behavior:
Grafana and create a new query using FireQL Syntax
Run query SELECT (`clients.msadam.metrics.average_machines_online` / `clients.msadam.metrics.machines_total`) as `uptime` FROM reports_data
Expected behavior
I expect the query to run and produce results which include the data after the division is computed.
Desktop (please complete the following information):
OS: macOS
Browser: chrome
Version: 119
Additional context
Both of these 2 queries work as expected:
SELECT `clients.msadam.metrics.average_machines_online` as `average_machines_online` FROM reports_data
SELECT `clients.msadam.metrics.machines_total` as `machines_total` FROM reports_data
The documentation mentions supporting operators. I am not sure if this is something that just doesn't work with the Grafana plugin.
Both values are numbers in my Firebase database.
The text was updated successfully, but these errors were encountered:
Describe the bug
Operators are not working in Grafana when using the plugin.
To Reproduce
Steps to reproduce the behavior:
SELECT (`clients.msadam.metrics.average_machines_online` / `clients.msadam.metrics.machines_total`) as `uptime` FROM reports_data
Expected behavior
I expect the query to run and produce results which include the data after the division is computed.
Desktop (please complete the following information):
Additional context
Both of these 2 queries work as expected:
SELECT `clients.msadam.metrics.average_machines_online` as `average_machines_online` FROM reports_data
SELECT `clients.msadam.metrics.machines_total` as `machines_total` FROM reports_data
The documentation mentions supporting operators. I am not sure if this is something that just doesn't work with the Grafana plugin.
Both values are numbers in my Firebase database.
The text was updated successfully, but these errors were encountered: