https://github.com/benleb/ad-healthcheck
🏥 AppDaemon healthcheck app. Can be used as a docker-compose healthcheck.
https://github.com/benleb/ad-healthcheck
app appdaemon appdaemon-apps hacs healthcheck home-assistant python
Last synced: 2 months ago
JSON representation
🏥 AppDaemon healthcheck app. Can be used as a docker-compose healthcheck.
- Host: GitHub
- URL: https://github.com/benleb/ad-healthcheck
- Owner: benleb
- License: apache-2.0
- Created: 2019-07-31T15:41:42.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-11-01T16:19:53.000Z (over 4 years ago)
- Last Synced: 2025-01-16T16:26:38.291Z (4 months ago)
- Topics: app, appdaemon, appdaemon-apps, hacs, healthcheck, home-assistant, python
- Language: Python
- Homepage:
- Size: 26.4 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# healthcheck
[](https://github.com/custom-components/hacs)
*Simple [AppDaemon](https://github.com/home-assistant/appdaemon) healthcheck app. Can be used as a docker-compose healthcheck.*
## Installation
Use [HACS](https://github.com/custom-components/hacs) or [download](https://github.com/benleb/ad-healthcheck/releases) the `healthcheck` directory from inside the `apps` directory here to your local `apps` directory, then add the configuration to enable the `healthcheck` module.
## App configuration
```yaml
healthcheck:
module: healthcheck
class: Healthcheck
endpoint: healthcheck
```key | optional | type | default | description
-- | -- | -- | -- | --
`module` | False | string | | The module name of the app.
`class` | False | string | | The name of the Class.
`endpoint` | True | string | `healthcheck`| The endpoint URL which will be registered.## docker-compose configuration
```yaml
healthcheck:
test: ["CMD", "curl", "-X", "POST", "-H", "Content-Type: application/json", "-d", "{}", "https://:5050/api/appdaemon/"]
interval: 45s
timeout: 3s
retries: 5
```