Advertisement
Guest User

Untitled

a guest
Jan 8th, 2017
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.91 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. - /lag<9m>
  29. #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.
  30. repeatCommands: true
  31. #################
  32. ## Commands ##
  33. #################
  34. Commands:
  35. Lag:
  36. #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.
  37. #Default: 35
  38. PollingDelay: 35
  39. #Should the commands which show the TPS meter also display entities in each world?
  40. #Default: false
  41. displayEntities: true
  42. #Should the commands which show the TPS meter also display loaded chunks in each world?
  43. #Default: false
  44. displayChunks: true
  45. Ping:
  46. #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.
  47. #Default: google.com
  48. destinationDomain: google.com
  49. #################
  50. ## Logging ##
  51. #################
  52. log:
  53. #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).
  54. #Default: 150
  55. interval: 150
  56. #Should LagMeter log information to a file?
  57. #Default: true
  58. enable: false
  59. #Should LagMeter use a folder called 'logs' and use 'Day-Month-Year-Lag.log' format for each day's logs?
  60. #Default: false
  61. useLogsFolder: false
  62. #Should LagMeter log how many players are online as well?
  63. #Default: true
  64. logPlayersOnline: true
  65. #Should LagMeter log how many entities are present on the server?
  66. #Default: true
  67. logEntities: true
  68. #Should LagMeter only display total entities, and not those for each world?
  69. #Default: true
  70. logTotalEntitiesOnly: true
  71. #Should LagMeter log how many chunks are currently loaded on the server?
  72. #Default: true
  73. logChunks: true
  74. #Should LagMeter only display total chunks, and not those for each world?
  75. #Default: true
  76. logTotalChunksOnly: true
  77. #Should the plugin have an empty line between each log tick to make the log file neater?
  78. #Default: true
  79. newBlockPerLog: true
  80. #Should the plugin put each statistic (TPS, memory, players) on a separate line?
  81. #Default: true
  82. newLinePerStatistic: true
  83. #################
  84. # Notifications #
  85. #################
  86. Notifications:
  87. Lag:
  88. #Enables low TPS notifications.
  89. #Default: true
  90. Enabled: true
  91. #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
  92. #Default: 17
  93. Threshold: 17
  94. #How often LagMeter should check on the TPS, in minutes.
  95. #Default: 5
  96. CheckInterval: 1
  97. #Specify a command to use when the plugin notices that the TPS is low. Must be usable from console.
  98. #Default: /lag
  99. ConsoleCommand: /lag
  100. Memory:
  101. #Enables/disables low memory free notifications.
  102. #Default: true
  103. Enabled: true
  104. #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
  105. #Default: 25
  106. Threshold: 25
  107. #How often LagMeter should check on the free memory, in minutes.
  108. #Default: 10
  109. CheckInterval: 1
  110. #Specify a command to use when the plugin notices that the free memory is low. Must be usable from console.
  111. #Default: /mem
  112. ConsoleCommand: /mem
  113. ###############
  114. # LagMaps #
  115. ###############
  116. LagMaps:
  117. #Whether or not LagMaps should be able to be enabled by players with the lagmeter.command.lagmap permission.
  118. #Default: true
  119. Enabled: false
  120. #The interval, in seconds, that the plugin should update the LagMaps.
  121. #Default: 5
  122. Interval: 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement