aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Statistics/BaseStatsCollector.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename OpenSim.Framework.Statistics to OpenSim.Framework.Monitoring.Justin Clark-Casey (justincc)2012-07-251-68/+0
| | | | This better reflects the long-term purpose of that project and matches Monitoring modules.
* Correct churn stat from MB/s from KB/sJustin Clark-Casey (justincc)2012-07-251-1/+1
|
* Add experimental "OpenSim object memory churn" statistics to output of ↵Justin Clark-Casey (justincc)2012-07-251-8/+12
| | | | | | | | region console "show stats" command This aims to capture the amount of memory that OpenSim turns over whilst operating a region. This memory is not lost - apart from leaks it is reclaimed by the garbage collector. However, the more memory that gets turned over the more work the GC has to do to reclaim it.
* Add process working memory to "show stats" memory statistics.Justin Clark-Casey (justincc)2012-03-161-2/+6
| | | | This shows the actual amount of RAM being taken up by OpenSimulator (objects + vm overhead)
* 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-1/+1
| | | | version to REST/json statistics reporting
* Add copyright headers. Formatting cleanup.Jeff Ames2009-04-221-5/+5
|
* Fixes Mantis # 3469. Thank you kindly, BlueWall, for a patch that:Charles Krinke2009-04-171-0/+9
| | | | | | | This patch adds extended status reporting with the url http://server:port/simstatusx/ [^] . The data is returned in json format as "text/plain" type.
* Formatting cleanup.Jeff Ames2008-08-181-3/+3
|
* * minor: Properly clear the pushed asset cache statistics where the ↵Justin Clarke Casey2008-06-101-1/+1
| | | | | | | | 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
* * If a server has statistics, print these out to the log every hour to get ↵Justin Clarke Casey2008-06-101-1/+1
| | | | | | | | some idea of how these evolve * When returning GC.GetTotalMemory(), force collection first in order to get more accurate figures
* Update svn properties.Jeff Ames2008-06-101-51/+51
|
* * Add memory currently allocated to OpenSim to 'show stats' statisticsJustin Clarke Casey2008-06-101-0/+51
* 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)