Extend region console "show queues" command to show already collected time since last packeted received by the simulator from a viewer.
parent
c846a5461c
commit
ef8570f789
|
@ -278,7 +278,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
public string GetStats()
|
public string GetStats()
|
||||||
{
|
{
|
||||||
return string.Format(
|
return string.Format(
|
||||||
"{0,7} {1,7} {2,7} {3,9} {4,7} {5,7} {6,7} {7,7} {8,7} {9,8} {10,7} {11,7}",
|
"{0,7} {1,7} {2,7} {3,9} {4,7} {5,7} {6,7} {7,7} {8,7} {9,8} {10,7} {11,7} {12,7}",
|
||||||
|
Util.EnvironmentTickCountSubtract(TickLastPacketReceived),
|
||||||
PacketsReceived,
|
PacketsReceived,
|
||||||
PacketsSent,
|
PacketsSent,
|
||||||
PacketsResent,
|
PacketsResent,
|
||||||
|
|
|
@ -373,14 +373,19 @@ namespace OpenSim.Region.CoreModules.UDP.Linden
|
||||||
int maxNameLength = 18;
|
int maxNameLength = 18;
|
||||||
int maxRegionNameLength = 14;
|
int maxRegionNameLength = 14;
|
||||||
int maxTypeLength = 4;
|
int maxTypeLength = 4;
|
||||||
int totalInfoFieldsLength = maxNameLength + columnPadding + maxRegionNameLength + columnPadding + maxTypeLength + columnPadding;
|
|
||||||
|
int totalInfoFieldsLength
|
||||||
|
= maxNameLength + columnPadding
|
||||||
|
+ maxRegionNameLength + columnPadding
|
||||||
|
+ maxTypeLength + columnPadding;
|
||||||
|
|
||||||
report.Append(GetColumnEntry("User", maxNameLength, columnPadding));
|
report.Append(GetColumnEntry("User", maxNameLength, columnPadding));
|
||||||
report.Append(GetColumnEntry("Region", maxRegionNameLength, columnPadding));
|
report.Append(GetColumnEntry("Region", maxRegionNameLength, columnPadding));
|
||||||
report.Append(GetColumnEntry("Type", maxTypeLength, columnPadding));
|
report.Append(GetColumnEntry("Type", maxTypeLength, columnPadding));
|
||||||
|
|
||||||
report.AppendFormat(
|
report.AppendFormat(
|
||||||
"{0,7} {1,7} {2,7} {3,9} {4,7} {5,7} {6,7} {7,7} {8,7} {9,8} {10,7} {11,7}\n",
|
"{0,7} {1,7} {2,7} {3,7} {4,9} {5,7} {6,7} {7,7} {8,7} {9,7} {10,8} {11,7} {12,7}\n",
|
||||||
|
"Since",
|
||||||
"Pkts",
|
"Pkts",
|
||||||
"Pkts",
|
"Pkts",
|
||||||
"Pkts",
|
"Pkts",
|
||||||
|
@ -396,7 +401,8 @@ namespace OpenSim.Region.CoreModules.UDP.Linden
|
||||||
|
|
||||||
report.AppendFormat("{0,-" + totalInfoFieldsLength + "}", "");
|
report.AppendFormat("{0,-" + totalInfoFieldsLength + "}", "");
|
||||||
report.AppendFormat(
|
report.AppendFormat(
|
||||||
"{0,7} {1,7} {2,7} {3,9} {4,7} {5,7} {6,7} {7,7} {8,7} {9,8} {10,7} {11,7}\n",
|
"{0,7} {1,7} {2,7} {3,7} {4,9} {5,7} {6,7} {7,7} {8,7} {9,7} {10,8} {11,7} {12,7}\n",
|
||||||
|
"Last In",
|
||||||
"In",
|
"In",
|
||||||
"Out",
|
"Out",
|
||||||
"Resent",
|
"Resent",
|
||||||
|
@ -416,8 +422,6 @@ namespace OpenSim.Region.CoreModules.UDP.Linden
|
||||||
{
|
{
|
||||||
scene.ForEachClient(
|
scene.ForEachClient(
|
||||||
delegate(IClientAPI client)
|
delegate(IClientAPI client)
|
||||||
{
|
|
||||||
if (client is IStatsCollector)
|
|
||||||
{
|
{
|
||||||
bool isChild = client.SceneAgent.IsChildAgent;
|
bool isChild = client.SceneAgent.IsChildAgent;
|
||||||
if (isChild && !showChildren)
|
if (isChild && !showChildren)
|
||||||
|
@ -433,6 +437,8 @@ namespace OpenSim.Region.CoreModules.UDP.Linden
|
||||||
report.Append(GetColumnEntry(regionName, maxRegionNameLength, columnPadding));
|
report.Append(GetColumnEntry(regionName, maxRegionNameLength, columnPadding));
|
||||||
report.Append(GetColumnEntry(isChild ? "Cd" : "Rt", maxTypeLength, columnPadding));
|
report.Append(GetColumnEntry(isChild ? "Cd" : "Rt", maxTypeLength, columnPadding));
|
||||||
|
|
||||||
|
if (client is IStatsCollector)
|
||||||
|
{
|
||||||
IStatsCollector stats = (IStatsCollector)client;
|
IStatsCollector stats = (IStatsCollector)client;
|
||||||
|
|
||||||
report.AppendLine(stats.Report());
|
report.AppendLine(stats.Report());
|
||||||
|
|
Loading…
Reference in New Issue