aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/UserStatistics (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-12-30Renamed VERSION_NUMBER to VersionNumberDiva Canto1-2/+2
2014-12-30This cleans up versioning. Specifically:Diva Canto1-2/+2
- It establishes 4 digits for opensim versions - It uses the same number between opensim releases and mono addins versions It also eliminates the last addin.xml files that were still there, for consistency.
2014-12-30WARNING: BREAKING CHANGES FOR REGION MODULE DEVELOPMENT.Diva Canto1-1/+1
This cleans up Opensim's use of mono addins. In particular, the extension points /OpenSim/RegionModules and /OpenSim/WindModule moved from OpenSim.exe to OpenSim.Region.Framework.dll. From here on, developers of region modules should declare their dlls to be dependent on OpenSim.Region.Framework, starting with version 0.8.1 Additional changes: - Addins version uniformly updated to 0.8.1. These numbers should be compatible with the release numbers or else it becomes very confusing. - Mono addins directives moved from files addins.xml to embedded directives in the class and assembly declarations, to make it all consistent
2014-12-29Updated OpenSim-as-addin version from 0.5 to 0.8.1. The addin version number ↵Diva Canto1-1/+1
doesn't need to match the release version number, but I think it's a very good idea that they do.
2014-09-03Don't show the ScrLPS data twice in the WebStats based statistics page.Kevin Cozens1-6/+0
2014-06-17Change assembly versions to 0.8.1Justin Clark-Casey (justincc)1-1/+1
2013-10-04Bump OPenSimulator version and assembly versions up to 0.8.0 DevJustin Clark-Casey (justincc)1-1/+1
2013-02-19Deleted all AssemblyFileVersion directivesDiva Canto1-1/+1
2013-02-06WebStats will now use actual logfile as specified in OpenSim.exe.config ↵Dan Lake1-1/+1
rather than hardcoded ./OpenSim.log. This allows for rotating logs and other file appender types
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-24Add JSONification of WebStats module. Adds a '?json' query parameterRobert Adams10-11/+281
to the fetch URL to return the data in JSON format. Also adds a simple 'sim.html' that uses JavaScript to display the JSON data. Not pretty but an example.
2012-12-15Make WebStatsModule properly handle scenes added or removed after initial ↵Justin Clark-Casey (justincc)1-14/+31
startup. This may have been the cause of the DivByZero in http://opensimulator.org/mantis/view.php?id=6460
2012-11-14Added AssemblyInfos to every dll in the OpenSim.Region namespace.Diva Canto1-0/+33
2012-11-11One more module converted: WebStatsModule.Diva Canto1-76/+93
2012-10-06refactor: Rename UserSessioNID -> UserSession in WebStatsModule since this ↵Justin Clark-Casey (justincc)1-20/+20
is what it actually represents
2012-10-06Make UserSessionID a class rather than a struct, so that later updates to ↵Justin Clark-Casey (justincc)1-2/+16
value suceed (rather than having to pull the data out and reinsert back into the Dictionary). Fixes http://opensimulator.org/mantis/view.php?id=6338
2012-07-25Rename OpenSim.Framework.Statistics to OpenSim.Framework.Monitoring.Justin Clark-Casey (justincc)4-4/+4
This better reflects the long-term purpose of that project and matches Monitoring modules.
2012-07-16refactor: factor out common code in WebStatsModule.OnMakeRootAgent()Justin Clark-Casey (justincc)1-8/+7
2012-07-16In WebStatsModule.OnMakeRootAgent(), get region ID directly from ↵Justin Clark-Casey (justincc)1-18/+2
SP.Scene.RegionInfo.RegionID instead of manually looking it up from the stored scene list.
2012-07-16Stop warning about no session from ViewerStats if user teleports to another ↵Justin Clark-Casey (justincc)1-6/+6
region in the same simulator that was not next to the source region. This was because teleporting to the new region invoked the new session setup code before the agent was removed from the old region, which then invoked the session teardown code. Now, we only invoke the teardown code if the region ID occupied by the agent being removed is the same as the one registered for the current session.
2012-05-03Implement optional name and description on http stream handlers so that we ↵Justin Clark-Casey (justincc)1-8/+9
can relate a slow request to what the handler actually does and the agent it serves, if applicable. This is most useful for capabilities where the url is not self-describing.
2012-04-17Move some public methods on WebStatsModule to private to reduce some static ↵Justin Clark-Casey (justincc)1-14/+14
analysis complexity. There's no obvious reason for these methods to be public.
2012-04-17Use INSERT OR REPLACE INTO sql in WebStatsModule for session update rather ↵Justin Clark-Casey (justincc)1-77/+7
than separate insert and update statements
2012-04-17correct bug where f_invalid was being inserted on a webstats update for an ↵Justin Clark-Casey (justincc)1-2/+2
existing session rather than d_world_kb
2012-04-17Simplify WebStatsModule by removing the uncompleted migrations section.Justin Clark-Casey (justincc)1-29/+3
Use "create table if not exists" instead. Client stats data is transitory data that it is not worth migrating.
2012-04-17Fix bug in WebStatsModule where an exception would always be output on ↵Justin Clark-Casey (justincc)1-5/+10
update if the user teleported to another region on that simulator. This was because update was looking for an existing stats record unique in session id, agent id and region id. But if the user teleports to another region then region id changes. WebStatsModule promptly doesn't find the existing record and tries to insert a new one, but only session id is the primary key and that's still the same, which makes things go bang. This makes the update search only on the unique session id. This is only an issue with simulators that have multiple regions where the webstats module is enabled.
2012-02-28Call Dispose() via using() on SqliteCommands in WebStatsModule after use.Justin Clark-Casey (justincc)1-99/+98
2012-02-23Load appropriate 32-bit/64-bit Windows sqlite dll if using WebStatsModule.Justin Clark-Casey (justincc)1-0/+3
This should resolve http://opensimulator.org/mantis/view.php?id=5901
2012-02-07Make WebStats logging report consistently as WEB STATS MODULE instead of VC, ↵Justin Clark-Casey (justincc)1-6/+5
VS and WEBSTATS
2012-01-25minor: stop the WebStatsModule logging UPDATE or INSERT every time it ↵Justin Clark-Casey (justincc)1-3/+3
updates bin/LocalUserStatistics.db
2011-12-05Implement IOSHttpRequest and IOSHttpResponse http interfaces and use instead ↵Justin Clark-Casey (justincc)1-1/+1
of OSHttpRequest/OSHttpResponse. This is required for the substitution of different HTTP servers or the newer HttpServer.dll without having to commit to a particular implementation. This is also required to write regression tests that involve the HTTP layer. If you need to recompile, all you need to do is replace OSHttpRequest/OSHttpResponse references with IOSHttpRequest/IOSHttpResponse.
2011-10-06WebStats - Home Link FixPixel Tomsen1-2/+3
http://opensimulator.org/mantis/view.php?id=4536
2011-10-05rename WebStatsModules.m_scene to m_scenes since it's a list of scenes, not ↵Justin Clark-Casey (justincc)1-11/+11
a single one
2011-10-05Change WebStatsModule to check its config properly, instead of catching the ↵Justin Clark-Casey (justincc)1-34/+7
ineviable NullReferenceException! Also, tidy up spacing.
2011-04-30Renamed OpenSim.Framework.Capabilities.dll to OpenSim.Capabilities.dllDiva Canto1-1/+0
2010-03-19Cleaned up access to scenepresences in scenegraph. GetScenePresences and ↵Dan Lake1-8/+6
GetAvatars have been removed to consolidate locking and iteration within SceneGraph. All callers which used these to then iterate over presences have been refactored to instead pass their delegates to Scene.ForEachScenePresence(Action<ScenePresence>).
2010-03-17Inconsistent locking of ScenePresence array in SceneGraph. Fixed by ↵Dan Lake1-1/+1
eliminating option to return the actual list. Callers can now either request a copy of the array as a new List or ask the SceneGraph to call a delegate function on every ScenePresence. Iteration and locking of the ScenePresences now takes place only within the SceneGraph class. This patch also applies a fix to Combat/CombatModule.cs which had unlocked iteration of the ScenePresences and inconsistent try/catch around the use of those ScenePresences.
2010-01-29Revert "Updates all IRegionModules to the new style region modules."Melanie1-22/+11
This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
2010-01-23Updates all IRegionModules to the new style region modules.Revolution1-11/+22
Signed-off-by: Melanie <melanie@t-data.com>
2009-10-23Experimental change to use an immutable array for iterating ScenePresences, ↵John Hurliman1-7/+7
avoiding locking and copying the list each time it is accessed
2009-10-01Formatting cleanup.Jeff Ames1-2/+2
2009-08-07This is the second part of the 'not crash on regionsize changes'. This ↵Teravus Ovares (Dan Olivares)1-1/+2
lets you configure region sizes to be smaller without crashing the region. I remind you that regions are still square, must be a multiple of 4, and the Linden client doesn't like anything other then 256. If you set it bigger or smaller, the terrain doesn't load in the client, the map has issues, and god forbid you connect it to a grid that expects 256m regions.
2009-07-22* Fix SStats under the new HttpServer. (.ajax files are apparently reserved)Teravus Ovares1-1/+1
2009-07-21* Updated C# WebServer to the latest available source download (r19869) and ↵Teravus Ovares2-6/+6
applied a few mods from the old version (now up on opensim-libs (VS 3.5 project). * Made various changes to BaseHttpServer to accommodate the new interfaces. * This version has been significantly re-architected and may fail in unusual and insidious ways. * Please pay attention to any errors you get and post a Mantis if you can reproduce an issue with the HTTPServer. I'm including the pdb and having the http server compiled in debug for a few weeks so that when an error occurs, it'll print the pertenant data. * Once again, this is the full C# WebServer, not the lite branch that is included in LibOMV (we need SSL!)
2009-07-10Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker1-3/+3
Change all uses of the HttpServer properties to use the new singleton
2009-06-19When a shared module hooks OnClientClosed, it has no way of findingMelanie Thielker1-1/+1
out which client connection has closed. So, in multi-region sims, things can get messy fast. This introduces a second parameters, which is a Scene object ref. Minor adjustments to custom modules may be required due to this change.
2009-06-18* Corrected CAPS namespacesArthur Valadares1-1/+1
* "luke, use the sed"
2009-06-10Formatting cleanup.Jeff Ames3-10/+13