mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 04:20:41 +00:00
Log a few extra metrics.
This commit is contained in:
parent
97204c0e8c
commit
28ad7b96d2
1 changed files with 16 additions and 0 deletions
|
@ -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 a new issue