Skip to content

Commit 0d5325f

Browse files
Properly invert custom check id and category
1 parent b1cb4cc commit 0d5325f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ServiceControl.Audit.Persistence.RavenDB/CustomChecks/CheckDirtyMemory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace ServiceControl.Audit.Persistence.RavenDB.CustomChecks;
77
using NServiceBus.CustomChecks;
88
using NServiceBus.Logging;
99

10-
class CheckDirtyMemory(MemoryInformationRetriever memoryInformationRetriever) : CustomCheck("ServiceControl.Audit database", "Dirty memory trends", TimeSpan.FromMinutes(5))
10+
class CheckDirtyMemory(MemoryInformationRetriever memoryInformationRetriever) : CustomCheck("RavenDB dirty memory trends", "ServiceControl.Audit Health", TimeSpan.FromMinutes(5))
1111
{
1212
readonly List<int> lastDirtyMemoryReads = [];
1313
public override async Task<CheckResult> PerformCheck(CancellationToken cancellationToken = default)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Dirty memory trends: ServiceControl.Audit database
21
ServiceControl.Audit Health: Audit Database Index Lag
32
ServiceControl.Audit Health: Audit Message Ingestion Process
3+
ServiceControl.Audit Health: RavenDB dirty memory trends
44
Storage space: ServiceControl.Audit database

0 commit comments

Comments
 (0)