Advertisement
Guest User

Untitled

a guest
Sep 30th, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. ##   Commands  ##
  21. #################
  22. Commands:
  23.    Lag:
  24.        #Should the commands which show the TPS meter also display entities in each world?
  25.        #Default: false
  26.        displayEntities: true
  27.        #Should the commands which show the TPS meter also display loaded chunks in each world?
  28.        displayChunks: false
  29. #################
  30. ##   Logging   ##
  31. #################
  32. log:
  33.    #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).
  34.    #Default: 150
  35.    interval: 150
  36.    #Should LagMeter log information to a file?
  37.    #Default: true
  38.    enable: true
  39.    #Should LagMeter use a folder called 'logs' and use 'Day-Month-Year-Lag.log' format for each day's logs?
  40.     #Default: false
  41.     useLogsFolder: false
  42.     #Should LagMeter log how many players are online as well?
  43.     #Default: true
  44.     logPlayersOnline: true
  45.     #Should LagMeter log how many entities are present on the server?
  46.     #Default: true
  47.     logEntities: true
  48.     #Should LagMeter only display total entities, and not those for each world?
  49.     #Default: true
  50.     logTotalEntitiesOnly: true
  51.     #Should LagMeter log how many chunks are currently loaded on the server?
  52.     #Default: true
  53.     logChunks: true
  54.     #Should LagMeter only display total chunks, and not those for each world?
  55.     #Default: true
  56.     logTotalChunksOnly: true
  57.     #Should the plugin have an empty line between each log tick to make the log file neater?
  58.     #Default: true
  59.     newBlockPerLog: true
  60.     #Should the plugin put each statistic (TPS, memory, players) on a separate line?
  61.     #Default: true
  62.     newLinePerStatistic: true
  63. #################
  64. # Notifications #
  65. #################
  66. Notifications:
  67.     Lag:
  68.         #Enables low TPS notifications.
  69.         #Default: true
  70.         Enabled: true
  71.         #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
  72.         #Default: 17
  73.         Threshold: 21
  74.         #How often LagMeter should check on the TPS, in minutes.
  75.         #Default: 5
  76.         CheckInterval: 1
  77.         #Specify a command to use when the plugin notices that the TPS is low. Must be usable from console.
  78.         #Default: /lag
  79.         ConsoleCommand: /lag;/nolagg clear
  80.     Memory:
  81.         #Enables/disables low memory free notifications.
  82.         #Default: true
  83.         Enabled: true
  84.         #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
  85.         #Default: 25
  86.         Threshold: 101
  87.         #How often LagMeter should check on the free memory, in minutes.
  88.         #Default: 10
  89.         CheckInterval: 1
  90.         #Specify a command to use when the plugin notices that the free memory is low. Must be usable from console.
  91.         #Default: /mem
  92.         ConsoleCommand: /lag;/nolagg clear
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement