This commit is contained in:
2020-05-28 23:21:20 +00:00
parent 5b908de7ee
commit 0a434b732f
5 changed files with 26 additions and 21 deletions

View File

@@ -249,6 +249,10 @@ namespace AyaNova.Util
//METRICS TABLES
//One minute metrics
await ExecQueryAsync("CREATE TABLE ametricmm (t timestamp not null, allocated bigint,workingset bigint,privatebytes bigint,gen0 integer,gen1 integer,gen2 integer,cpu double precision)");
//One hour metrics
await ExecQueryAsync("CREATE TABLE ametrichh (t timestamp not null, allocated bigint,)");
//One day metrics
await ExecQueryAsync("CREATE TABLE ametricdd (t timestamp not null, allocated bigint,workingset bigint,privatebytes bigint,gen0 integer,gen1 integer,gen2 integer,cpu double precision)");
//SEARCH TABLES