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
{{ message }}
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.
#standardSQL
SELECT
$__timeGroupAlias(timestamp,10m,1h),
avg(`sensorvalue`) /100 AS sensorvalue
FROM `hypercloud-252112.hyperwarehouse.staging_tickle2019`
WHERE
$__timeFilter(timestamp) AND
nodeid = 749 AND
sensorid = 1
GROUP BY 1
ORDER BY 1 DESC
SQL as logged by BigQuery
#standardSQL
SELECT
TIMESTAMP( (PARSE_DATE( "%Y-%m-%d",CONCAT( CAST((EXTRACT(YEAR FROM `timestamp`)) AS STRING),'-',CAST((EXTRACT(MONTH FROM `timestamp`)) AS STRING),'-','01')))) AS time,
avg(`sensorvalue`) /100 AS sensorvalue
FROM `hypercloud-252112.hyperwarehouse.staging_tickle2019`
WHERE
`timestamp` BETWEEN TIMESTAMP_MILLIS (1587999590573) AND TIMESTAMP_MILLIS (1588604390573) AND
nodeid = 749 AND
sensorid = 1
GROUP BY 1
ORDER BY 1 DESC LIMIT 1280
Bug Report
Expected Behavior
Show multiple charts.
Actual Behavior
If I have a chart with no data for a couple of days, other charts will also drop data for those days.
Steps to Reproduce the Problem
The right chart has all data, the left chart misses a couple of days.
Specifications
The text was updated successfully, but these errors were encountered: