This commit is contained in:
@@ -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
|
||||
|
||||
@@ -653,10 +653,10 @@ namespace AyaNova.Util
|
||||
public DirectoryInfo Path { get; set; }
|
||||
public long SizeWithChildren { get; set; }
|
||||
public long Size { get; set; }
|
||||
public int DirectoryCount { get; set; }
|
||||
public int DirectoryCountWithChildren { get; set; }
|
||||
public int FileCount { get; set; }
|
||||
public int FileCountWithChildren { get; set; }
|
||||
public long DirectoryCount { get; set; }
|
||||
public long DirectoryCountWithChildren { get; set; }
|
||||
public long FileCount { get; set; }
|
||||
public long FileCountWithChildren { get; set; }
|
||||
public List<FolderSizeInfo> Children { get; set; }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user