aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/ServerBase.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Testing stage of the new versioning system. Use at own risk. May notMelanie Thielker2015-10-311-3/+3
| | | | work. Will eat your babies. Yada. Yada.
* Clean up of simulation version, the number that rules the compatibility of ↵Diva Canto2015-10-181-1/+2
| | | | | | | | teleports: - It's not configurable anymore, it's fixed in code. Each number means an increase in features of the teleport procedure - Its definition moved to the global VersionInfo class As of now it's still 0.3.
* Disable the "show threadpool calls active" console command for now.Justin Clark-Casey (justincc)2015-05-121-5/+5
| | | | | | | Whilst this can be very useful to identify threads held too long by incoming packet processing, it can also be very misleading as the count updates are not atomic (race conditions lead to growth in numbers over time). This could be solved by making the counts volatile but I don't currently have time to assess the performance impact, though it's almost certainly negligible. If anybody else wants to do that and re-enable this command then please feel free.
* Add "show threadpool calls active" console debug command.Justin Clark-Casey (justincc)2014-11-251-5/+40
| | | | | This shows named threadpool calls (excluding timer and network calls) that are currently queued or running. Also shows total of labelled and any anonymous calls.
* Label all threadpool calls being made in core OpenSimulator. This is to add ↵Justin Clark-Casey (justincc)2014-11-251-0/+8
| | | | | | problem diagnosis. "show threadpool calls" now also returns named (labelled), anonymous (unlabelled) and total call stats.
* Add "show threadpool calls" command to show count of all labelled ↵Justin Clark-Casey (justincc)2014-11-251-0/+21
| | | | smartthreadpool calls
* Changed LogThreadPool to have 4 logging levels. Added console command "debug ↵Oren Hurvitz2014-03-251-0/+38
| | | | | | threadpool level" to set the logging level. Resolves http://opensimulator.org/mantis/view.php?id=6945
* Add "debug threadpool status" console command to show min/max/current ↵Justin Clark-Casey (justincc)2013-08-061-0/+23
| | | | worker/iocp threadpool numbers
* Add "debug comms status" command to show current debug comms settingsJustin Clark-Casey (justincc)2013-08-051-0/+11
|
* Make it possible to switch whether we serialize osd requests per endpoint or ↵Justin Clark-Casey (justincc)2013-08-051-0/+37
| | | | | | not, either via config (SerializeOSDRequests in [Network]) or via the "debug comms set" console command. For debug purposes to assess what impact this has on network response in a heavy test environment.
* minor: move "threads abort" and "force gc" console commands into debug ↵Justin Clark-Casey (justincc)2013-08-051-2/+2
| | | | category - these are not things one needs to do in normal operation
* Make it possible to set worker/iocp min/max threadpool limits on the fly ↵Justin Clark-Casey (justincc)2013-08-051-0/+78
| | | | with the console command "debug threadpool set"
* Add checks monitoring framework to provide alerts if certain conditions do ↵Justin Clark-Casey (justincc)2013-08-051-0/+1
| | | | | | not hold. Not yet in use.
* refactor: Move existing code to generate report information on the ↵Justin Clark-Casey (justincc)2013-06-171-1/+62
| | | | threadpool to the ServerBase rather than being in Util
* Make general server stats available on the robust console as well as the ↵Justin Clark-Casey (justincc)2013-06-171-0/+32
| | | | | | simulator console This means the "show stats" command is now active on the robust console.
* If OpenSimulator is writing a PID file and finds the file already present on ↵Justin Clark-Casey (justincc)2013-04-091-0/+5
| | | | | | startup, logging an error since this is commonly due to an unclean shutdown. Unclean shutdown can cause constantly moving objects to disappear if an OAR has just been loaded and they have not reached persistence time threshold, among other problems.
* Log same environment information to Robust log as is already done for ↵Justin Clark-Casey (justincc)2013-03-141-0/+20
| | | | simulator logs, for debug purposes
* Make "show threads" and "thread abort" console commands available on all serversJustin Clark-Casey (justincc)2012-11-231-0/+92
|
* Make "force gc" console command available across all serversJustin Clark-Casey (justincc)2012-11-231-0/+12
|
* Make "show version" console command available across all serversJustin Clark-Casey (justincc)2012-11-231-0/+7
|
* Factor out command script code.Justin Clark-Casey (justincc)2012-11-221-2/+50
| | | | This also allows comments in command scripts (lines starting with ;, # or //) to be used across all servers
* Make "config show/set/get/save" console commands available on all serversJustin Clark-Casey (justincc)2012-11-221-3/+137
|
* Factor out common pid file creation and removal code.Justin Clark-Casey (justincc)2012-11-221-5/+46
| | | | Log path at which pid file is created or reason for failure to create.
* Add "get log level" command - this returns the current server session ↵Justin Clark-Casey (justincc)2012-11-221-19/+31
| | | | | | console logging level. This supersedes getting information by calling "set log level" without a 4th argument, which is confusing.
* Make "set log level" command available across all serversJustin Clark-Casey (justincc)2012-11-221-0/+31
|
* Make "show info" command available across all serversJustin Clark-Casey (justincc)2012-11-221-2/+182
| | | | This helpfully lists version information, startup location and console log level
* Factor out common registration of "show uptime" commandJustin Clark-Casey (justincc)2012-11-221-0/+12
|
* factor out common HandleShow code for "show uptime"Justin Clark-Casey (justincc)2012-11-221-0/+50
|
* refactor: Factor out copy/pasted server uptime report codeJustin Clark-Casey (justincc)2012-11-221-0/+58