InterSystems IRIS Add On(s) for Home Assistant.
- Instantly provision your IRIS Application to be launched from HAOS!
- Simple and Powerful
We're Running HAOS, and we have checked the about box and confirmed our installation method to be "Home Assistant OS".
For Home Assistant OS, follow these steps:
- Add the repository to the Add On Store.
- Restart the Supervisor.
- Search for "InterSystems IRIS Community Add-ons" and install and start it.
- Launch the System Management Portal.
Add Repository
Search for it in the store
Install and Start
Launch
Scrape a metric from IRIS and display it in HAOS.
Add the following to your configuration.yaml:
sensor:
- platform: rest
name: iris_log_reads_per_sec
resource: http://127.0.0.1:52773/api/monitor/metrics
value_template: >
{% set lines = value.split('\n') %}
{% for line in lines %}
{% if line.startswith('iris_log_reads_per_sec ') %}
{{ line.split()[-1] }}
{% endif %}
{% endfor %}for some reason, I had to:
ha core restart
Add new sensor to your dashboard:
Ron Sweeney, Integration Required https://www.integrationrequired.com https://github.com/sween
I would really like to see some of the apps built for https://openexchange.intersystems.com included here, hit me up and lets see if we can add them.






