aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Monitoring/SimExtraStatsCollector.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixed a bug that would cause the sim extra stats reporter to fail in ↵Steven Zielinski2015-05-041-1/+1
| | | | | | | | | | | | reporting stats. The bug was caused by the current process threads which can return null references. Test Plan: Tested on windows using opensim standalone and the json stats. Reviewers: rlouden, ssirigam, clattin, martin, kboswell Reviewed By: rlouden, ssirigam, clattin, martin, kboswell Differential Revision: http://cr.irl.ucf.edu/D277
* Fixed vocabulary in a comment to match the code.Steven Zielinski2015-05-041-1/+1
|
* Fixed a bug that would cause the sim extra stats reporter to fail in ↵Steven Zielinski2015-05-011-1/+5
| | | | | | | | | | reporting stats. The bug was caused by the current process threads which can return null references. Test Plan: Tested on windows using opensim standalone and the json stats. Reviewers: rlouden, kboswell, clattin, martin, ssirigam Differential Revision: http://cr.irl.ucf.edu/D277
* Phase 2 additons with Frame Dilation metric.Robert Louden2015-04-211-9/+10
|
* Moved over metrics from previous OpenSim 0.8.0.3 repository (this new ↵Glenn Martin2015-04-211-0/+47
| | | | repository is now the master branch from OpenSim).
* Make "abnormal thread terminations" into "ClientLogoutsDueToNoReceives" and ↵Justin Clark-Casey (justincc)2013-07-291-17/+8
| | | | | | | add this to the StatsManager This reflects the actual use of this stat - it hasn't recorded general exceptions for some time. Make the sim extra stats collector draw the data from the stats manager rather than maintaing this data itself.
* For the moment, disable the output of the 'scene' statistics in ↵Robert Adams2013-03-191-1/+3
| | | | | | | SimExtraStatsCollector and thus for the command 'show stats' because it is ugly and most of the information is already output in the formatted printout that appears before.
* Add a method to IStatsCollector for returning stats as an OSDMap.Robert Adams2013-02-201-4/+17
| | | | | | Extend implementors of IStatsCollector to return an OSDMap of stats. Update UserStatsCollector and AssetStatsCollector to return both string and OSDMap data (as well as console format).
* Use SortedDictionary in StatsManager instead of regular Dictionary so stats ↵Dan Lake2013-02-141-2/+2
| | | | will interate and print in a defined order
* Extend "show stats" command to "show stats [list|all|<category name>]"Justin Clark-Casey (justincc)2012-10-111-5/+11
| | | | | | This allows different categories of stats to be shown, with options to list categories or show all stats. Currently categories are scene and simulator and only a very few stats are currently registered via this mechanism. This commit also adds percentage stats for packets and blocks reused from the packet pool.
* Add experimental "slow frames" stat, available in "show stats" and via the ↵Justin Clark-Casey (justincc)2012-10-041-2/+11
| | | | | | | | | monitoring module. This increments a SlowFrames counter if a frame takes over 120% of maximum time. This commit also introduces a generic OpenSim.Framework.Monitoring.Stat which is available to any code that wants to register a statistic. This is more granualar than asking objects to create their own reports. At some point this will supersede earlier IMonitor and IAlert facilities in MonitoringModule which are only available to scene code.
* Rename OpenSim.Framework.Statistics to OpenSim.Framework.Monitoring.Justin Clark-Casey (justincc)2012-07-251-0/+463
This better reflects the long-term purpose of that project and matches Monitoring modules.