Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Returns some basic information about the Jira server.

Return Type

JServerInfo

Example

Code Block
JServerInfo info = serverInfo();

string [] info = serverInfo();
	runnerLog("OS: " + info["os"]);
	runnerLog("OS Version: " + info["osVersion"]);
	runnerLog("Java Home: " + info["javaHome"]);
	runnerLog("Java Version: " + info["javaVersion"]);
	runnerLog("System Processors: " + info["processors"]);
	runnerLog("Free Java Memory: " + info["freeMemory"]);
	runnerLog("Max Java Memory: " + info["maxMemory"]);
	runnerLog("Total Java Memory: " + info["totalMemory"]);
	runnerLog("User Name: " + info["userName"]);
	runnerLog("User Directory: " + info["userDir"]);
	runnerLog("User Home: " + info["userHome"]);
	runnerLog("Root Info: " + info["rootInfo"]);

...