Changed
- Prometheus exporter is now bound to 0.0.0.0 instead of localhost
PROMETHEUS_EXPORTER_HOST
andPROMETHEUS_EXPORTER_PORT
env vars were added to thedocker-compose.yml
file to allow you to set the host and port for the Prometheus exporter. They should be added to bothdawarich_app
anddawarich_sidekiq
services Example:
dawarich_app:
image: freikin/dawarich:latest
container_name: dawarich_app
environment:
...
PROMETHEUS_EXPORTER_ENABLED: "true"
+ PROMETHEUS_EXPORTER_HOST: 0.0.0.0
+ PROMETHEUS_EXPORTER_PORT: "9394"
dawarich_sidekiq:
image: freikin/dawarich:latest
container_name: dawarich_sidekiq
environment:
...
PROMETHEUS_EXPORTER_ENABLED: "true"
+ PROMETHEUS_EXPORTER_HOST: dawarich_app
+ PROMETHEUS_EXPORTER_PORT: "9394"
💙 This release is supported by James Manolios, chenrik and aldumil on Patreon 💙
What's Changed
Full Changelog: 0.16.6...0.16.7