diff options
author | Justin Clark-Casey (justincc) | 2012-10-16 23:44:52 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-10-16 23:44:52 +0100 |
commit | 4e5b2346a5700b14687a33175ba54a93960a9d33 (patch) | |
tree | 00136f0ef3376a29156eb588be731d92eb459a35 /OpenSim/Framework/Monitoring/MemoryWatchdog.cs | |
parent | Add optional pool for the UDPPacketBuffer objects that handle all incoming UD... (diff) | |
download | opensim-SC-4e5b2346a5700b14687a33175ba54a93960a9d33.zip opensim-SC-4e5b2346a5700b14687a33175ba54a93960a9d33.tar.gz opensim-SC-4e5b2346a5700b14687a33175ba54a93960a9d33.tar.bz2 opensim-SC-4e5b2346a5700b14687a33175ba54a93960a9d33.tar.xz |
Add LastMemoryChurn stat using existing data so we can more quickly tell how memory churn changes rather than waiting for the average to move.
Diffstat (limited to 'OpenSim/Framework/Monitoring/MemoryWatchdog.cs')
-rw-r--r-- | OpenSim/Framework/Monitoring/MemoryWatchdog.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Framework/Monitoring/MemoryWatchdog.cs b/OpenSim/Framework/Monitoring/MemoryWatchdog.cs index a23cf1f..c6010cd 100644 --- a/OpenSim/Framework/Monitoring/MemoryWatchdog.cs +++ b/OpenSim/Framework/Monitoring/MemoryWatchdog.cs | |||
@@ -60,7 +60,7 @@ namespace OpenSim.Framework.Monitoring | |||
60 | private static bool m_enabled; | 60 | private static bool m_enabled; |
61 | 61 | ||
62 | /// <summary> | 62 | /// <summary> |
63 | /// Average memory churn in bytes per millisecond. | 63 | /// Last memory churn in bytes per millisecond. |
64 | /// </summary> | 64 | /// </summary> |
65 | public static double AverageMemoryChurn | 65 | public static double AverageMemoryChurn |
66 | { | 66 | { |
@@ -68,6 +68,14 @@ namespace OpenSim.Framework.Monitoring | |||
68 | } | 68 | } |
69 | 69 | ||
70 | /// <summary> | 70 | /// <summary> |
71 | /// Average memory churn in bytes per millisecond. | ||
72 | /// </summary> | ||
73 | public static double LastMemoryChurn | ||
74 | { | ||
75 | get { if (m_samples.Count > 0) return m_samples.Last(); else return 0; } | ||
76 | } | ||
77 | |||
78 | /// <summary> | ||
71 | /// Maximum number of statistical samples. | 79 | /// Maximum number of statistical samples. |
72 | /// </summary> | 80 | /// </summary> |
73 | /// <remarks> | 81 | /// <remarks> |