| 1 | [[PageOutline]] |
| 2 | |
| 3 | = LagMeter = |
| 4 | * [http://dev.bukkit.org/bukkit-plugins/lagmeter/ LagMeter - Bukkit] |
| 5 | |
| 6 | * /srv/craftbukkit/plugins/LagMeter/settings.yml |
| 7 | {{{ |
| 8 | Commands: |
| 9 | Lag: |
| 10 | displayEntities: true |
| 11 | displayChunks: true |
| 12 | log: |
| 13 | interval: 30 |
| 14 | logTotalEntitiesOnly: false |
| 15 | logTotalChunksOnly: false |
| 16 | }}} |
| 17 | * /srv/craftbukkit/plugins/LagMeter/lag.log |
| 18 | {{{ |
| 19 | [01-03-2016 15:50:01] TPS: 20.0 |
| 20 | Memory free: 698.37/989.88 (70.55%) |
| 21 | Players online: 0/20 |
| 22 | Chunks loaded in world "world": 256 |
| 23 | Chunks loaded in world "world_nether": 0 |
| 24 | Chunks loaded in world "world_the_end": 0 |
| 25 | Total chunks loaded: 256 |
| 26 | Entities in world "world": 70 |
| 27 | Entities in world "world_nether": 0 |
| 28 | Entities in world "world_the_end": 0 |
| 29 | Total entities: 70 |
| 30 | |
| 31 | [01-03-2016 15:51:01] TPS: 20.0 |
| 32 | Memory free: 798.28/989.88 (80.64%) |
| 33 | Players online: 0/20 |
| 34 | Chunks loaded in world "world": 256 |
| 35 | Chunks loaded in world "world_nether": 0 |
| 36 | Chunks loaded in world "world_the_end": 0 |
| 37 | Total chunks loaded: 256 |
| 38 | Entities in world "world": 70 |
| 39 | Entities in world "world_nether": 0 |
| 40 | Entities in world "world_the_end": 0 |
| 41 | Total entities: 70 |
| 42 | |
| 43 | (snip) |
| 44 | |
| 45 | [01-03-2016 16:11:01] TPS: 20.0 |
| 46 | Memory free: 770.26/989.88 (77.81%) |
| 47 | Players online: 1/20 |
| 48 | Chunks loaded in world "world": 441 |
| 49 | Chunks loaded in world "world_nether": 0 |
| 50 | Chunks loaded in world "world_the_end": 0 |
| 51 | Total chunks loaded: 441 |
| 52 | Entities in world "world": 148 |
| 53 | Entities in world "world_nether": 0 |
| 54 | Entities in world "world_the_end": 0 |
| 55 | Total entities: 148 |
| 56 | |
| 57 | (snip) |
| 58 | |
| 59 | [01-03-2016 16:36:15] TPS: 20.0 |
| 60 | Memory free: 740.14/989.88 (74.77%) |
| 61 | Players online: 1/20 |
| 62 | Chunks loaded in world "world": 272 |
| 63 | Chunks loaded in world "world_nether": 441 |
| 64 | Chunks loaded in world "world_the_end": 0 |
| 65 | Total chunks loaded: 713 |
| 66 | Entities in world "world": 74 |
| 67 | Entities in world "world_nether": 26 |
| 68 | Entities in world "world_the_end": 0 |
| 69 | Total entities: 100 |
| 70 | }}} |
| 71 | |
| 72 | * [http://sourceforge.net/projects/mcrcon/ mcrcon] |
| 73 | * [[Image(lagmeter.png,33%)]] |
| 74 | {{{ |
| 75 | [01-03-2016 16:42:35] TPS: 20.0 |
| 76 | Memory free: 751.50/989.88 (75.92%) |
| 77 | Players online: 1/20 |
| 78 | Chunks loaded in world "world": 272 |
| 79 | Chunks loaded in world "world_nether": 441 |
| 80 | Chunks loaded in world "world_the_end": 0 |
| 81 | Total chunks loaded: 713 |
| 82 | Entities in world "world": 75 |
| 83 | Entities in world "world_nether": 26 |
| 84 | Entities in world "world_the_end": 0 |
| 85 | Total entities: 101 |
| 86 | }}} |
| 87 | * RCONの方は手動で取得しているので、厳密に同時刻ではない |
| 88 | |
| 89 | * [http://dev.bukkit.org/bukkit-plugins/essentials/ Essentials] プラグインにも似たような機能は存在している |
| 90 | * http://wiki.mc-ess.net/wiki/Command_Reference |
| 91 | > gc |
| 92 | > lag, mem, memory, uptime, tps, entities Displays server usage information. /<command> |
| 93 | > {{{ |
| 94 | > Instructions: Displays chunk, memory, and world information. |
| 95 | > }}} |
| 96 | |
| 97 | = Statistics = |
| 98 | * [http://dev.bukkit.org/bukkit-plugins/statistics/ Statistics - Bukkit] |
| 99 | > === Requirements: === |
| 100 | > |
| 101 | > * PHP 5.3.2 or greater |
| 102 | > * GD2 library |
| 103 | > * cURL library |
| 104 | > * fsockopen |
| 105 | > * MySQL 5.5 or greater |
| 106 | > * InnoDB support |
| 107 | > * remote connections allowed |