Difference between revisions of "Live Stats"

Line 8: Line 8:
 
* CPU (%)
 
* CPU (%)
 
* Memory (bytes)
 
* Memory (bytes)
 +
* Memory Limit (bytes) ''*Memory assigned to Minecraft and Craftbukkit services.''
 
* Game
 
* Game
 
* Game type
 
* Game type

Revision as of 19:26, 17 July 2012

Every time the game monitors queries a service the stats are saved to the table named tc_game_service_live_stats. You can use this table to create a list of services on your website with their current status.

Information currently available in the table:

  • Service Id
  • Online (1/0)
  • Process ID
  • Bandwidth (bytes)
  • CPU (%)
  • Memory (bytes)
  • Memory Limit (bytes) *Memory assigned to Minecraft and Craftbukkit services.
  • Game
  • Game type
  • Map
  • Name
  • Html name
  • Max players
  • Number of current players
  • Number of current spectators
  • Player details in XML format
  • Rules in XML format
  • Query time (UTC/GMT)

For example you can get a list of services that are currently running with this query:

SELECT a.ip_address, a.game_port, b.* FROM tc_game_services a, tc_game_service_live_stats b WHERE online = 1 AND a.service_id = b.service_id;
Retrieved from "https://help.tcadmin.com/index.php?title=Live_Stats&oldid=774"