Derive status from allocated < options.Threshold (#15476)
parent
394d2dbacc
commit
8e32c47786
|
@ -39,9 +39,11 @@ namespace SampleApp
|
||||||
{ "Gen1Collections", GC.CollectionCount(1) },
|
{ "Gen1Collections", GC.CollectionCount(1) },
|
||||||
{ "Gen2Collections", GC.CollectionCount(2) },
|
{ "Gen2Collections", GC.CollectionCount(2) },
|
||||||
};
|
};
|
||||||
|
var status = (allocated < options.Threshold) ?
|
||||||
|
HealthStatus.Healthy : context.Registration.FailureStatus;
|
||||||
|
|
||||||
return Task.FromResult(new HealthCheckResult(
|
return Task.FromResult(new HealthCheckResult(
|
||||||
context.Registration.FailureStatus,
|
status,
|
||||||
description: "Reports degraded status if allocated bytes " +
|
description: "Reports degraded status if allocated bytes " +
|
||||||
$">= {options.Threshold} bytes.",
|
$">= {options.Threshold} bytes.",
|
||||||
exception: null,
|
exception: null,
|
||||||
|
|
Loading…
Reference in New Issue