aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/BaseOpenSimServer.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-01-19reduce some delay on shutdownUbitUmarov1-2/+1
2017-05-25move assetsconnector threads to whatchdog; Abort all alive threads known to ↵UbitUmarov1-1/+2
watchdog before exit
2017-05-24add a bit more pre exit cleanupUbitUmarov1-4/+4
2017-05-23 stop a few more threads on exitUbitUmarov1-0/+2
2017-05-23 please DIE! PLEASE??UbitUmarov1-2/+7
2017-04-26give more information on Fatal Error during region startupUbitUmarov1-2/+1
2017-01-05Massive tab and trailing space cleanupMelanie Thielker1-15/+15
2016-12-07add SSL certs validation options for regions to allow simple encriptation ↵UbitUmarov1-1/+29
without any peer autentification using simple homemade (or even shared) certs.
2016-07-27first step removing MegaRegions: refuse to run. Thanks to all that made ↵UbitUmarov1-1/+10
MegaRegions possible, they where a important OpenSim feature, but can no longer be mantained
2015-09-21remove duplicated and breaking codeUbitUmarov1-3/+0
2015-09-13Remove the last proprietary copyright headers, insert BSD ones.Melanie Thielker1-1/+1
2015-09-02seems to compile ( tests comented out)UbitUmarov1-9/+3
2014-08-09Comment out stupid XEngine-bound message about script vs non-script startup, ↵Melanie Thielker1-6/+6
it's annoyed me for a long time. Comment out periodic stats as well, they've never been useful to us and just cause console spew.
2014-07-02Actually call Close() for shared region modules when the simulator is being ↵Justin Clark-Casey (justincc)1-1/+7
shutdown. Adds regression test for this case.
2014-06-13Add [Startup]LogShowStatsSeconds=n parameter which controls the intervalRobert Adams1-2/+12
that simulator statistics is output to the console. Setting to zero turns stats logging off.
2013-12-14After previous discussion, put eye-catcher 'SCRIPT READY' messages to ↵Justin Clark-Casey (justincc)1-2/+2
console rather than log as warning The problem with logging at warn is that these aren't actually warnings, and so are false positives to scripts that monitor for problems. Ideally, log4net would have a separate "status" logging level, but currently we will compromise by putting them to console, as they are user-oriented
2013-06-17Make general server stats available on the robust console as well as the ↵Justin Clark-Casey (justincc)1-33/+13
simulator console This means the "show stats" command is now active on the robust console.
2013-03-14Log same environment information to Robust log as is already done for ↵Justin Clark-Casey (justincc)1-11/+1
simulator logs, for debug purposes
2012-11-23Make "show threads" and "thread abort" console commands available on all serversJustin Clark-Casey (justincc)1-102/+1
2012-11-23Make "force gc" console command available across all serversJustin Clark-Casey (justincc)1-11/+0
2012-11-23Make "show version" console command available across all serversJustin Clark-Casey (justincc)1-8/+0
2012-11-22Factor out common pid file creation and removal code.Justin Clark-Casey (justincc)1-35/+1
Log path at which pid file is created or reason for failure to create.
2012-11-22Remove unused BaseOpenSimServer.ShowHelp()Justin Clark-Casey (justincc)1-21/+0
2012-11-22Make "set log level" command available across all serversJustin Clark-Casey (justincc)1-31/+0
2012-11-22Make "show info" command available across all serversJustin Clark-Casey (justincc)1-177/+1
This helpfully lists version information, startup location and console log level
2012-11-22Factor out common registration of "show uptime" commandJustin Clark-Casey (justincc)1-66/+64
2012-11-22factor out common HandleShow code for "show uptime"Justin Clark-Casey (justincc)1-34/+5
2012-11-22refactor: Factor out copy/pasted server uptime report codeJustin Clark-Casey (justincc)1-25/+4
2012-11-15Revert "Merge master into teravuswork", it should have been avination, not ↵teravus1-15/+28
master. This reverts commit dfac269032300872c4d0dc507f4f9062d102b0f4, reversing changes made to 619c39e5144f15aca129d6d999bcc5c34133ee64.
2012-10-29Add "force gc" region console command which manually invokes garbage collection.Justin Clark-Casey (justincc)1-0/+11
For debugging purposes.
2012-10-11Extend "show stats" command to "show stats [list|all|<category name>]"Justin Clark-Casey (justincc)1-28/+4
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.
2012-07-27Remove a couple of compiler warnings pointed out by SignpostMarvJustin Clark-Casey (justincc)1-1/+0
2012-07-25Move Watchdog and MemoryWatchdog classes into OpenSim.Framework.Monitoring ↵Justin Clark-Casey (justincc)1-0/+1
with other monitoring code from OpenSim.Framework
2012-07-25Rename OpenSim.Framework.Statistics to OpenSim.Framework.Monitoring.Justin Clark-Casey (justincc)1-1/+1
This better reflects the long-term purpose of that project and matches Monitoring modules.
2012-07-11Where possible, use the system Encoding.ASCII and Encoding.UTF8 rather than ↵Justin Clark-Casey (justincc)1-2/+2
constructing fresh copies. The encodings are thread-safe and already used in such a manner in other places. This isn't done where Byte Order Mark output is suppressed, since Encoding.UTF8 is constructed to output the BOM.
2012-06-22If starting scripts on initial sim start, provide INFO level log feedback ↵Justin Clark-Casey (justincc)1-1/+1
each time 50 scripts have been started. This is to provide an indication of what's happening now that the default isn't to report every single script start. Changes XEngine logging level in OpenSim.exe.config from WARN to INFO.
2012-06-20Remove STARTUP COMPLETE message from the startuplogo.txt file and into main ↵Justin Clark-Casey (justincc)1-1/+3
logging
2012-06-20Comment out the neighbour and land in connectors from info logging that they ↵Justin Clark-Casey (justincc)1-1/+1
are starting up
2012-03-16minor: reuse threadpool count we just fetched instead of fetching it againJustin Clark-Casey (justincc)1-1/+1
2012-03-16Add total scripts count to "show threads"Justin Clark-Casey (justincc)1-2/+10
However, this returns 0 on Mono (at least on 2.6.7)! So not showing if it is zero.
2012-03-16Improve threadpool reporting to "show threads" console command (also gets ↵Justin Clark-Casey (justincc)1-6/+2
printed out periodically)
2012-03-08Change "help" to display categories/module list then "help ↵Justin Clark-Casey (justincc)1-10/+10
<category/module>" to display commands in a category. This is to deal with the hundred lines of command splurge when one previously typed "help" Modelled somewhat on the mysql console One can still type help <command> to get per command help at any point. Categories capitalized to avoid conflict with the all-lowercase commands (except for commander system, as of yet). Does not affect command parsing or any other aspects of the console apart from the help system. Backwards compatible with existing modules.
2012-02-24Rename Watchdog.GetThreads() to GetThreadsInfo() to reflect what it actually ↵Justin Clark-Casey (justincc)1-1/+1
returns and for consistency.
2012-02-18On Windows automatically load the correct native ODE library depending on ↵Justin Clark-Casey (justincc)1-1/+3
whether the process is 32-bit or 64-bit In theory, this means that a 64-bit Windows OS user can now run OpenSim.exe with ODE and use more than 2 (or 3) GB of memory. However, this is completely untested since I don't currently own a 64-bit Windows box. Feedback appreciated. Using OpenSim.32BitLaunch.exe should continue to work. Other platforms are unaffected. This will currently not work with sqlite - I will add that too if this works.
2012-01-31Use Environment.TickCount & Int32.MaxValue; instead of ↵Justin Clark-Casey (justincc)1-1/+1
Util.EnvironmentTickCount(); when producing the threads report to reduce wraparound. This matches the tickcount masking in the thread watchdog. For some reason, Util.EnvironmentTickCount() masks ticks by 0x3fffffff instead of 0xffffffff
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-11-15fix build break on UserManagementModule.Justin Clark-Casey (justincc)1-4/+8
This also adds time since started to "show threads". Unfortunately these two changes got mixed in.
2011-11-15improve formatting of "show threads"Justin Clark-Casey (justincc)1-1/+8
2011-11-15Add number of milliseconds since last update to "show threads"Justin Clark-Casey (justincc)1-3/+7
2011-10-25minor: add "threads show" as synonym for "show threads" for consistencyJustin Clark-Casey (justincc)1-0/+5