You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE devices_id (
id serial primary key,
device_name character varying(30) DEFAULT NULL::character varying,
ip character varying(30) DEFAULT NULL::character varying,
mac_addr character varying(30) DEFAULT NULL::character varying,
location character varying(30),
active boolean,
sensor_id character varying(30),
client_id character varying(30),
details jsonb
);
CREATE TABLE measurements (
"timestamp" timestamp with time zone,
event character varying(30),
measurement jsonb,
device_id integer
);
Connect to server:
domain:8080 (ws, http)
domain:8181 (wss, https) (in future)
domain:1883 (mqtt)