We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a246ea commit 99cb666Copy full SHA for 99cb666
src/ServiceControl.Audit.Persistence.RavenDB/CustomChecks/CheckDirtyMemory.cs
@@ -35,6 +35,7 @@ public override async Task<CheckResult> PerformCheck(CancellationToken cancellat
35
Log.Debug("Not enough dirty memory data in the series to calculate a trend.");
36
}
37
38
+ // TODO do we need a threshold below which the check never fails?
39
// Three means we'll be observing for 15 minutes before calculating the trend
40
if (lastDirtyMemoryReads.Count >= 3 && AnalyzeTrendUsingRegression(lastDirtyMemoryReads) == TrendDirection.Increasing)
41
{
0 commit comments