diff options
author | Oren Hurvitz | 2014-06-29 18:49:27 +0300 |
---|---|---|
committer | Oren Hurvitz | 2014-07-21 09:10:50 +0100 |
commit | af3498efdbd0b165a7e37095b1d8a9e54723993c (patch) | |
tree | 6ce955802b93f276b53e8a47f346222772e0a637 /OpenSim/Framework | |
parent | Write UDP statistics to the log, not just the console (e.g., "show queues") (diff) | |
download | opensim-SC-af3498efdbd0b165a7e37095b1d8a9e54723993c.zip opensim-SC-af3498efdbd0b165a7e37095b1d8a9e54723993c.tar.gz opensim-SC-af3498efdbd0b165a7e37095b1d8a9e54723993c.tar.bz2 opensim-SC-af3498efdbd0b165a7e37095b1d8a9e54723993c.tar.xz |
In "show throttles", show the maximum drip rate. This shows whether a client is being throttled due to past poor performance.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/ClientInfo.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Framework/ClientInfo.cs b/OpenSim/Framework/ClientInfo.cs index 9021315..d68078e 100644 --- a/OpenSim/Framework/ClientInfo.cs +++ b/OpenSim/Framework/ClientInfo.cs | |||
@@ -54,6 +54,7 @@ namespace OpenSim.Framework | |||
54 | public int assetThrottle; | 54 | public int assetThrottle; |
55 | public int textureThrottle; | 55 | public int textureThrottle; |
56 | public int totalThrottle; | 56 | public int totalThrottle; |
57 | public int maxThrottle; | ||
57 | 58 | ||
58 | public Dictionary<string, int> SyncRequests = new Dictionary<string,int>(); | 59 | public Dictionary<string, int> SyncRequests = new Dictionary<string,int>(); |
59 | public Dictionary<string, int> AsyncRequests = new Dictionary<string,int>(); | 60 | public Dictionary<string, int> AsyncRequests = new Dictionary<string,int>(); |