From 6b4bf064bf42331cdcd4ed197fa98089177f199d Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 11 Sep 2012 09:35:27 -0700 Subject: [PATCH] added the servlet container information --- core/src/main/java/hudson/model/UsageStatistics.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/hudson/model/UsageStatistics.java b/core/src/main/java/hudson/model/UsageStatistics.java index 95db7b1787..83da162b53 100644 --- a/core/src/main/java/hudson/model/UsageStatistics.java +++ b/core/src/main/java/hudson/model/UsageStatistics.java @@ -126,6 +126,7 @@ public class UsageStatistics extends PageDecorator { JSONObject o = new JSONObject(); o.put("stat",1); o.put("install", Util.getDigestOf(h.getSecretKey())); + o.put("servletContainer",h.servletContext.getServerInfo()); o.put("version", Jenkins.VERSION); List nodes = new ArrayList(); -- GitLab