Advertisement
Guest User

Untitled

a guest
Apr 16th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.89 KB | None | 0 0
  1. #################
  2. ## General ##
  3. #################
  4. #Whether or not to use the average for TPS. If set to false, the server will always return the value at the last poll.
  5. #Default: true
  6. useAverage: true
  7. #How many polls to keep in LagMeter's memory.
  8. #Default: 10
  9. averageLength: 10
  10. #How often, in server ticks, LagMeter should poll the server (where one second is 20 ticks).
  11. #Default: 40
  12. interval: 40
  13. #Display chunks loaded on plugin (re)load?
  14. #Default: true
  15. LoadedChunksOnLoad: true
  16. #Should LagMeter display all of the entities that exist at the time of plugin (re)load?
  17. #Default: true
  18. displayEntitiesOnLoad: true
  19. #########################
  20. # Uptime-based Commands #
  21. #########################
  22. #List of up-time commands.
  23. #Format: /command text{<>}amountOfTime
  24. #Proper time delimiters: w: weeks, d: days, h: hours, m: minutes, s: seconds
  25. #Can use any combination of these delimiters, for example, 1s35m2d, 1d, 3w1d, 2h1d, etc.
  26. UptimeCommands:
  27. commandList:
  28. #If the commands are set to repeat, they will be run, for example, if the uptime trigger is set to 4h, then it will run every 4h.
  29. repeatCommands: true
  30. #################
  31. ## Commands ##
  32. #################
  33. Commands:
  34. Lag:
  35. #How long should LagMeter wait to poll the server for its TPS? Setting this to 0 will result in erroneous TPS averaging until the first few values are pushed out of the stack, but will not break anything.
  36. #Default: 35
  37. PollingDelay: 35
  38. #Should the commands which show the TPS meter also display entities in each world?
  39. #Default: false
  40. displayEntities: false
  41. #Should the commands which show the TPS meter also display loaded chunks in each world?
  42. #Default: false
  43. displayChunks: false
  44. Ping:
  45. #Where the server should ping when the /ping and /lping commands are used. This can be a domain name or an IP; it doesn't matter which it is.
  46. #Default: google.com
  47. destinationDomain: google.com
  48. #################
  49. ## Logging ##
  50. #################
  51. log:
  52. #How often (after how many polls) the plugin should log information to its log file. If the poll interval is default (40), and this is left at default (150), it will happen every 40*150 ticks (6,000).
  53. #Default: 150
  54. interval: 150
  55. #Should LagMeter log information to a file?
  56. #Default: true
  57. enable: true
  58. #Should LagMeter use a folder called 'logs' and use 'Day-Month-Year-Lag.log' format for each day's logs?
  59. #Default: false
  60. useLogsFolder: true
  61. #Should LagMeter log how many players are online as well?
  62. #Default: true
  63. logPlayersOnline: true
  64. #Should LagMeter log how many entities are present on the server?
  65. #Default: true
  66. logEntities: true
  67. #Should LagMeter only display total entities, and not those for each world?
  68. #Default: true
  69. logTotalEntitiesOnly: false
  70. #Should LagMeter log how many chunks are currently loaded on the server?
  71. #Default: true
  72. logChunks: true
  73. #Should LagMeter only display total chunks, and not those for each world?
  74. #Default: true
  75. logTotalChunksOnly: false
  76. #Should the plugin have an empty line between each log tick to make the log file neater?
  77. #Default: true
  78. newBlockPerLog: true
  79. #Should the plugin put each statistic (TPS, memory, players) on a separate line?
  80. #Default: true
  81. newLinePerStatistic: true
  82. #################
  83. # Notifications #
  84. #################
  85. Notifications:
  86. Lag:
  87. #Enables low TPS notifications.
  88. #Default: true
  89. Enabled: true
  90. #If the server is at or below this value for memory free, it will notify OPs and anyone with the permission node lagmeter.notify.lag
  91. #Default: 17
  92. Threshold: 17
  93. #How often LagMeter should check on the TPS, in minutes.
  94. #Default: 5
  95. CheckInterval: 1
  96. #Specify a command to use when the plugin notices that the TPS is low. Must be usable from console.
  97. #Default: /lag
  98. ConsoleCommand: /lag
  99. Memory:
  100. #Enables/disables low memory free notifications.
  101. #Default: true
  102. Enabled: true
  103. #If the server is at or below this value for memory free, it will notify OPs and anyone with the permission node lagmeter.notify.mem
  104. #Default: 25
  105. Threshold: 25
  106. #How often LagMeter should check on the free memory, in minutes.
  107. #Default: 10
  108. CheckInterval: 1
  109. #Specify a command to use when the plugin notices that the free memory is low. Must be usable from console.
  110. #Default: /mem
  111. ConsoleCommand: /mem
  112. ###############
  113. # LagMaps #
  114. ###############
  115. LagMaps:
  116. #Whether or not LagMaps should be able to be enabled by players with the lagmeter.command.lagmap permission.
  117. #Default: true
  118. Enabled: true
  119. #The interval, in seconds, that the plugin should update the LagMaps.
  120. #Default: 5
  121. Interval: 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement