Files
uno-q-audio-synth/system/prometheus-exporter.service
T
david 9aead397fd fix: remove After=synth-diagnostic from pipeline services
Root cause: synth-diagnostic uses systemctl start to start pipeline
services, but those services had After=synth-diagnostic — causing
deadlock (they waited for synth-diagnostic to exit, which was waiting
for them).

Fix: pipeline services no longer list synth-diagnostic in After=.
synth-diagnostic has Before= them for boot ordering, and starts them
directly via systemctl start in run-tests.sh.

Also fixed prometheus-exporter: had After=synth-diagnostic backwards
— should start before synth-diagnostic (synth-diagnostic has
After=prometheus-exporter).
2026-06-24 02:53:16 -07:00

16 lines
311 B
Desktop File

[Unit]
Description=Prometheus metrics exporter for synth pipeline
After=multi-user.target
[Service]
Type=simple
ExecStart=/home/arduino/uno-q-audio-synth/scripts/prometheus-exporter.py
User=root
Restart=on-failure
RestartSec=5
StandardOutput=journal
StandardError=journal
[Install]
WantedBy=multi-user.target