Postgres/TimescaleDB: Difference between revisions
Appearance
< Postgres
mNo edit summary |
mNo edit summary |
||
| Line 24: | Line 24: | ||
[[Category:Linux/Services]] | [[Category:Linux/Services]] | ||
[[Category:Linux]] | [[Category:Linux]] | ||
[[Category:Programming]] | |||
Revision as of 15:15, 28 September 2024
Setup
CREATE TABLE sensor_data (
time TIMESTAMPTZ NOT NULL,
topic TEXT,
value DOUBLE PRECISION
);
SELECT create_hypertable('sensor_data', 'time');
Insert data via Node-RED
INSERT INTO sensor_data (time, topic, value)
VALUES (
now(),
'{{{ msg.topic }}}',
'{{{ msg.payload }}}'
);