This commit is contained in:
Christopher Cookman 2024-11-13 19:20:24 -07:00
parent f3bc5e2913
commit 45f7860231

View file

@ -28,7 +28,7 @@ kuma.status(process.env.STATUSPAGE).then((status) => {
for (let monitor of x.monitors) { for (let monitor of x.monitors) {
totalCount++; // Increment total services count totalCount++; // Increment total services count
// Check if the service is online // Check if the service is online
if (monitor.heartbeats.slice().status) { if (monitor.heartbeats.slice(-1)[0].status) {
onlineCount++; // Increment online services count onlineCount++; // Increment online services count
} else { } else {
offline.push(monitor.name) offline.push(monitor.name)
@ -52,7 +52,8 @@ kuma.status(process.env.STATUSPAGE).then((status) => {
} }
runCommand(process.env.TTS, statusString).then((output) => { runCommand(process.env.TTS, statusString).then((output) => {
runCommand(`ffmpeg -y -i /tmp/kuma-status.wav -ar 8000 -ac 1 -c:a pcm_s16le /tmp/kuma-status-final.wav`) console.log(output)
//runCommand(`ffmpeg -y -i /tmp/kuma-status.wav -ar 8000 -ac 1 -c:a pcm_s16le /tmp/kuma-status-final.wav`)
}).catch(err => { }).catch(err => {
console.log(err) console.log(err)
}) })