Pesquisar

Artigo
· Out. 28 3min de leitura

IRIS Home Assistant Add-On (HAOS)

InterSystems IRIS Community Edition HAOS Add-On

Run InterSystems IRIS inside of Home Assistant, as an add-on.  Before you dismiss this article possibly under the guise that this is just a gimmick, Id like you to step back and take a look at how easy it is to launch IRIS based applications using this platform.  If you look at Open Exchange, you will see dozens of dozens of applications worthy of launching while they are basically hung out to dry as gitware, and launchable if you want to get into a laptop battle with containerd or Docker.  With a simple git repo, and a specification, you can now build your app on IRIS, and make it launchable through a marketplace with limited hassle to your end users.  Run it along side Ollama and the LLM/LAM implementations, expose anything in IRIS as a sensor or expose an endpoint for interaction in your IRIS app to interact with anything you've connected to HAOS.  Wanna restart an IRIS production with a flick of a physical switch or Assisted AI? You can do it with this add-on, or your own, right alongside the home automation hackers.

Getting Started

We're Running HAOS, and we have checked the about box and confirmed our installation method to be "Home Assistant OS".

Installation

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

The repo for the iris-haos add-on is: 

https://github.com/sween/iris-haos

Navigate to the Add On Store and hit the three dots on the right upper corner and select "repositories"

Click add and close the dialog.

Restart the Supervisor

From the haos cli/shell, run:

ha addons reload

Back in the Add Ons store, you should IRIS listed and available.

Select the Add-On, Install and Start it.

You can post configure the port specifications or add new ones to your application, this one is just setup for the SMP.

The log should show an all too familiar output from messages.log from the container.

Next, select hit the "Open Web UI" Button, and we should be in business with IRIS running on HAOS!

This is made possible by the "network_mode": "host" directive in the add on, which will allow the ports to be exposed to the haos host.

Extra Credit

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 restart the core to enable the sensor.

ha core restart

HAOS sensors can be built with simple rest calls, so here we are scraping the iris prometheus metrics api running on the iris add on inside HAOS.

Now that its a sensor, you can add it to dashboard, do automation based on its values, expose it to Ambient AI, automate away!

So the detail is in the github repo, but Im here to tell you it isnt much, take a peak in the repo, clone it or check it out on Open Exchange, but with a pair of files, and a container, you can build your own add ons too.


Here is the config:

{
  "name": "InterSystems IRIS Health Community (HAOS)",
  "version": "0.1.1",
  "slug": "irishealth",
  "description": "Runs InterSystems IRIS Health Community as a Home Assistant add-on",
  "startup": "services",
  "boot": "auto",
  "arch": ["amd64", "aarch64"],
  "ports": { "1972/tcp": 1972, "52773/tcp": 52773 },
  "icon": "https://raw.githubusercontent.com/sween/iris-haos/main/irishealth/icon.png",
  "options": {
    "endpoint": "http://localhost:52773/csp/sys/UtilHome.csp"
  },
  "schema": {
    "endpoint": "str"
  },
  "webui": "http://[HOST]:[PORT:52773]/csp/sys/UtilHome.csp"
}

Here is the Dockerfile:

FROM containers.intersystems.com/intersystems/irishealth-community:2025.1

Cheers!

Discussão (0)2
Entre ou crie uma conta para continuar
Anúncio
· Out. 28

AI Meetup for Developers and Startups

Join our next in-person Developer Meetup in Boston to explore AI for Developers and Startups.

This event is hosted at CIC Venture Cafe.

Talk 1: Building Agentic conversational systems
Speaker: Suprateem Banerjee, Sales Engineer - AI Specialist, InterSystems

Talk 2: Let’s Talk about Agentic Benchmarks: the good, the bag, the ugly
Speaker: Jayesh Gupta, Solutions Developer, InterSystems

>> Register here
     <--break->

⏱ Day and Time: November 19, 5:30 p.m. to 7:30 p.m.
📍CIC Venture Café in Cambridge, MA

Save your seat now!

Food, beverages, and networking opportunities will be provided as always.
Join our Discord channel to connect with developers from the InterSystems developer ecosystem.

Discussão (0)1
Entre ou crie uma conta para continuar
Anúncio
· Out. 28

Conheça Henry Hamon Rodrigues Pereira - Novo Moderador da Comunidade de Desenvolvedores!

Olá Comunidade,

Dê as boas-vindas ao @Henry Pereira como nosso novo moderador na equipe da comunidade de desenvolvedores! 🎉

Como membro ativo, Henry tem compartilhado consistentemente insights valiosos, apoiado outros desenvolvedores e impulsionado discussões significativas em toda a Comunidade. Sua profunda experiência e espírito colaborativo o tornam a escolha perfeita para ajudar a orientar e expandir nossa Comunidade de Desenvolvedores.

Vamos cumprimentar Henry com uma salva de palmas e dar uma olhada em sua biografia!

@Henry Pereira é Líder Técnico e Especialista em Soluções Técnicas e Inovação na BPlus Tecnologia (Brasil)

Algumas palavras sobre ele:

  • Comecei minha carreira em TI no final de 1999, trabalhando no bug do milênio (sim, sou tão velho assim!). Pouco tempo depois, estagiei em uma empresa que usava a tecnologia Caché da InterSystems.
  • Passei quase uma década trabalhando com Ruby on Rails e, durante esse tempo, comecei a escrever meus primeiros artigos técnicos.
  • Desde 2016, voltei a trabalhar com produtos da InterSystems e sou um membro ativo da Comunidade de Desenvolvedores.
  • Nasci no início dos anos 80, sobrevivi ao bug do milênio, à profecia do calendário maia, à vitória da Alemanha por 7 a 1 sobre o Brasil — e ainda tenho muita energia para gastar.
  • Sou casado, pai de dois filhos (13 e 10), cristão e participo da equipe de Mosqueteiros nas competições comunitárias. Quando não estou programando no meu tempo livre, gosto de irritar os vizinhos tocando minha guitarra — bem alto.

BOAS-VINDAS!

Obrigada e parabéns, @Henry Pereira 👏

Estamos felizes em ter você em nossa equipe de moderadores!

2 Comments
Discussão (2)1
Entre ou crie uma conta para continuar
InterSystems Oficial
· Out. 28

Serviços em Nuvem InterSystems – Versão 25.22.1

Visão Geral 

Esta versão se concentra em aprimorar a confiabilidade, expandir a segurança e aprimorar a experiência de suporte em diversos Serviços em Nuvem da InterSystems. Com esta versão, todas as principais ofertas — incluindo FHIR Server, InterSystems Data Fabric Studio (IDS), IDS com Supply Chain e IRIS Managed Services — agora oferecem suporte ao Advanced Security, proporcionando uma postura de segurança unificada e aprimorada.

Novos Recursos e Melhoria

Categoria 

Recurso / Melhoria

Detalhes 

Atualizações de Plataforma 

Melhorias de Atualização do Servidor FHIR confiabilidade, validação e automação aprimoradas para atualizações do FHIR Server, reduzindo o tempo de inatividade e garantindo transições mais suaves.

 

Melhorias de Atualização no IDS 

Fluxos de trabalho de atualização aprimorados para o InterSystems Data Fabric Studio (IDS) para aumentar a consistência e reduzir interrupções operacionais.

 

Melhorias de Atualização no IDS com 

As atualizações do IDS com Supply Chain agora são mais rápidas e resilientes, com melhor tratamento de dependências e verificações de validação.

Segurança 

Expansão de Segurança Avançada

Segurança Avançada— que fornece gerenciamento aprimorado de firewall, controles de criptografia e proteção contra ameaças em tempo real — agora está disponível para:
• FHIR Server 
• IDS 
• IDS with Supply Chain 
• IRIS Managed Services 

Gerenciamento de Usuários 

Convites de Usuários Aprimorados Processo simplificado e mais confiável para convidar usuários para um locatário, melhorando a experiência de integração e reduzindo erros de convite.

Experiencia do Usuário 

Aprovação de Termos de Uso Mais Claros Mensagens e layout atualizados oferecem maior transparência quando os usuários revisam e aprovam os termos de uso do serviço.

Suporte 

SLA de Suporte Atualizado O Acordo de Nível de Serviço de Suporte foi atualizado para oferecer tempos de resposta significativamente mais curtos e atualizações mais frequentes sobre casos abertos, garantindo resolução mais rápida de problemas e melhor comunicação.

Ações Recomendadas 

  • Revise e familiarize sua equipe com as novas opções de Segurança Avançada disponíveis para seus serviços.
  • Verifique os fluxos de trabalho de convite do locatário para garantir que todos os usuários convidados recebam e aceitem seu acesso prontamente.
  • Consulte a documentação atualizada do SLA de suporte para obter detalhes sobre os novos cronogramas de resposta e atualização.

Suporte

Para obter assistência ou saber mais sobre essas atualizações, abra um caso de suporte pelo iService ou pelo Portal de Serviços em Nuvem da InterSystems.

©2025 InterSystems Corporation. All Rights Reserved.

Discussão (0)1
Entre ou crie uma conta para continuar
Pergunta
· Out. 28

WebTerminal not working with HealthConnect 2025.1

Hi,

 I have just installed WebTerminal on my local instance of Health Connect 2025.1, but it does not work and returns a HTTP 401 error.

Can any one help, as I have never installed WebTerminal before?

Has there been any changes in Health Connect to stop it working in version 2025.1?

Thanks.

 

Neil

7 novos comentários
Discussão (11)3
Entre ou crie uma conta para continuar