This commit is contained in:
@@ -11,7 +11,7 @@ namespace AyaNova.Models
|
||||
{
|
||||
[Required]
|
||||
[Key]
|
||||
public DateTime t { get; set; }
|
||||
public DateTimeOffset t { get; set; }
|
||||
public long Allocated { get; set; }
|
||||
public long WorkingSet { get; set; }
|
||||
public long PrivateBytes { get; set; }
|
||||
@@ -25,7 +25,7 @@ namespace AyaNova.Models
|
||||
|
||||
public MetricMM(long allocated, long workingSet, long privateBytes, int gen0, int gen1, int gen2, double cpu)
|
||||
{
|
||||
t = System.DateTime.UtcNow;
|
||||
t = System.DateTimeOffset.UtcNow;
|
||||
Allocated = allocated;
|
||||
WorkingSet = workingSet;
|
||||
PrivateBytes = privateBytes;
|
||||
|
||||
Reference in New Issue
Block a user