Comment out inventory statistics section from periodic stats, since this only contained the now uncollected and irrelevant inventory cache number.
parent
7e76397a26
commit
e8f1e7e96e
|
@ -148,7 +148,8 @@ namespace OpenSim.Framework.Statistics
|
||||||
/// cover situations where the inventory service accepts the request but never returns any data, since
|
/// cover situations where the inventory service accepts the request but never returns any data, since
|
||||||
/// we do not yet timeout this situation.
|
/// we do not yet timeout this situation.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public long InventoryServiceRetrievalFailures { get { return inventoryServiceRetrievalFailures; } }
|
/// <remarks>Commented out because we do not cache inventory at this point</remarks>
|
||||||
|
// public long InventoryServiceRetrievalFailures { get { return inventoryServiceRetrievalFailures; } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieve the total frame time (in ms) of the last frame
|
/// Retrieve the total frame time (in ms) of the last frame
|
||||||
|
@ -219,10 +220,10 @@ namespace OpenSim.Framework.Statistics
|
||||||
assetServiceRequestFailures++;
|
assetServiceRequestFailures++;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AddInventoryServiceRetrievalFailure()
|
// public void AddInventoryServiceRetrievalFailure()
|
||||||
{
|
// {
|
||||||
inventoryServiceRetrievalFailures++;
|
// inventoryServiceRetrievalFailures++;
|
||||||
}
|
// }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Register as a packet queue stats provider
|
/// Register as a packet queue stats provider
|
||||||
|
@ -328,13 +329,13 @@ Asset service request failures: {3}" + Environment.NewLine,
|
||||||
"Abnormal client thread terminations: {0}" + Environment.NewLine,
|
"Abnormal client thread terminations: {0}" + Environment.NewLine,
|
||||||
abnormalClientThreadTerminations));
|
abnormalClientThreadTerminations));
|
||||||
|
|
||||||
sb.Append(Environment.NewLine);
|
// sb.Append(Environment.NewLine);
|
||||||
sb.Append("INVENTORY STATISTICS");
|
// sb.Append("INVENTORY STATISTICS");
|
||||||
sb.Append(Environment.NewLine);
|
// sb.Append(Environment.NewLine);
|
||||||
sb.Append(
|
// sb.Append(
|
||||||
string.Format(
|
// string.Format(
|
||||||
"Initial inventory caching failures: {0}" + Environment.NewLine,
|
// "Initial inventory caching failures: {0}" + Environment.NewLine,
|
||||||
InventoryServiceRetrievalFailures));
|
// InventoryServiceRetrievalFailures));
|
||||||
|
|
||||||
sb.Append(Environment.NewLine);
|
sb.Append(Environment.NewLine);
|
||||||
sb.Append("FRAME STATISTICS");
|
sb.Append("FRAME STATISTICS");
|
||||||
|
@ -399,8 +400,8 @@ Asset service request failures: {3}" + Environment.NewLine,
|
||||||
AssetServiceRequestFailures));
|
AssetServiceRequestFailures));
|
||||||
args["abnormalClientThreadTerminations"] = OSD.FromString (String.Format ("{0:0.##}",
|
args["abnormalClientThreadTerminations"] = OSD.FromString (String.Format ("{0:0.##}",
|
||||||
abnormalClientThreadTerminations));
|
abnormalClientThreadTerminations));
|
||||||
args["InventoryServiceRetrievalFailures"] = OSD.FromString (String.Format ("{0:0.##}",
|
// args["InventoryServiceRetrievalFailures"] = OSD.FromString (String.Format ("{0:0.##}",
|
||||||
InventoryServiceRetrievalFailures));
|
// InventoryServiceRetrievalFailures));
|
||||||
args["Dilatn"] = OSD.FromString (String.Format ("{0:0.##}", timeDilation));
|
args["Dilatn"] = OSD.FromString (String.Format ("{0:0.##}", timeDilation));
|
||||||
args["SimFPS"] = OSD.FromString (String.Format ("{0:0.##}", simFps));
|
args["SimFPS"] = OSD.FromString (String.Format ("{0:0.##}", simFps));
|
||||||
args["PhyFPS"] = OSD.FromString (String.Format ("{0:0.##}", physicsFps));
|
args["PhyFPS"] = OSD.FromString (String.Format ("{0:0.##}", physicsFps));
|
||||||
|
|
Loading…
Reference in New Issue