CPU Load Graph geht

This commit is contained in:
2025-08-11 21:23:04 +02:00
parent 09e53a2a9d
commit de9b8daadc
7 changed files with 147 additions and 239 deletions

View File

@@ -17,13 +17,10 @@
</div>
@section Scripts {
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="~/js/server_uptime.js"></script>
<script>
async function loadServerCards() {
try {
const response = await fetch('/Server/ServerCardsPartial');
const response = await fetch('/Server/ServerCardPartial');
if (response.ok) {
const html = await response.text();
document.getElementById('server-cards-container').innerHTML = html;