QuickSight calculated field: How to get sum of last values of timestream measures

0

Hi,

I have a TimeStream table containing power consumed by IoT devices. I would like to create a calculated field in QuickSight which computes the sum of last power values reported by all devices?

AWS
已提問 2 年前檢視次數 1620 次
1 個回答
0

If I understand correctly, the query result is a single value which represents the aggregate power of all devices. The device values to aggregate is the latest power of each device. For e.g. if there are 3 devices with the following power values

device1: 00:00:00 val=20, 00:00:05 val=25, 00:00:10 val=20
device2: 00:00:00 val=19, 00:00:05 val=72, 00:00:10 val=81
device3: 00:00:00 val=00, 00:00:05 val=22, 00:00:10 val=100

The result will be (20 + 81 + 100) = 201

A sample query for this is below

WITH cte1 AS (
    SELECT device, first_value(measure_value::bigint) OVER (PARTITION BY device ORDER BY time DESC) as value FROM <db>.<table> WHERE time > ago(1m)
), cte2 AS (
   SELECT device, min(value) as value FROM cte1 GROUP BY device
) SELECT sum(value) FROM cte2

The time predicate e.g. ago(1m) is necessary to ensure that the whole table is not scanned. It can be set to any time window that will give the latest power values of all devices.

AWS
已回答 2 年前
  • Thanks Rajesh! I was thinking of doing this via introducing a calculated fields on quicksight? Is this use case supported?

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南