somratpro commited on
Commit
f20876b
·
1 Parent(s): b46eebe

Fix: include keepalive status in root dashboard

Browse files
Files changed (1) hide show
  1. health-server.js +1 -0
health-server.js CHANGED
@@ -1530,6 +1530,7 @@ const server = http.createServer((req, res) => {
1530
  const postiz = await checkPostizHealth();
1531
  const initialData = {
1532
  postizRunning: postiz.status === "running",
 
1533
  sync: readSyncStatus(),
1534
  };
1535
  res.writeHead(200, { "Content-Type": "text/html; charset=utf-8" });
 
1530
  const postiz = await checkPostizHealth();
1531
  const initialData = {
1532
  postizRunning: postiz.status === "running",
1533
+ keepalive: getKeepaliveStatus(),
1534
  sync: readSyncStatus(),
1535
  };
1536
  res.writeHead(200, { "Content-Type": "text/html; charset=utf-8" });