https://github.com/teamzerolabs/mirth_channel_exporter
https://hub.docker.com/r/dspkd/prom-mirthchannelexporter
Run it via docker-compose. Create a .env file for the environment variables in the same folder where your docker-compose.yaml is stored
MIRTH_ENDPOINT=https://yourmirthserver:port
MIRTH_USERNAME=your mirth user
MIRTH_PASSWORD=your password
version: "3"
services:
mirthexporter:
image: dspkd/prom-mirthchannelexporter:latest
container_name: mirth-channel-exporter
restart: always
ports:
- '9141:9141'
environment:
- MIRTH_ENDPOINT=${MIRTH_ENDPOINT}
- MIRTH_USERNAME=${MIRTH_USERNAME}
- MIRTH_PASSWORD=${MIRTH_PASSWORD}