mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-27 19:47:42 +01:00
Log a few extra metrics.
This commit is contained in:
parent
97204c0e8c
commit
28ad7b96d2
@ -134,6 +134,14 @@ public class MetricsStarter implements Runnable
|
|||||||
{
|
{
|
||||||
enabledGraph.addPlotter(new SimplePlotter("Warps"));
|
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())
|
if (!ess.getSettings().areSignsDisabled())
|
||||||
{
|
{
|
||||||
enabledGraph.addPlotter(new SimplePlotter("Signs"));
|
enabledGraph.addPlotter(new SimplePlotter("Signs"));
|
||||||
@ -142,6 +150,14 @@ public class MetricsStarter implements Runnable
|
|||||||
{
|
{
|
||||||
enabledGraph.addPlotter(new SimplePlotter("AutoAFK"));
|
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())
|
if (ess.getSettings().changeDisplayName())
|
||||||
{
|
{
|
||||||
enabledGraph.addPlotter(new SimplePlotter("DisplayName"));
|
enabledGraph.addPlotter(new SimplePlotter("DisplayName"));
|
||||||
|
Loading…
Reference in New Issue
Block a user