mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-31 15:26:49 +00:00

* Sets front matter defaults * Removes default front matter from section templates/pages * Removes default front matter from addon pages * Removes default front matter from integration pages * Removes default front matter from posts * Removes default front matter from docs pages * Removes default front matter from other pages * Fixes blog category pages
1.1 KiB
1.1 KiB
title, description, logo, ha_category, ha_release, ha_iot_class, redirect_from
title | description | logo | ha_category | ha_release | ha_iot_class | redirect_from | ||
---|---|---|---|---|---|---|---|---|
Supervisord | Instructions on how to integrate Supervisord within Home Assistant. | supervisord.png |
|
0.20 | Local Polling |
|
The supervisord
platform allows you to track the states of Supervisord.
It required that you enable the HTTP feature in the /etc/supervisord.conf
configuration file.
[inet_http_server]
port=127.0.0.1:9001
After a restart of supervisord
you should be able to access the web interface. If needed then this could be added as an iFrame panel.
To use this sensor in your installation, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
sensor:
- platform: supervisord
{% configuration %}
url:
description: The URL to track.
required: false
default: "http://localhost:9001/RPC2
"
type: string
{% endconfiguration %}