This commit is contained in:
2026-03-03 13:37:32 -06:00
parent a478f708a2
commit c21f8089d4
4 changed files with 14 additions and 7 deletions

View File

@@ -248,7 +248,7 @@ class ServiceMonitor:
if not cur.fetchone()[0]:
return None
return round((online_count / total_count) * 100, 2)
return round((online_count / total_count) * 100, 3)
finally:
conn.close()