change the database to testdb and connect it to the TimescaleDB with the following command
\c testdb
CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;
create Table
CREATE TABLE idrac(
time TIMESTAMP WITH TIME ZONE NOT NULL,
remote_addr TEXT,
value NUMERIC,
Metric_id TEXT,
rack_label TEXT,
context_id TEXT,
id TEXT
);