aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Statistics/SimExtraStatsCollector.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Comment out asset statistics section from periodic stats as these have not ↵Justin Clark-Casey (justincc)2012-01-241-108/+109
| | | | | | | been recorded for a very long time. Some might make a comeback in the future but others are of dubious usefuless for health check purposes, or the complexity of collection outweighs their usefulness. Some data is available via other means (e.g. "fcache status").
* Comment out inventory statistics section from periodic stats, since this ↵Justin Clark-Casey (justincc)2012-01-241-14/+15
| | | | only contained the now uncollected and irrelevant inventory cache number.
* Fix XStats formatting:BlueWall (James Hughes)2010-08-061-30/+35
| | | | | | | Recent libomv update broke the json serialization for XStats. This uses String.Format to convert all data to strings with fixed decimal (2 places ), or integer formats as appropriate.
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* Thanks Bluewall for Mantis #3519: a patch that adds simulator uptime and ↵Dahlia Trimble2009-04-251-9/+7
| | | | version to REST/json statistics reporting
* cleaning up, fixing warningsDr Scofield2009-04-221-5/+4
|
* Add copyright headers. Formatting cleanup.Jeff Ames2009-04-221-36/+35
|
* Fixes Mantis # 3469. Thank you kindly, BlueWall, for a patch that:Charles Krinke2009-04-171-0/+55
| | | | | | | This patch adds extended status reporting with the url http://server:port/simstatusx/ [^] . The data is returned in json format as "text/plain" type.
* * Remove asset cache size and texture stat reports from ASSET STATS since ↵Justin Clarke Casey2009-03-131-2/+35
| | | | | | | | these are now inaccurate * Correct count of assets in cache
* * optimized usings.lbsa712009-02-121-1/+0
|
* * Updates the sim stats module. Cleans out some of the rot.Teravus Ovares2009-01-031-22/+43
| | | | | | | * Adds a prototype web stats module which is disabled by default. It's functional with one report right now, however, the database structure may change, so I don't recommend enabling this to keep actual stats right now. I'll let you know when it's safe. * Adds Prototype for ajaxy web content * removed a warning or two.
* * Stop the sim stats reporter reusing the same SimStatsPacket for all clientsJustin Clarke Casey2008-10-061-24/+24
| | | | | | | * I believe this was the cause of the remaining packet_out_of_order messages in the Linden client logs * There were race conditions where multiple clientstacks would overwrite each other's sequence numbers
* * Start recording asset request times after a cache miss. This is very ↵Justin Clarke Casey2008-09-211-3/+16
| | | | | | | | primtive at the moment - only the last time is kept for some classes of request * This can be seen as "Latest asset request time after cache miss" in show stats on the region console
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-9/+9
| | | | | | | * This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
* Formatting cleanup.Jeff Ames2008-08-181-23/+23
|
* * Expose client statistics to the console via 'show stats'Justin Clarke Casey2008-07-151-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
* * minor: A few miscellaneous doc comments before I break and start on ↵Justin Clarke Casey2008-06-141-0/+2
| | | | something else
* * Start recording asset request failuresJustin Clarke Casey2008-06-141-12/+21
| | | | | | * This includes problems such as connection failures and timeouts. It does not include 'asset not found' replies from the asset service.
* * minor: Report cache figures in rounded up KB instead of with decimal ↵Justin Clarke Casey2008-06-101-4/+4
| | | | | | | | places in show stats * trade easier readability for pointless accuracy
* * minor: Properly clear the pushed asset cache statistics where the ↵Justin Clarke Casey2008-06-101-0/+16
| | | | | | | | 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
* * Add memory currently allocated to OpenSim to 'show stats' statisticsJustin Clarke Casey2008-06-101-4/+6
| | | | | | * 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)
* Update svn properties. Formatting cleanup.Jeff Ames2008-06-101-1/+1
|
* * Start recording abnormal client thread terminationsJustin Clarke Casey2008-06-041-1/+21
|
* Formatting cleanup.Jeff Ames2008-05-161-31/+31
|
* * Start recording as a statistic the number of times we start blocking ↵Justin Clarke Casey2008-05-141-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
* * Start recording initial complete avatar inventory retrieval failures from ↵Justin Clarke Casey2008-05-141-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...)
* * Refactor additional stats collection common code into base opensim serverJustin Clarke Casey2008-05-141-2/+2
| | | | | | * If extra stats not sent to the viewer are available on an opensim server, they are now uniformly accessible using the 'show stats' command
* * Refactor: Renaming non viewer statistics classes from Reporters to ↵Justin Clarke Casey2008-05-141-0/+156
Collectors - this seems more intuitive