Commit 2249783b authored by Marc Schiller's avatar Marc Schiller
Browse files

Show overload status as text.

parent dbebb1a9
......@@ -266,9 +266,14 @@ public class ModelFiveGVisualization extends JComponent
// Current Hosts in Segment
g2.drawString("H:" + entry.getHostsInSegment(), x + 10,
y + 55);
}
}
// Segment is overloaded
if (entry.isOverloaded()) {
g2.drawString("OVERLOAD", x + 20, y + 80);
}
// Host has been killed manually
if (!entry.isAvailable()) {
g2.drawString("!DEAD!", x + 30, y + 70);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment