Jump to content

Linux/TimescaleDB: Difference between revisions

From Wiki
Marcluer (talk | contribs)
mNo edit summary
Marcluer (talk | contribs)
mNo edit summary
Line 1: Line 1:
* [[Linux/Postgres|Postgres]]
* [[Linux/Postgres|Postgres]]


= Setup Timescale =
= Setup Timescale for Unified Namespace data logging =
* connect  
* connect  
<blockquote>
<blockquote>
Line 28: Line 28:
</blockquote>
</blockquote>


 
== Simple ==
* Create table
* Create table
<blockquote>
<blockquote>
<pre>
<pre>
CREATE TABLE IF NOT EXISTS process_value (
CREATE TABLE IF NOT EXISTS process_value_numeric (
         timestamp TIMESTAMPTZ NOT NULL,
         timestamp TIMESTAMPTZ NOT NULL,
         topic TEXT NOT NULL,
         topic TEXT NOT NULL,
Line 43: Line 43:
<blockquote>
<blockquote>
<pre>
<pre>
SELECT create_hypertable('process_value', 'timestamp');
SELECT create_hypertable('process_value_numeric', 'timestamp');
</pre>
</pre>
</blockquote>
</blockquote>
Line 57: Line 57:
<blockquote>
<blockquote>
<pre>
<pre>
  \d process_value
  \d process_value_numeric
</pre>
</pre>
</blockquote>
</blockquote>

Revision as of 11:49, 5 January 2025

Setup Timescale for Unified Namespace data logging

  • connect
psql -d "postgres://user:password@localhost/postgres"
  • check
\dx                               # list extensions
\dt                               # list all tables
  • Create database
# DROP DATABASE unifiednamespace;
CREATE DATABASE unifiednamespace OWNER user;
GRANT ALL PRIVILEGES ON DATABASE unifiednamespace TO user;

\c unifiednamespace               # switch to database 

Simple

  • Create table
CREATE TABLE IF NOT EXISTS process_value_numeric (
        timestamp TIMESTAMPTZ NOT NULL,
        topic TEXT NOT NULL,
        value DOUBLE PRECISION NULL
);
  • Create hypertable
SELECT create_hypertable('process_value_numeric', 'timestamp');
  • Add index
CREATE INDEX ON process_value (topic, timestamp DESC);
  • View table information
 \d process_value_numeric

Insert data

  • via Node-RED
INSERT INTO process_value (timestamp, topic, value) VALUES (
    now(),
    '{{{ msg.topic }}}',
    '{{{ msg.payload }}}'
);


Get table size

SELECT hypertable_size('process_value');

Query

Grafana timefilter macro

  • limits query to timeframe selected in grafana
SELECT * 
FROM process_value
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