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
|
|
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for Python