This takes the numeric sound level from the `rec|awk`combination and passes it as the `-o` argument of`zabbix_sender`.
This takes the numeric sound level from `rec | awk` and passes it as an argument to `zabbix_sender`.
Now, we just need to put this in a loop...
Now just put that in a loop...
```bash
while true;do
...
...
@@ -89,8 +92,42 @@ while true; do
done
```
...and we have a working pipeline.
# Ta-da!

Pausing the iPod produced that valley in the middle. Based on this test, I set a **Trigger** for `soundlevel` falling below `0.5` for 60 seconds or longer.
# Extra credit
The Raspberry Pi might lose power and restart. We can address that with a `systemd` service running the `zabbix_sender` loop.
### `/etc/systemd/system/zs.service`
```ini
[Unit]
Description=ZabbixSoundMonitor
Wants=network-online.target
After=network.target network-online.target
[Service]
Environment="AUDIODEV=hw:1,0"
Environment="AUDIODRIVER=alsa"
ExecStart=/usr/local/bin/zs.sh
Restart=always
RestartSec=5
[Install]
WantedBy=multi-user.target
```
This takes care of a few things:
1. Waits until a network is available.
2. Sets the `AUDIODEV` and `AUDIODRIVER` environment variables required by `rec`.
3. Runs the script at `/usr/local/bin/zs.sh` (which contains the loop we wrote).
Enable the new service with `systemctl enable zs.service`, and start it with `service zs start`. It will automatically start on reboot.