Postgres/TimescaleDB: Difference between revisions
Appearance
< Postgres
mNo edit summary |
mNo edit summary |
||
| Line 2: | Line 2: | ||
== Setup TimescaleDB == | == Setup TimescaleDB == | ||
* connect | |||
<blockquote> | |||
<pre> | |||
psql -d "postgres://user:password@localhost/postgres" | |||
</pre> | |||
</blockquote> | |||
* | * check | ||
<blockquote> | |||
<pre> | |||
\dx | |||
SHOW config_file; | |||
</pre> | |||
</blockquote> | |||
== Create table == | == Create table == | ||
Revision as of 11:27, 1 January 2025
Setup TimescaleDB
- connect
psql -d "postgres://user:password@localhost/postgres"
- check
\dx SHOW config_file;
Create table
CREATE TABLE sensor_data (
timestamp TIMESTAMPTZ NOT NULL,
topic TEXT,
value DOUBLE PRECISION
);
SELECT create_hypertable('sensor_data', 'timestamp');
Insert data via Node-RED
INSERT INTO sensor_data (time, topic, value) VALUES (
now(),
'{{{ msg.topic }}}',
'{{{ msg.payload }}}'
);
Get table size
SELECT hypertable_size('sensor_data');
Query
Grafana timefilter macro
- limits query to timeframe selected in grafana
SELECT *
FROM sensor_data
WHERE (topic = 'home/modbus-meter/sensor/total_system_power_w/state'
AND $__timeFilter("time"))
Time buckets
- https://docs.timescale.com/use-timescale/latest/time-buckets/about-time-buckets/
- https://docs.timescale.com/use-timescale/latest/time-buckets/use-time-buckets/
- 15min average time_buckets
SELECT time_bucket('1 hour', timestamp) as time,
avg(value) AS avg_value
FROM sensor_data
WHERE
topic = 'home/modbus-meter/sensor/total_system_power_w/state'
AND
$__timeFilter("timestamp")
GROUP by time
Meter / increasing counter
- https://github.com/timescale/timescaledb-toolkit/blob/main/docs/counter_agg.md
- https://stackoverflow.com/questions/76774353/get-complete-hours-time-buckets-with-timescaledb
- https://docs.timescale.com/use-timescale/latest/query-data/advanced-analytic-queries/#calculate-the-increase-in-a-value
SELECT time_bucket('1 hour', time) as bucket,
first(time,time) as period_begin,
last(time,time) as period_end,
MAX(counter) - MIN(counter) as total_consumption
FROM
GROUP BY 1;
first() + last ()
Grafana > Dashboards > Settings > Variables
- topic = SELECT DISTINCT topic FROM "sensor_data"