aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Statistics (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Formatting cleanup.Jeff Ames2008-03-185-130/+125
|
* Added copyright heaaders. Minor cleanup.Jeff Ames2008-03-043-3/+3
|
* Update svn properties.Jeff Ames2008-02-231-0/+0
|
* * Improve alignment of packet queue stats headignsJustin Clarke Casey2008-02-221-4/+6
| | | | | | | * Correct asset cache stats table heading * Correct spelling mistake in AssetCache (thanks ChrisD!)
* * Oops! Add missing interfaceJustin Clarke Casey2008-02-221-0/+44
|
* * Implement packet queue statisticsJustin Clarke Casey2008-02-221-7/+88
| | | | | | | | | * This will show the packets waiting in each queue for each client logged into a region server * These are displayed using 'show stats' on the region command line * This is in pursuit of a memory leak. * This will require a prebuild
* More exception checks and crash hintsTedd Hansen2008-02-181-2/+6
| | | | | If no scriptengine is specified then don't try to load any.
* Refactor only: serve stats objects directly through StatsManager singletonJustin Clarke Casey2008-02-042-5/+25
|
* * Add asset/texture cache statistics to region server consoleJustin Clarke Casey2008-01-312-0/+123
| | | | | | | | | | | | | | | * You can type 'stats' at the REGION# prompt to get this information in grid or standalone mode * Don't take these numbers as gospel yet, since for some reason textures displayed from inventory which require downloading from the server are being recorded as assets rather than textures * But I don't have any reason to believe they aren't broadly accurate. * I've put these in so I can tell whether the high memory usage on regions is down to the asset/texture cache * This will require a prebuild * DEV: Only adds needed to be implemented since, as far as I can tell, assets cached are currently never released. For my part, seeing large cache memory numbers will provoke me to think about doing something about this. * DEV: Now switched to using a singleton to get the stats reporters rather than threading the object through various layers * DEV: Will refactor the other server stats reporters to do this in one of the next commits
* * Add 'asset not found' statistics to grid asset server statsJustin Clarke Casey2008-01-301-8/+23
|
* * Insert 'assets served per hour' speed to asset server statsJustin Clarke Casey2008-01-301-6/+15
|
* * Add total logouts (and total logins) to server side user statsJustin Clarke Casey2008-01-281-4/+16
| | | | | | | * Passing the stats collector through object chains is not ideal - this will change when more stats come in * This change will need a prebuild
* * Move AssetStatsReporter to Framework.StatisticsJustin Clarke Casey2008-01-281-0/+82
| | | | | | | * The hooks are still plugged in too high at the asset server, but then next layer down is the database and this may be refactored soon. * This change will requires a prebuild
* Set svn properties.Jeff Ames2008-01-261-0/+0
|
* * Add very basic initial login stats to the user serverJustin Clarke Casey2008-01-251-0/+82
* Typing 'stats' on the command line will given total number of successful logins today and yesterday * A little bit more to come, probably * Refactoring will follow next