SteamWar/BauSystem
Archiviert
13
0
Dieses Repository wurde am 2024-08-04 archiviert. Du kannst Dateien ansehen und es klonen, aber nicht pushen oder Issues/Pull-Requests öffnen.
BauSystem/BauSystem_Main/src/de/steamwar/bausystem/RamUsage.java

47 Zeilen
1.7 KiB
Java

2021-04-02 19:05:02 +02:00
/*
* This file is a part of the SteamWar software.
*
* Copyright (C) 2020 SteamWar.de-Serverteam
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.steamwar.bausystem;
import org.bukkit.Bukkit;
2021-04-02 19:05:02 +02:00
import java.lang.management.ManagementFactory;
import java.util.logging.Level;
2021-04-02 19:05:02 +02:00
public class RamUsage {
2021-04-02 20:13:57 +02:00
private RamUsage() {
2021-04-02 20:14:03 +02:00
throw new IllegalStateException("Utility Class");
2021-04-02 20:13:57 +02:00
}
2021-04-02 19:05:02 +02:00
public static double getUsage() {
try {
long memorySize = ((com.sun.management.OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean()).getTotalPhysicalMemorySize();
long freeMemory = ((com.sun.management.OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean()).getFreePhysicalMemorySize();
System.out.println((memorySize - freeMemory) / (double) memorySize);
2021-04-02 19:05:02 +02:00
return (memorySize - freeMemory) / (double) memorySize;
} catch (Throwable throwable) {
throwable.printStackTrace();
Bukkit.getLogger().log(Level.WARNING, throwable.getMessage(), throwable);
2021-04-02 19:05:02 +02:00
return 1D;
}
}
}