aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Monitoring (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-08-23minor: Correct typo on "debug stats record start" messageJustin Clark-Casey (justincc)1-1/+1
2013-08-17minor: remove mono compiler warning in StatsManagerJustin Clark-Casey (justincc)1-1/+1
2013-08-10Stats treaking. Update ToOSDMap for Stat and PercentageStat to returnRobert Adams4-150/+235
all the various numbers that have been added to the console output. Break out EventHistogram from CounterStat.
2013-08-08Add parameter and explanation of ManagedStats return to OpenSimDefaults.ini.Robert Adams1-0/+6
Add 'callback' query parameter to managed stats return to return function form of JSON data.
2013-08-08Add a JSON web fetch of the statististics managed by StatsManager.Robert Adams1-0/+31
Disabled by default. Enable by setting [Startup]ManagedStatsRemoteFetchURI="Something" and thereafter "http://ServerHTTPPort/Something/" will return all the managed stats (equivilent to "show stats all" console command). Accepts queries "cat=", "cont=" and "stat=" to specify statistic category, container and statistic names. The special name "all" is the default and returns all values in that group.
2013-08-06Add file missing from last commit 4c2f6deJustin Clark-Casey (justincc)1-0/+108
2013-08-06Add the experimental ability to dump stats (result of command "show stats ↵Justin Clark-Casey (justincc)1-12/+40
all") to file OpenSimStats.log every 5 seconds. This can currently only be activated with the console command "debug stats record start". Off by default. Records to file OpenSimStats.log for simulator and RobustStats.log for ROBUST
2013-08-05Add checks monitoring framework to provide alerts if certain conditions do ↵Justin Clark-Casey (justincc)4-3/+384
not hold. Not yet in use.
2013-07-29Make "abnormal thread terminations" into "ClientLogoutsDueToNoReceives" and ↵Justin Clark-Casey (justincc)2-22/+68
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.
2013-07-23Correct issue where the last instance of a sampled stat was shown 3x larger ↵Justin Clark-Casey (justincc)1-1/+2
than it should have been (though internal use was correct)
2013-07-23Improve spacing between data and units on console stats displayJustin Clark-Casey (justincc)1-3/+12
2013-07-23For stats which can show average change over time, show the last sample as ↵Justin Clark-Casey (justincc)1-1/+11
well as the average. This is somewhat cryptic at the moment, need to improve documentation.
2013-07-12Add ToOSDMap() overrides to the Stat subclass CounterStat.Robert Adams3-0/+88
Add a GetStatsAsOSDMap method to StatsManager which allows the filtered fetching of stats for eventual returning over the internets.
2013-06-20Change "ObjectMemory" stat to "HeapMemory" to align with other stat names. ↵Justin Clark-Casey (justincc)1-3/+3
Also round this and ProcessMemory to three decimal places in common with other memory stats. I believe leaving out such minor info makes stats easier to read
2013-06-20Allow more than one stat category to be specified in "show stats"Justin Clark-Casey (justincc)1-30/+34
e.g. "show stats httpserver.9000 server.network"
2013-06-20minor: Change "memory churn" terminology in statistics to "heap allocation ↵Justin Clark-Casey (justincc)3-14/+14
rate" since this is more generally meaningful
2013-06-20Fix minor bug where the check whether to display SmartThreadPool stats was ↵Justin Clark-Casey (justincc)1-1/+1
accidentally != null rather than == FireAndForgetMethod.SmartThreadPool Due to another check this had no practical effect
2013-06-20Make it possible to specify display of stats in a particular 'container' by ↵Justin Clark-Casey (justincc)2-3/+17
separating category and container with a period. e.g. "show stats server.network" I failed to realize this had already been implemented without the period in the show stats command (as the command help had not been updated). However, I would prefer the . approach as it will allow specifying multiple stats, easier wildcarding, etc. This commit also prevents any stat from having a period in its short name.
2013-06-19Display existing statistic of how many http requests a server is making as ↵Justin Clark-Casey (justincc)2-4/+22
server.network.HTTPRequestsMade in "show stats all"
2013-06-18minor: tidy up spacing if display a unit for additional stat informationJustin Clark-Casey (justincc)1-1/+1
2013-06-18Make number of inbound http requests handled available as a ↵Justin Clark-Casey (justincc)1-1/+6
httpserver.<port>.IncomingHTTPRequestsProcessed stat
2013-06-18Fix issue where stat samples were accidentally static, so that any ↵Justin Clark-Casey (justincc)1-1/+1
additional stat with sampling would produce wrong results
2013-06-18If SmartThreadPool is active, display statistical information about it in ↵Justin Clark-Casey (justincc)1-2/+13
"show stats server" Also puts these and previous builtin threadpool stats in the "threadpool" stat container rather than "processor"
2013-06-17Drop server level stats to debug instead of info.Justin Clark-Casey (justincc)1-1/+1
This was the original intention with these stats, as I didn't believe they would be useful to ordinary users if everything is working as it should. Please amend if this is an issue. Just for now, levels actually have no impact on what is displayed via the "show stats" command.
2013-06-17Add server stats for available builtin threadpool and iocp workersJustin Clark-Casey (justincc)1-0/+16
2013-06-17Make general server stats available on the robust console as well as the ↵Justin Clark-Casey (justincc)2-32/+349
simulator console This means the "show stats" command is now active on the robust console.
2013-03-19For the moment, disable the output of the 'scene' statistics in ↵Robert Adams1-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.
2013-02-24Make StatsManager default output a little more readableRobert Adams1-1/+1
2013-02-24Add EventHistogram.GetHistogramAsOSDMap that returns that parametersRobert Adams1-211/+228
about the histogram as well as the values.
2013-02-24Modify StatsManager so console command "show stats category container"Robert Adams1-5/+24
only outputs the statistics in the specified container in the category.
2013-02-21Add a virtual ToOSDMap() function to Monitoring.Stat for futureRobert Adams1-0/+16
overloading by aggregation statistics and browser based stat viewers.
2013-02-21Add CounterStat which is a wrapper for a counter stat but, becauseRobert Adams2-1/+218
the 'count' event is internal, historical data can be built it. Also includes EventHistogram class for building time based, bucketed history of event occurances. Make Stat implement IDisposable for subclasses that might need it.
2013-02-20Add a method to IStatsCollector for returning stats as an OSDMap.Robert Adams5-4/+77
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).
2013-02-19Deleted all AssemblyFileVersion directivesDiva Canto1-1/+1
2013-02-14Use SortedDictionary in StatsManager instead of regular Dictionary so stats ↵Dan Lake2-22/+22
will interate and print in a defined order
2013-02-05Bump version and assembly version numbers from 0.7.5 to 0.7.6Justin Clark-Casey (justincc)1-1/+1
This is mostly Bluewall's work but I am also bumping the general version number OpenSimulator 0.7.5 remains in the release candidate stage. I'm doing this because master is significantly adding things that will not be in 0.7.5 This update should not cause issues with existing external binary DLLs because our DLLs do not have strong names and so the exact version match requirement is not in force.
2013-02-01Revert "Update assembly version numbers"BlueWall1-1/+1
This reverts commit 141ad829f448b9138b12be7cf99c834c1f3977ec.
2013-02-01Update assembly version numbersBlueWall1-1/+1
2013-01-10revert accidental change to MemoryWatchdog stat calculation in previous b1b4687Justin Clark-Casey (justincc)1-1/+1
2013-01-10Add "show script timers" command to show script timers. For debug purposes.Justin Clark-Casey (justincc)1-1/+1
Also, "show sensors" changes to "show script sensors".
2012-11-16refactor: Move stat classes out of StatManager and into their own files for ↵Justin Clark-Casey (justincc)3-260/+326
clarity.
2012-11-16Add a first draft mechanism for the IncomingPacketsProcessedStat to show the ↵Justin Clark-Casey (justincc)2-4/+139
delta over time. The chief motivation for this is to be able to tell whether there's any impact on incoming packet processing from enabling extra packet pooling.
2012-11-15Make PacketPool class stats pull stats instead of push stats so they can be ↵Justin Clark-Casey (justincc)1-4/+10
lifted up into LLUDPServer and be distiguished by scene name
2012-11-14A few more AssemblyInfos in a few more dlls.Diva Canto1-0/+33
2012-10-23Make it possible to turn the base UDP object packet pools on and off whilst ↵Justin Clark-Casey (justincc)1-13/+1
running via the "debug lludp pool <on|off>" console command. For debug purposes. This does not currently apply to the higher LLUDP packetpool.
2012-10-23Add object count stats for new IncomingPacket and UDPPacketBuffer pools if ↵Justin Clark-Casey (justincc)1-6/+69
they are enabled. Add count stats for existing LLUDP pool. This introduces a pull stat type in addition to the push stat type. A pull stat takes a method on construction which knows how to update the stat on request. In this way, special interfaces for pull stat collection are not necessary.
2012-10-16Add LastMemoryChurn stat using existing data so we can more quickly tell how ↵Justin Clark-Casey (justincc)2-2/+14
memory churn changes rather than waiting for the average to move.
2012-10-12Get Watchdog to log thread removalJustin Clark-Casey (justincc)1-1/+19
2012-10-12Fix percentage stats to multiply by 100. Adjust container name for ↵Justin Clark-Casey (justincc)1-2/+2
packetpool stats.
2012-10-12Fix build break by moving OpenSim.Framework.Console back below HttpServer in ↵Justin Clark-Casey (justincc)1-2/+1
the build order. Luckily, it turns out Framework.Monitoring doesn't need to reference Console directly.