ProbeAnnotation
Class abstract net10.0
Represents an annotation that specifies the probes (health, readiness, liveness, etc.) of a resource.
namespace Aspire.Hosting.ApplicationModel;
public abstract class ProbeAnnotation : Aspire.Hosting.ApplicationModel.IResourceAnnotation{ // ...} 6 members
Properties6
Section titled PropertiesFailureThresholdget; initint Number of failures in a row before considers that the overall check has failed.
InitialDelaySecondsget; initint The initial delay before the probe should be called.
PeriodSecondsget; initint The period between each probe call.
SuccessThresholdget; initint Minimum consecutive successes for the probe to be considered successful after having failed.
TimeoutSecondsget; setint Number of seconds after which the probe times out.
Typeget; init The type of this health probe (startup, readiness or liveness).