Mineplex2018-withcommit/Plugins/Mineplex.ServerMonitor/src/mineplex/servermonitor/ServerMonitor.java

108 lines
2.6 KiB
Java
Raw Normal View History

2013-10-10 18:02:21 +02:00
package mineplex.servermonitor;
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class ServerMonitor
{
private static Repository _repository = new Repository();
2013-10-15 23:19:14 +02:00
private static int _count = 0;
2013-10-10 18:02:21 +02:00
public static void main (String args[])
{
_repository.initialize();
while (true)
{
2013-10-15 23:19:14 +02:00
if (_count % 20 == 0)
2013-10-10 18:02:21 +02:00
{
2013-10-15 23:19:14 +02:00
for (ServerStatusData statusData : _repository.retrieveOldServerStatuses())
{
String key = statusData.Address + " " + statusData.Name;
String cmd = "/home/mineplex/restartServer.sh";
Process process = null;
try
{
process = new ProcessBuilder(new String[] {"/bin/sh", "-x", cmd, statusData.Address, statusData.Name}).start();
process.waitFor();
BufferedReader reader=new BufferedReader(new InputStreamReader(process.getInputStream()));
String line = reader.readLine();
while(line != null)
{
System.out.println(line);
line=reader.readLine();
}
}
catch (Exception e)
{
e.printStackTrace();
}
finally
{
if (process != null)
{
process.destroy();
}
}
System.out.println("Sent restart command to " + key + "");
}
}
if (_count % 10 == 0)
{
HashMap<String, GroupStatusData>
for (ServerStatusData statusData : _repository.retrieveGroupStatusData())
{
String key = statusData.Address + " " + statusData.Name;
String cmd = "/home/mineplex/restartServer.sh";
Process process = null;
try
{
process = new ProcessBuilder(new String[] {"/bin/sh", "-x", cmd, statusData.Address, statusData.Name}).start();
process.waitFor();
BufferedReader reader=new BufferedReader(new InputStreamReader(process.getInputStream()));
String line = reader.readLine();
while(line != null)
{
System.out.println(line);
line=reader.readLine();
}
}
catch (Exception e)
{
e.printStackTrace();
}
finally
{
if (process != null)
{
process.destroy();
}
}
System.out.println("Sent restart command to " + key + "");
}
2013-10-10 18:02:21 +02:00
}
try
{
2013-10-15 23:19:14 +02:00
Thread.sleep(1000);
2013-10-10 18:02:21 +02:00
}
catch (InterruptedException e)
{
e.printStackTrace();
}
2013-10-15 23:19:14 +02:00
_count++;
_count %= 20;
2013-10-10 18:02:21 +02:00
}
}
}