app-host is throwing errors and the orders-api service can't write its files — you're seeing No space left on device in its output. The box has been up for weeks; nobody touched the hardware.
Find which filesystem is full, prove what filled it, and say how you'd recover the space AND stop it from happening again.
app-host, Alpine, 1 vCPU, plenty of RAM free./ (root) and /data.orders-api logs to /var/log/orders-api.log.You've solved it when:
df that the root filesystem (/) is at 100%/data is fine — so it's the root fs,
not the data disk, and not a hardware fault.
cat /var/log/orders-api.logtruncate -s 0 /var/log/orders-api.log or
: > /var/log/orders-api.log) — NOT rm (the running process holds
the file open, so rm won't free the space until it reopens) — and the
durable fix: add logrotate (or copytruncate) and stop the unbounded
retry-logging loop.