Jump to content

Linux/TimescaleDB: Difference between revisions

From Wiki
Marcluer (talk | contribs)
Marcluer (talk | contribs)
mNo edit summary
Line 17: Line 17:
</pre>
</pre>
</blockquote>
</blockquote>
== Create database ==
<blockquote>
<pre>
CREATE DATABASE uns OWNER user;
GRANT ALL PRIVILEGES ON DATABASE uns TO user;
\c uns            # switch to database
</pre>
</blockquote>


== Create table ==
== Create table ==
<blockquote>
<blockquote>
<pre>
<pre>
CREATE TABLE sensor_data (
CREATE TABLE IF NOT EXISTS process_value (
         timestamp TIMESTAMPTZ NOT NULL,
         timestamp TIMESTAMPTZ NOT NULL,
         topic TEXT NOT NULL,
         topic TEXT NOT NULL,
         value DOUBLE PRECISION
         value DOUBLE PRECISION NULL
);
);
</pre>
</pre>
Line 31: Line 42:
<blockquote>
<blockquote>
<pre>
<pre>
SELECT create_hypertable('sensor_data', 'timestamp');
SELECT create_hypertable('process_value', 'timestamp');
</pre>
</pre>
</blockquote>
</blockquote>

Revision as of 20:56, 2 January 2025

Setup TimescaleDB

  • connect
psql -d "postgres://user:password@localhost/postgres"
  • check
\dx                               # list extensions
SHOW config_file;                 # show config file location
\dt                               # list all databases

Create database

CREATE DATABASE uns OWNER user;
GRANT ALL PRIVILEGES ON DATABASE uns TO user;

\c uns            # switch to database 


Create table

CREATE TABLE IF NOT EXISTS process_value (
        timestamp TIMESTAMPTZ NOT NULL,
        topic TEXT NOT NULL,
        value DOUBLE PRECISION NULL
);
SELECT create_hypertable('process_value', '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

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

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"

Continuous aggregates

Links