aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/BaseOpenSimServer.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
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
2011-10-25Add "threads abort <thread-id>" simulator console command that allows us to ↵Justin Clark-Casey (justincc)1-0/+25
abort a watchdog managed thread. This is for diagnostic purposes.
2011-07-01Make default serverside_object_permissions = true since this better matches ↵Justin Clark-Casey (justincc)1-11/+0
user expectations. It also matches the default setting in the OpenSim.ini.example file
2011-07-01If OpenSim has been built from a git tree, then include version information ↵Justin Clark-Casey (justincc)1-4/+39
automatically by dereferencing .git/HEAD A blank bin/.version file will stop this being displayed.
2011-07-01refactor: rename gitCommitFileName to manualVersionFileName since ↵Justin Clark-Casey (justincc)1-5/+4
bin/.version doesn't necessary have to be a git hash
2011-02-04Fix "set log level" to once again display current log level if it's not ↵Justin Clark-Casey (justincc)1-12/+15
given a parameter This addresses http://opensimulator.org/mantis/view.php?id=5345
2011-01-21Update the "config get <section> <key>" command to "config get [<section>] ↵Justin Clark-Casey (justincc)1-0/+14
[<key>]" The config get command shows a current config value on the console. Now, if <key> is omitted then all the values for the given section are printed. If <section> is ommitted then all sections and all keys are printed. Current config can also be dumped to a file using "config save <path>". This can be handy for resolving or eliminating config issues
2011-01-21make "show info" and "show version" show the same version textJustin Clark-Casey (justincc)1-4/+7
2011-01-21add current console log level to "show info"Justin Clark-Casey (justincc)1-2/+9
2011-01-20minor: make "show info" help slightly clearerJustin Clark-Casey (justincc)1-1/+1
2010-09-14Fix "show threads" to show threads now being managed by ↵Justin Clark-Casey (justincc)1-16/+10
OpenSim.Framework.Watchdog
2010-05-28add a smidgen more log debug information in the form of the operating system ↵Justin Clark-Casey (justincc)1-1/+5
version
2009-11-27Apply patch to reduce git revision text length if running sim directly from ↵Justin Clark-Casey (justincc)1-1/+1
a git tree See http://opensimulator.org/mantis/view.php?id=4030 Thanks ChrisDown (and Bruce for reporting)
2009-10-19Formatting cleanup.Jeff Ames1-1/+1
2009-10-07Bug fix.Diva Canto1-2/+6
2009-10-07Printout one more field in show threads, but this won't buy us much.Diva Canto1-1/+2
2009-10-06Fixing a few compile errors in the previous commitJohn Hurliman1-21/+6
2009-10-05* GridServerPostHandler.cs: Try/catch in HandleDiva Canto1-1/+7
* BaseOpenSimServer.cs: Added thread pool numbers in show threads
2009-10-01Formatting cleanup.Jeff Ames1-6/+6
2009-08-13Formatting cleanup. Add copyright headers.Jeff Ames1-1/+1
2009-08-11Enable the console show version command and the viewer about command, to ↵Chris Down1-22/+46
show the last git commit hash together with the conmit date and time. The data is retrieved form a file bin/.version This file can be generated automatically using the post commit script by adding the following to the script: git log -n 1 --pretty="format:%h: %ci" > bin/.version This command can also be run manually to create the bin/.version file. This command genrates a short form of the commit hash and a date and time of the commit in ISO8601 format. If a full commit hash is required then change %h to %H The logic that is used to extract the deprecated svn revision is still included. It will be removed at a future date
2009-06-10Formatting cleanup.Jeff Ames1-3/+3
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-20Remove the pre-log4net, discrete output methods from the consolesMelanie Thielker1-1/+1
2009-05-20Add copyright headers, formatting cleanup.Jeff Ames1-10/+10
2009-05-13Thank you kindly, BlueWall sir, for a patch that:Charles Krinke1-2/+10
Adding a jsonp wrapper to the user supplied status report uri if the key "callback" exists. It will work with many javascript toolkits to provide an ajax callback to allow the browser to update stats reports without the intervention of an intermediate server.
2009-05-04Committing the changed treeMelanie Thielker1-0/+510
2009-05-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker1-496/+0
2009-05-04Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simpleMelanie Thielker1-1/+1
console capable of processing commands. Create LocalConsole as a console that uses cursor control and context help. Precursor to a distributed console system for the new grid services. No functional change intended :)
2009-05-02Thank you kindly, BlueWall, for a patch that:Charles Krinke1-1/+15
Move json stats to non-published resource name Remove well-known resource name for json stats, creating dynamic uris with private keys and add a user configurable resource name for region owner usage.
2009-04-25Thanks Bluewall for Mantis #3519: a patch that adds simulator uptime and ↵Dahlia Trimble1-2/+3
version to REST/json statistics reporting
2009-04-22Add copyright headers. Formatting cleanup.Jeff Ames1-4/+4
2009-04-17Fixes Mantis # 3469. Thank you kindly, BlueWall, for a patch that:Charles Krinke1-0/+8
This patch adds extended status reporting with the url http://server:port/simstatusx/ [^] . The data is returned in json format as "text/plain" type.