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
//cap the list at 20 which means we're keeping about 1 hour and 40 minutes of data
30
+
lastDirtyMemoryReads.RemoveAt(0);
29
31
}
30
32
31
-
if(lastDirtyMemoryReads.Count>3&&AnalyzeTrendUsingRegression(lastDirtyMemoryReads)==TrendDirection.Increasing)// Three means we'll be observing for 15 minutes before calculating the trend
33
+
if(lastDirtyMemoryReads.Count<3)
32
34
{
33
-
// log a warning and fail the check
35
+
Log.Debug("Not enough dirty memory data in the series to calculate a trend.");
36
+
}
37
+
38
+
// Three means we'll be observing for 15 minutes before calculating the trend
0 commit comments