summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2012-12-16 21:02:02 +0000
committerKHobbits <rob@khobbits.co.uk>2012-12-16 21:02:02 +0000
commit28ad7b96d250bc2c48bce2ca54da0d2b8360c0cf (patch)
tree3fc7f0c16fd2e711fee200f88bcfe77f22dcc88d
parent97204c0e8c695a526696790f8763bca76c520b6b (diff)
downloadEssentials-28ad7b96d250bc2c48bce2ca54da0d2b8360c0cf.tar
Essentials-28ad7b96d250bc2c48bce2ca54da0d2b8360c0cf.tar.gz
Essentials-28ad7b96d250bc2c48bce2ca54da0d2b8360c0cf.tar.lz
Essentials-28ad7b96d250bc2c48bce2ca54da0d2b8360c0cf.tar.xz
Essentials-28ad7b96d250bc2c48bce2ca54da0d2b8360c0cf.zip
Log a few extra metrics.
-rw-r--r--Essentials/src/com/earth2me/essentials/metrics/MetricsStarter.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/Essentials/src/com/earth2me/essentials/metrics/MetricsStarter.java b/Essentials/src/com/earth2me/essentials/metrics/MetricsStarter.java
index b0592855d..3e9ee9e49 100644
--- a/Essentials/src/com/earth2me/essentials/metrics/MetricsStarter.java
+++ b/Essentials/src/com/earth2me/essentials/metrics/MetricsStarter.java
@@ -134,6 +134,14 @@ public class MetricsStarter implements Runnable
{
enabledGraph.addPlotter(new SimplePlotter("Warps"));
}
+ if (ess.getSettings().getTeleportCooldown() > 0)
+ {
+ enabledGraph.addPlotter(new SimplePlotter("TeleportCooldown"));
+ }
+ if (ess.getSettings().getTeleportDelay() > 0)
+ {
+ enabledGraph.addPlotter(new SimplePlotter("TeleportDelay"));
+ }
if (!ess.getSettings().areSignsDisabled())
{
enabledGraph.addPlotter(new SimplePlotter("Signs"));
@@ -142,6 +150,14 @@ public class MetricsStarter implements Runnable
{
enabledGraph.addPlotter(new SimplePlotter("AutoAFK"));
}
+ if (ess.getSettings().changePlayerListName())
+ {
+ enabledGraph.addPlotter(new SimplePlotter("PlayerListName"));
+ }
+ if (ess.getSettings().getOperatorColor() != null)
+ {
+ enabledGraph.addPlotter(new SimplePlotter("OpColour"));
+ }
if (ess.getSettings().changeDisplayName())
{
enabledGraph.addPlotter(new SimplePlotter("DisplayName"));