Record number of resent packets in LindenUDP stack and display in stats report
parent
2344150b6e
commit
2413e9eb3f
|
@ -122,6 +122,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
public int PacketsReceived;
|
public int PacketsReceived;
|
||||||
/// <summary>Number of packets sent to this client</summary>
|
/// <summary>Number of packets sent to this client</summary>
|
||||||
public int PacketsSent;
|
public int PacketsSent;
|
||||||
|
/// <summary>Number of packets resent to this client</summary>
|
||||||
|
public int PacketsResent;
|
||||||
/// <summary>Total byte count of unacked packets sent to this client</summary>
|
/// <summary>Total byte count of unacked packets sent to this client</summary>
|
||||||
public int UnackedBytes;
|
public int UnackedBytes;
|
||||||
|
|
||||||
|
@ -256,9 +258,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
public string GetStats()
|
public string GetStats()
|
||||||
{
|
{
|
||||||
return string.Format(
|
return string.Format(
|
||||||
"{0,7} {1,7} {2,9} {3,8} {4,7} {5,7} {6,7} {7,7} {8,9} {9,7} {10,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}",
|
||||||
PacketsSent,
|
|
||||||
PacketsReceived,
|
PacketsReceived,
|
||||||
|
PacketsSent,
|
||||||
|
PacketsResent,
|
||||||
UnackedBytes,
|
UnackedBytes,
|
||||||
m_packetOutboxes[(int)ThrottleOutPacketType.Resend].Count,
|
m_packetOutboxes[(int)ThrottleOutPacketType.Resend].Count,
|
||||||
m_packetOutboxes[(int)ThrottleOutPacketType.Land].Count,
|
m_packetOutboxes[(int)ThrottleOutPacketType.Land].Count,
|
||||||
|
|
|
@ -506,7 +506,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
|
|
||||||
// Bump up the resend count on this packet
|
// Bump up the resend count on this packet
|
||||||
Interlocked.Increment(ref outgoingPacket.ResendCount);
|
Interlocked.Increment(ref outgoingPacket.ResendCount);
|
||||||
//Interlocked.Increment(ref Stats.ResentPackets);
|
|
||||||
|
|
||||||
// Requeue or resend the packet
|
// Requeue or resend the packet
|
||||||
if (!outgoingPacket.Client.EnqueueOutgoing(outgoingPacket, false))
|
if (!outgoingPacket.Client.EnqueueOutgoing(outgoingPacket, false))
|
||||||
|
@ -582,6 +581,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
udpClient.NeedAcks.Add(outgoingPacket);
|
udpClient.NeedAcks.Add(outgoingPacket);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Interlocked.Increment(ref udpClient.PacketsResent);
|
||||||
|
}
|
||||||
|
|
||||||
#endregion Sequence Number Assignment
|
#endregion Sequence Number Assignment
|
||||||
|
|
||||||
|
|
|
@ -154,24 +154,26 @@ namespace OpenSim.Region.CoreModules.UDP.Linden
|
||||||
report.Append(GetColumnEntry("Type", maxTypeLength, columnPadding));
|
report.Append(GetColumnEntry("Type", maxTypeLength, columnPadding));
|
||||||
|
|
||||||
report.AppendFormat(
|
report.AppendFormat(
|
||||||
"{0,7} {1,7} {2,9} {3,8} {4,7} {5,7} {6,7} {7,7} {8,9} {9,7} {10,7}\n",
|
"{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",
|
||||||
|
"Pkts",
|
||||||
"Pkts",
|
"Pkts",
|
||||||
"Pkts",
|
"Pkts",
|
||||||
"Bytes",
|
"Bytes",
|
||||||
"Pkts",
|
"Q Pkts",
|
||||||
"Pkts",
|
"Q Pkts",
|
||||||
"Pkts",
|
"Q Pkts",
|
||||||
"Pkts",
|
"Q Pkts",
|
||||||
"Pkts",
|
"Q Pkts",
|
||||||
"Pkts",
|
"Q Pkts",
|
||||||
"Pkts",
|
"Q Pkts",
|
||||||
"Pkts");
|
"Q Pkts");
|
||||||
|
|
||||||
report.AppendFormat("{0,-" + totalInfoFieldsLength + "}", "");
|
report.AppendFormat("{0,-" + totalInfoFieldsLength + "}", "");
|
||||||
report.AppendFormat(
|
report.AppendFormat(
|
||||||
"{0,7} {1,7} {2,9} {3,8} {4,7} {5,7} {6,7} {7,7} {8,9} {9,7} {10,7}\n",
|
"{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",
|
||||||
"Out",
|
|
||||||
"In",
|
"In",
|
||||||
|
"Out",
|
||||||
|
"Resent",
|
||||||
"Unacked",
|
"Unacked",
|
||||||
"Resend",
|
"Resend",
|
||||||
"Land",
|
"Land",
|
||||||
|
|
Loading…
Reference in New Issue