aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-07-25 21:15:44 +0100
committerJustin Clark-Casey2014-08-02 00:58:09 +0100
commit2f7d950ead946f6509a16fc6d868f906a711c307 (patch)
tree02a83785ae9cd4a384c6b2587243d97770eed46a
parentfix comments in physics section of [Startup] to reflect the actual default en... (diff)
downloadopensim-SC_OLD-2f7d950ead946f6509a16fc6d868f906a711c307.zip
opensim-SC_OLD-2f7d950ead946f6509a16fc6d868f906a711c307.tar.gz
opensim-SC_OLD-2f7d950ead946f6509a16fc6d868f906a711c307.tar.bz2
opensim-SC_OLD-2f7d950ead946f6509a16fc6d868f906a711c307.tar.xz
Add stats for service endpoints using existing data.
For each service endpoint (e.g. posts to the xinventory service), a stat is available which shows the number of requests received and moving average per second The full name is "service.<http-method>:<path>.requests (e.g. service.POST:/xinventory.requests)
-rw-r--r--OpenSim/Framework/Servers/HttpServer/BaseRequestHandler.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseRequestHandler.cs b/OpenSim/Framework/Servers/HttpServer/BaseRequestHandler.cs
index bbac699..72ffb0e 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseRequestHandler.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseRequestHandler.cs
@@ -26,6 +26,7 @@
26 */ 26 */
27 27
28using System; 28using System;
29using OpenSim.Framework.Monitoring;
29 30
30namespace OpenSim.Framework.Servers.HttpServer 31namespace OpenSim.Framework.Servers.HttpServer
31{ 32{
@@ -61,6 +62,19 @@ namespace OpenSim.Framework.Servers.HttpServer
61 Description = description; 62 Description = description;
62 m_httpMethod = httpMethod; 63 m_httpMethod = httpMethod;
63 m_path = path; 64 m_path = path;
65
66 StatsManager.RegisterStat(
67 new Stat(
68 "requests",
69 "requests",
70 "Number of requests received by this service endpoint",
71 "requests",
72 "service",
73 string.Format("{0}:{1}", httpMethod, path),
74 StatType.Pull,
75 MeasuresOfInterest.AverageChangeOverTime,
76 s => s.Value = RequestsReceived,
77 StatVerbosity.Debug));
64 } 78 }
65 79
66 public virtual string Path 80 public virtual string Path