aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Statistics (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-07-15* Expose client statistics to the console via 'show stats'Justin Clarke Casey1-1/+91
* Potentially useful for diagnostics without needing to log in a client * Packet queue statistics commented out for now pending a better way to cope with the information overload
2008-06-27dr scofield's warning safari:Dr Scofield2-2/+2
* commented out [Obsolete(....)] attributes where no replacement feature was available: if we want to attribute code that we think needs to be reworked, we should define a new attribute and use that instead (together with a little tool to retrieve all the attributed code then) * commenting out unused variables
2008-06-14* minor: A few miscellaneous doc comments before I break and start on ↵Justin Clarke Casey1-0/+2
something else
2008-06-14* Start recording asset request failuresJustin Clarke Casey1-12/+21
* This includes problems such as connection failures and timeouts. It does not include 'asset not found' replies from the asset service.
2008-06-10* minor: Report cache figures in rounded up KB instead of with decimal ↵Justin Clarke Casey1-4/+4
places in show stats * trade easier readability for pointless accuracy
2008-06-10* minor: Properly clear the pushed asset cache statistics where the ↵Justin Clarke Casey2-1/+17
clear-assets command is used on the region console * stop waiting for garbage collection when GC total memory used is requested, in case the periodic request of this lags the sim
2008-06-10* If a server has statistics, print these out to the log every hour to get ↵Justin Clarke Casey1-1/+1
some idea of how these evolve * When returning GC.GetTotalMemory(), force collection first in order to get more accurate figures
2008-06-10Update svn properties.Jeff Ames1-51/+51
2008-06-10* Add memory currently allocated to OpenSim to 'show stats' statisticsJustin Clarke Casey4-6/+59
* This is the GC.GetTotalMemory() method, which I'm guessing does not include memory used by the VM (hence the memory usage reported in top on linux would be much higher)
2008-06-10Update svn properties. Formatting cleanup.Jeff Ames1-1/+1
2008-06-04* Start recording abnormal client thread terminationsJustin Clarke Casey1-1/+21
2008-05-16Formatting cleanup.Jeff Ames5-73/+73
2008-05-14* Start recording as a statistic the number of times we start blocking ↵Justin Clarke Casey1-6/+29
repetitive client requests for the same missing texture * This is to maintain some visibility on the problem, since I removed the intentionally irritating log messages for this
2008-05-14* Start recording initial complete avatar inventory retrieval failures from ↵Justin Clarke Casey1-1/+23
the region server * In theory, this should be a somewhat useless statistic since the user server will already have tried to use the inventory service to retrieve the avatar's skeleton. If this fails, login is halted completely. * Nonetheless I'm recording it anyway just to see whether it happens (yes, I'm too lazy to scan the logs...)
2008-05-14* Refactor additional stats collection common code into base opensim serverJustin Clarke Casey5-7/+54
* If extra stats not sent to the viewer are available on an opensim server, they are now uniformly accessible using the 'show stats' command
2008-05-14* Refactor: Renaming non viewer statistics classes from Reporters to ↵Justin Clarke Casey5-27/+30
Collectors - this seems more intuitive
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby4-8/+1
(this took a while to run).
2008-03-18Formatting cleanup.Jeff Ames5-130/+125
2008-03-04Added copyright heaaders. Minor cleanup.Jeff Ames3-3/+3
2008-02-23Update svn properties.Jeff Ames1-0/+0
2008-02-22* Improve alignment of packet queue stats headignsJustin Clarke Casey1-4/+6
* Correct asset cache stats table heading * Correct spelling mistake in AssetCache (thanks ChrisD!)
2008-02-22* Oops! Add missing interfaceJustin Clarke Casey1-0/+44
2008-02-22* Implement packet queue statisticsJustin Clarke Casey1-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
2008-02-18More exception checks and crash hintsTedd Hansen1-2/+6
If no scriptengine is specified then don't try to load any.
2008-02-04Refactor only: serve stats objects directly through StatsManager singletonJustin Clarke Casey2-5/+25
2008-01-31* Add asset/texture cache statistics to region server consoleJustin Clarke Casey2-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
2008-01-30* Add 'asset not found' statistics to grid asset server statsJustin Clarke Casey1-8/+23
2008-01-30* Insert 'assets served per hour' speed to asset server statsJustin Clarke Casey1-6/+15
2008-01-28* Add total logouts (and total logins) to server side user statsJustin Clarke Casey1-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
2008-01-28* Move AssetStatsReporter to Framework.StatisticsJustin Clarke Casey1-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
2008-01-26Set svn properties.Jeff Ames1-0/+0
2008-01-25* Add very basic initial login stats to the user serverJustin Clarke Casey1-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