healthz
Health check endpoints.
HealthzHandler
dataclass
¶
Handler for health check endpoints.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
upstream_url
|
str
|
|
required |
Attributes:
Name | Type | Description |
---|---|---|
router |
APIRouter
|
|
Source code in src/stac_auth_proxy/handlers/healthz.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
|
__post_init__()
¶
Initialize the router.
Source code in src/stac_auth_proxy/handlers/healthz.py
16 17 18 19 20 |
|
healthz()
async
¶
Return health of this API.
Source code in src/stac_auth_proxy/handlers/healthz.py
22 23 24 |
|
healthz_upstream()
async
¶
Return health of upstream STAC API.
Source code in src/stac_auth_proxy/handlers/healthz.py
26 27 28 29 30 31 |
|