From b16abc8166c29585cb76cc55c3bdd76e5833cb4f Mon Sep 17 00:00:00 2001
From: Melanie Thielker
Date: Thu, 5 Jan 2017 19:07:37 +0000
Subject: Massive tab and trailing space cleanup
---
.../Framework/Monitoring/SimExtraStatsCollector.cs | 28 +++++++++++-----------
1 file changed, 14 insertions(+), 14 deletions(-)
(limited to 'OpenSim/Framework/Monitoring/SimExtraStatsCollector.cs')
diff --git a/OpenSim/Framework/Monitoring/SimExtraStatsCollector.cs b/OpenSim/Framework/Monitoring/SimExtraStatsCollector.cs
index 08c2409..88a0297 100755
--- a/OpenSim/Framework/Monitoring/SimExtraStatsCollector.cs
+++ b/OpenSim/Framework/Monitoring/SimExtraStatsCollector.cs
@@ -90,17 +90,17 @@ namespace OpenSim.Framework.Monitoring
// /// haven't yet been implemented...
// ///
// public long AssetsInCache { get { return assetsInCache; } }
-//
+//
// ///
// /// Currently unused
// ///
// public long TexturesInCache { get { return texturesInCache; } }
-//
+//
// ///
// /// Currently misleading since we can't currently subtract removed asset memory usage without a performance hit
// ///
// public long AssetCacheMemoryUsage { get { return assetCacheMemoryUsage; } }
-//
+//
// ///
// /// Currently unused
// ///
@@ -127,7 +127,7 @@ namespace OpenSim.Framework.Monitoring
public float PendingUploads { get { return pendingUploads; } }
public float ActiveScripts { get { return activeScripts; } }
public float ScriptLinesPerSecond { get { return scriptLinesPerSecond; } }
-
+
// ///
// /// This is the time it took for the last asset request made in response to a cache miss.
// ///
@@ -177,7 +177,7 @@ namespace OpenSim.Framework.Monitoring
// assetsInCache++;
// //assetCacheMemoryUsage += asset.Data.Length;
// }
-//
+//
// public void RemoveAsset(UUID uuid)
// {
// assetsInCache--;
@@ -204,7 +204,7 @@ namespace OpenSim.Framework.Monitoring
// texturesInCache = 0;
// textureCacheMemoryUsage = 0;
// }
-//
+//
// public void AddAssetRequestTimeAfterCacheMiss(TimeSpan ts)
// {
// assetRequestTimeAfterCacheMiss = ts;
@@ -306,7 +306,7 @@ namespace OpenSim.Framework.Monitoring
StringBuilder sb = new StringBuilder(Environment.NewLine);
// sb.Append("ASSET STATISTICS");
// sb.Append(Environment.NewLine);
-
+
/*
sb.Append(
string.Format(
@@ -342,7 +342,7 @@ Asset service request failures: {3}" + Environment.NewLine,
List stats = StatsManager.GetStatsFromEachContainer("clientstack", "ClientLogoutsDueToNoReceives");
sb.AppendFormat(
- "Client logouts due to no data receive timeout: {0}\n\n",
+ "Client logouts due to no data receive timeout: {0}\n\n",
stats != null ? stats.Sum(s => s.Value).ToString() : "unknown");
// sb.Append(Environment.NewLine);
@@ -443,10 +443,10 @@ Asset service request failures: {3}" + Environment.NewLine,
foreach (ProcessThread currentThread in
Process.GetCurrentProcess().Threads)
{
- // A known issue with the current process .Threads property is
- // that it can return null threads, thus don't count those as
+ // A known issue with the current process .Threads property is
+ // that it can return null threads, thus don't count those as
// running threads and prevent the program function from failing
- if (currentThread != null &&
+ if (currentThread != null &&
currentThread.ThreadState == ThreadState.Running)
{
numberThreadsRunning++;
@@ -505,7 +505,7 @@ Asset service request failures: {3}" + Environment.NewLine,
"{0:0.##}", numberThreadsRunning));
args["ProcMem"] = OSD.FromString(String.Format("{0:#,###,###.##}",
memUsage));
-
+
return args;
}
}
@@ -531,12 +531,12 @@ Asset service request failures: {3}" + Environment.NewLine,
{
return m_statsProvider.GetStats();
}
-
+
public string XReport(string uptime, string version)
{
return "";
}
-
+
public OSDMap OReport(string uptime, string version)
{
OSDMap ret = new OSDMap();
--
cgit v1.1