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 public.tag(id serial primary key, name text unique, type text);
CREATE TABLE public.outage(id serial primary key, ticket text unique, summary text, details text, start timestamp, outage_end timestamp, duration interval);
CREATE TABLE public.system(id serial primary key, name text unique, status integer);
CREATE TABLE public.health_check(id serial primary key, name text unique, monitor_name text, status integer, priority integer, monitor_system integer);
CREATE TABLE public.monitoring_system(id serial primary key, fqdn text, system_type text);
CREATE TABLE public.dependency(id serial primary key, parentID integer, childID integer);