-- ---------------------------- -- Table structure for monitor_base -- ---------------------------- DROP TABLE IF EXISTS "monitor_base"; CREATE TABLE "monitor_base" ( "id" integer NOT NULL, "create_time" integer(20), "cpu" integer, "load_usage" integer, "cpu_load1" integer, "cpu_load5" integer, "cpu_load15" integer, "memory" integer, "ne_type" text(32), "ne_id" text(32), PRIMARY KEY ("id") ); -- ---------------------------- -- Records of monitor_base -- ----------------------------