ProbeSettings Class
Settings on how to probe an endpoint.
- Inheritance
-
azure.ai.ml.entities._mixins.RestTranslatableMixinProbeSettings
Constructor
ProbeSettings(*, failure_threshold: int | None = None, success_threshold: int | None = None, timeout: int | None = None, period: int | None = None, initial_delay: int | None = None)
Parameters
Name | Description |
---|---|
failure_threshold
Required
|
Threshold for probe failures, defaults to 30 |
success_threshold
Required
|
Threshold for probe success, defaults to 1 |
timeout
Required
|
timeout in seconds, defaults to 2 |
period
Required
|
How often (in seconds) to perform the probe, defaults to 10 |
initial_delay
Required
|
How long (in seconds) to wait for the first probe, defaults to 10 |
Keyword-Only Parameters
Name | Description |
---|---|
failure_threshold
Required
|
|
success_threshold
Required
|
|
timeout
Required
|
|
period
Required
|
|
initial_delay
Required
|
|
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for Python