You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jb...@apache.org on 2007/09/28 21:34:28 UTC

svn commit: r580468 [2/4] - in /geronimo/sandbox/monitoring: ./ mrc-client/ mrc-client/src/ mrc-client/src/main/ mrc-client/src/main/java/ mrc-client/src/main/java/org/ mrc-client/src/main/java/org/apache/ mrc-client/src/main/java/org/apache/geronimo/ ...

Added: geronimo/sandbox/monitoring/mrc-client/src/main/java/org/apache/geronimo/console/stats/StatsGraph.java
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-client/src/main/java/org/apache/geronimo/console/stats/StatsGraph.java?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-client/src/main/java/org/apache/geronimo/console/stats/StatsGraph.java (added)
+++ geronimo/sandbox/monitoring/mrc-client/src/main/java/org/apache/geronimo/console/stats/StatsGraph.java Fri Sep 28 12:34:24 2007
@@ -0,0 +1,480 @@
+/**
+ *  Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  See the NOTICE file distributed with
+ *  this work for additional information regarding copyright ownership.
+ *  The ASF licenses this file to You under the Apache License, Version 2.0
+ *  (the "License"); you may not use this file except in compliance with
+ *  the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+package org.apache.geronimo.console.stats;
+
+import java.text.Format;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.Vector;
+import java.lang.Character;
+
+public class StatsGraph {
+    private String GraphName;
+    private String DivName; 
+    private String PrettyName;
+    private String DivDefine; 
+    private String DivImplement;
+    private String XAxisLabel;
+    private String YAxisLabel;
+    private int SnapshotDuration; 
+    private int TimeFrame;
+    private int PointCount;
+    private String HexColor;
+    private String GraphJS;
+
+    public StatsGraph(String graphName, String prettyName, String xAxisLabel, String yAxisLabel, Vector<Object> dataSet1, Character operation, Vector<Object> dataSet2, Vector<Object> snapshotTimes, int snapshotDuration, int timeFrame, String hexColor) 
+    {
+
+        DivName = graphName +"Container";
+        GraphName = graphName;
+        PrettyName = prettyName;
+        XAxisLabel = xAxisLabel;
+        YAxisLabel = yAxisLabel;
+        SnapshotDuration = snapshotDuration;
+        TimeFrame = timeFrame;
+        PointCount = dataSet1.size();
+        HexColor = hexColor;
+
+        DivDefine = "#" + DivName + "\n" +
+                    "{\n" +
+                    "margin: 0px;\n" +
+                    "background-color: #"+hexColor+"\n" +
+                    "border: 1px solid #999;\n" +
+                    "width: 750px;\n" +
+                    "height: 260px;\n" +
+                    "}";
+
+        DivImplement = "<tr><td>\n" +
+                       "<div id=\""+DivName+"\"></div><br>\n" +
+                       "</td></tr>\n";
+
+        GraphJS = "var " + graphName + "Data = \n" +
+                  "[\n";
+
+        for (int i = 1; i < dataSet1.size(); i++) {
+            if (((Long)dataSet1.get(i) - (Long)dataSet1.get(i-1)) < 0)
+                dataSet1.set(i-1, dataSet1.get(i));
+            GraphJS = GraphJS+"	{ index: " + (i) + ", value: Math.round(("+((Long)dataSet1.get(i)-(Long)dataSet1.get(i-1))+operation+((Long)dataSet2.get(i)-(Long)dataSet2.get(i-1))+")*10)/10 },\n";
+            //System.out.println("StatsGraph Says: Data object "+i+" is "+dataSet2.get(i));
+        }
+
+        GraphJS = GraphJS+"];\n";
+
+
+        GraphJS = GraphJS+"var " + graphName
+                  + "Store = new dojo.collections.Store();\n";
+        GraphJS = GraphJS+graphName + "Store.setData(" + graphName + "Data);\n";
+        GraphJS = GraphJS+graphName + "Max = 0;\n" + 
+                  graphName + "Min = 0;\n" + 
+                  graphName + "Avg = 0;\n" + 
+                  "for (var i = 0; i<"+ graphName + "Data.length; i++)\n" + 
+                  "{\n" + 
+                  graphName + "Max = Math.max(" + graphName + "Max," + graphName+ "Data[i].value);\n" + 
+                  graphName + "Min = Math.min("+ graphName + "Min," + graphName + "Data[i].value);\n"
+                  + graphName + "Avg = (" + graphName + "Avg + " + graphName
+                  + "Data[i].value);\n" + "}\n" + graphName
+                  + "Avg = Math.round(" + graphName + "Avg/" + graphName
+                  + "Data.length*10)/10;\n" + "if (" + graphName + "Max == 0)\n"
+                  + graphName + "Max = 1;\n";
+
+        // Setup the data series
+        GraphJS = GraphJS+"var " + graphName
+                  + "Series = new dojo.charting.Series({\n";
+        GraphJS = GraphJS+"dataSource: " + graphName + "Store,\n";
+        GraphJS = GraphJS+"bindings: { x: \"index\", y: \"value\" },\n";
+        GraphJS = GraphJS+"label: \"" + graphName + "\"\n";
+        GraphJS = GraphJS+"});\n";
+
+        // Define the x-axis
+        GraphJS = GraphJS+"var " + graphName + "xAxis = new dojo.charting.Axis(); \n";
+
+        // Set the upper and lower data range valuesprettyName
+        GraphJS = GraphJS+graphName + "xAxis.range = { lower: "
+                  + graphName + "Data[0].index, upper: " + graphName
+                  + "Data[" + graphName + "Data.length-1].index };\n";
+
+        GraphJS = GraphJS+graphName + "xAxis.origin = \"" + graphName
+                  + "Max\";\n";
+        GraphJS = GraphJS+graphName + "xAxis.showTicks = true;\n";
+        GraphJS = GraphJS+graphName + "xAxis.label = \"" + prettyName + "\";\n";
+
+        // Setup the x tick marks on the chart
+        GraphJS = GraphJS+graphName + "xAxis.labels = [ \n";
+        //timeFrame = ((int) ((Long)snapshotTimes.get(0) - (Long)snapshotTimes
+        //.get(snapshotTimes.size() - 1)) / 60000);
+        Format formatter = new SimpleDateFormat("HH:mm");
+        if ((timeFrame / 1440) > 7)
+            formatter = new SimpleDateFormat("M/d");
+        else {
+            if ((timeFrame / 60) > 24)
+                formatter = new SimpleDateFormat("E a");
+            else {
+                // if (timeFrame > 60)
+                // formatter = new SimpleDateFormat("HH:mm");
+                // else
+                formatter = new SimpleDateFormat("HH:mm");
+            }
+        }
+
+        for (int i = 1; i < dataSet1.size(); i++) {
+            Date date = new Date((Long)snapshotTimes.get(i));
+            //System.out.println("StatsGraph Says: Time object "+i+" is "+snapshotTimes.get(i));
+            //System.out.println("StatsGraph Says: Time object "+i+" is "+formatter.format(date));
+            GraphJS = GraphJS+"{ label: '" + formatter.format(date)
+                      + "', value: " + (i)
+                      + " }, \n";
+        }
+        GraphJS = GraphJS+"];\n";
+        // Define the y-axis
+        GraphJS = GraphJS+"var " + graphName
+                  + "yAxis = new dojo.charting.Axis();\n";
+        GraphJS = GraphJS+graphName + "yAxis.range = { lower: " + graphName
+                  + "Min, upper: " + graphName + "Max+(0.1*"+graphName+"Max)};\n";
+        GraphJS = GraphJS+graphName + "yAxis.showLines = true;\n";
+        GraphJS = GraphJS+graphName + "yAxis.showTicks = true;\n";
+        GraphJS = GraphJS+graphName + "yAxis.label = \"" + yAxisLabel + "\";\n";
+
+        // Setup the y tick marks on the chart
+        GraphJS = GraphJS+graphName + "yAxis.labels = [ \n";
+        GraphJS = GraphJS+"{ label: \"min - \"+" + graphName + "Min, value: "
+                  + graphName + "Min },\n";
+        GraphJS = GraphJS+"{ label: \"avg - \"+" + graphName + "Avg, value: "
+                  + graphName + "Avg },\n";
+        GraphJS = GraphJS+"{ label: \"max - \"+" + graphName + "Max, value: "
+                  + graphName + "Max },\n";
+        GraphJS = GraphJS+"{ label: Math.round(("+ graphName + "Max+(0.1*"+graphName+"Max))), value: "
+                  + graphName + "Max+(0.1*"+graphName+"Max) },\n";
+        GraphJS = GraphJS+"];  \n";
+
+        // Create the actual graph with the x and y axes defined above
+        GraphJS = GraphJS+"var " + graphName
+                  + "chartPlotArea = new dojo.charting.PlotArea();\n";
+        GraphJS = GraphJS+"var " + graphName
+                  + "chartPlot = new dojo.charting.Plot(" + graphName
+                  + "xAxis, " + graphName + "yAxis);\n";
+        GraphJS = GraphJS+graphName + "chartPlotArea.initializePlot("
+                  + graphName + "chartPlot);\n";
+        // graphOutput.add(graphName+"xAxis.initializeLabels();");
+        // graphOutput.add(graphName+"xAxis.renderLabels("+graphName+"chartPlotArea,
+        // "+graphName+"chartPlot, '200', '10', 'LABEL');");
+
+        // Add the time series to the graph. The plotter will be a curved
+        // area graph.
+        // Other available plotters are:
+        // Bar, HorizontalBar, Gantt, StackedArea, StackedCurvedArea,
+        // HighLow, HighLowClose, HighLowOpenClose, Bubble,
+        // DataBar, Line, CurvedLine, Area, CurvedArea, Scatter
+        GraphJS = GraphJS+graphName + "chartPlot.addSeries({ \n";
+        GraphJS = GraphJS+"data: " + graphName + "Series,\n";
+        GraphJS = GraphJS+"plotter: dojo.charting.Plotters.CurvedArea\n";
+        GraphJS = GraphJS+"});\n";
+
+        // Define the plot area
+
+        GraphJS = GraphJS+graphName
+                  + "chartPlotArea.size = { width: 650, height: 200 };\n";
+        GraphJS = GraphJS+graphName
+                  + "chartPlotArea.padding = { top: 30, right: 20, bottom: 30, left: 80 };\n";
+
+        // Add the plot to the area
+        GraphJS = GraphJS+graphName + "chartPlotArea.plots.push(" + graphName
+                  + "chartPlot);\n";
+        // Simply use the next available color when plotting the time series
+        // plot
+        GraphJS = GraphJS+graphName + "Series.color = '#"+hexColor+"';\n";
+
+        // Create the actual chart "canvas"
+        GraphJS = GraphJS+"var " + graphName
+                  + "chart = new dojo.charting.Chart(null, \"" + graphName
+                  + "\", \"This is the example chart description\");\n";
+
+        // Add the plot area at an offset of 10 pixels from the top left
+        GraphJS = GraphJS+graphName + "chart.addPlotArea({ x: "
+                  + dataSet1.size() + ", y: " + dataSet1.size()
+                  + ", plotArea: " + graphName + "chartPlotArea });\n";
+
+        // Setup the chart to be added to the DOM on load
+        GraphJS = GraphJS+"dojo.addOnLoad(function()\n{\n"+graphName + "chart.node = dojo.byId(\"" + DivName +"\");";
+
+        GraphJS = GraphJS+graphName + "chart.render();\n});\n";
+
+    }
+
+    public StatsGraph(String graphName, String prettyName, String xAxisLabel, String yAxisLabel, Vector<Long> dataSet1, Character operation, Vector<Long> dataSet2, Vector<Long> snapshotTimes, int snapshotDuration, int timeFrame, int pointCount) 
+    {
+
+    }
+
+    public StatsGraph(String graphName, String prettyName, String xAxisLabel, String yAxisLabel, Vector<Long> dataSet1, Character operation, Vector<Long> dataSet2, Vector<Long> snapshotTimes, int snapshotDuration, int timeFrame) 
+    {
+
+    }
+
+    public StatsGraph(String graphName, String prettyName, String xAxisLabel, String yAxisLabel, Vector<Object> dataSet1, Vector<Object> snapshotTimes, int snapshotDuration, int timeFrame, String hexColor) 
+    {
+        DivName = graphName +"Container";
+        GraphName = graphName;
+        PrettyName = prettyName;
+        XAxisLabel = xAxisLabel;
+        YAxisLabel = yAxisLabel;
+        SnapshotDuration = snapshotDuration;
+        TimeFrame = timeFrame;
+        PointCount = dataSet1.size();
+        HexColor = hexColor;
+
+        DivDefine = "#" + DivName + "\n" +
+                    "{\n" +
+                    "margin: 0px;\n" +
+                    "background-color: #"+hexColor+"\n" +
+                    "border: 1px solid #999;\n" +
+                    "width: 750px;\n" +
+                    "height: 260px;\n" +
+                    "}";
+
+        DivImplement = "<tr><td>\n" +
+                       "<div id=\""+DivName+"\"></div><br>\n" +
+                       "</td></tr>\n";
+
+        GraphJS = "var " + graphName + "Data = \n" +
+                  "[\n";
+
+        for (int i = 1; i < dataSet1.size(); i++) {
+            GraphJS = GraphJS+"	{ index: " + (i) + ", value: Math.round(("+(Long)dataSet1.get(i)+")*10)/10 },\n";
+            //System.out.println("StatsGraph Says: Data object "+i+" is "+dataSet2.get(i));
+        }
+
+        GraphJS = GraphJS+"];\n";
+
+
+        GraphJS = GraphJS+"var " + graphName
+                  + "Store = new dojo.collections.Store();\n";
+        GraphJS = GraphJS+graphName + "Store.setData(" + graphName + "Data);\n";
+        GraphJS = GraphJS+graphName + "Max = 0;\n" + 
+                  graphName + "Min = 0;\n" + 
+                  graphName + "Avg = 0;\n" + 
+                  "for (var i = 0; i<"+ graphName + "Data.length; i++)\n" + 
+                  "{\n" + 
+                  graphName + "Max = Math.max(" + graphName + "Max," + graphName+ "Data[i].value);\n" + 
+                  graphName + "Min = Math.min("+ graphName + "Min," + graphName + "Data[i].value);\n"
+                  + graphName + "Avg = (" + graphName + "Avg + " + graphName
+                  + "Data[i].value);\n" + "}\n" + graphName
+                  + "Avg = Math.round(" + graphName + "Avg/" + graphName
+                  + "Data.length*10)/10;\n" + "if (" + graphName + "Max == 0)\n"
+                  + graphName + "Max = 1;\n";
+
+        // Setup the data series
+        GraphJS = GraphJS+"var " + graphName
+                  + "Series = new dojo.charting.Series({\n";
+        GraphJS = GraphJS+"dataSource: " + graphName + "Store,\n";
+        GraphJS = GraphJS+"bindings: { x: \"index\", y: \"value\" },\n";
+        GraphJS = GraphJS+"label: \"" + graphName + "\"\n";
+        GraphJS = GraphJS+"});\n";
+
+        // Define the x-axis
+        GraphJS = GraphJS+"var " + graphName + "xAxis = new dojo.charting.Axis(); \n";
+
+        // Set the upper and lower data range valuesprettyName
+        GraphJS = GraphJS+graphName + "xAxis.range = { lower: "
+                  + graphName + "Data[0].index, upper: " + graphName
+                  + "Data[" + graphName + "Data.length-1].index };\n";
+
+        GraphJS = GraphJS+graphName + "xAxis.origin = \"" + graphName
+                  + "Max\";\n";
+        GraphJS = GraphJS+graphName + "xAxis.showTicks = true;\n";
+        GraphJS = GraphJS+graphName + "xAxis.label = \"" + prettyName + "\";\n";
+
+        // Setup the x tick marks on the chart
+        GraphJS = GraphJS+graphName + "xAxis.labels = [ \n";
+        //timeFrame = ((int) ((Long)snapshotTimes.get(0) - (Long)snapshotTimes
+        //.get(snapshotTimes.size() - 1)) / 60000);
+        Format formatter = new SimpleDateFormat("HH:mm");
+        if ((timeFrame / 1440) > 7)
+            formatter = new SimpleDateFormat("M/d");
+        else {
+            if ((timeFrame / 60) > 24)
+                formatter = new SimpleDateFormat("E a");
+            else {
+                // if (timeFrame > 60)
+                // formatter = new SimpleDateFormat("HH:mm");
+                // else
+                formatter = new SimpleDateFormat("HH:mm");
+            }
+        }
+
+        for (int i = 1; i < dataSet1.size(); i++) {
+            Date date = new Date((Long)snapshotTimes.get(i));
+            //System.out.println("StatsGraph Says: Time object "+i+" is "+snapshotTimes.get(i));
+            //System.out.println("StatsGraph Says: Time object "+i+" is "+formatter.format(date));
+            GraphJS = GraphJS+"{ label: '" + formatter.format(date)
+                      + "', value: " + (i)
+                      + " }, \n";
+        }
+        GraphJS = GraphJS+"];\n";
+        // Define the y-axis
+        GraphJS = GraphJS+"var " + graphName
+                  + "yAxis = new dojo.charting.Axis();\n";
+        GraphJS = GraphJS+graphName + "yAxis.range = { lower: " + graphName
+                  + "Min, upper: " + graphName + "Max+(0.1*"+graphName+"Max)};\n";
+        GraphJS = GraphJS+graphName + "yAxis.showLines = true;\n";
+        GraphJS = GraphJS+graphName + "yAxis.showTicks = true;\n";
+        GraphJS = GraphJS+graphName + "yAxis.label = \"" + yAxisLabel + "\";\n";
+
+        // Setup the y tick marks on the chart
+        GraphJS = GraphJS+graphName + "yAxis.labels = [ \n";
+        GraphJS = GraphJS+"{ label: \"min - \"+" + graphName + "Min, value: "
+                  + graphName + "Min },\n";
+        GraphJS = GraphJS+"{ label: \"avg - \"+" + graphName + "Avg, value: "
+                  + graphName + "Avg },\n";
+        GraphJS = GraphJS+"{ label: \"max - \"+" + graphName + "Max, value: "
+                  + graphName + "Max },\n";
+        GraphJS = GraphJS+"{ label: Math.round(("+ graphName + "Max+(0.1*"+graphName+"Max))), value: "
+                  + graphName + "Max+(0.1*"+graphName+"Max) },\n";
+        GraphJS = GraphJS+"];  \n";
+
+        // Create the actual graph with the x and y axes defined above
+        GraphJS = GraphJS+"var " + graphName
+                  + "chartPlotArea = new dojo.charting.PlotArea();\n";
+        GraphJS = GraphJS+"var " + graphName
+                  + "chartPlot = new dojo.charting.Plot(" + graphName
+                  + "xAxis, " + graphName + "yAxis);\n";
+        GraphJS = GraphJS+graphName + "chartPlotArea.initializePlot("
+                  + graphName + "chartPlot);\n";
+        // graphOutput.add(graphName+"xAxis.initializeLabels();");
+        // graphOutput.add(graphName+"xAxis.renderLabels("+graphName+"chartPlotArea,
+        // "+graphName+"chartPlot, '200', '10', 'LABEL');");
+
+        // Add the time series to the graph. The plotter will be a curved
+        // area graph.
+        // Other available plotters are:
+        // Bar, HorizontalBar, Gantt, StackedArea, StackedCurvedArea,
+        // HighLow, HighLowClose, HighLowOpenClose, Bubble,
+        // DataBar, Line, CurvedLine, Area, CurvedArea, Scatter
+        GraphJS = GraphJS+graphName + "chartPlot.addSeries({ \n";
+        GraphJS = GraphJS+"data: " + graphName + "Series,\n";
+        GraphJS = GraphJS+"plotter: dojo.charting.Plotters.CurvedArea\n";
+        GraphJS = GraphJS+"});\n";
+
+        // Define the plot area
+
+        GraphJS = GraphJS+graphName
+                  + "chartPlotArea.size = { width: 650, height: 200 };\n";
+        GraphJS = GraphJS+graphName
+                  + "chartPlotArea.padding = { top: 30, right: 20, bottom: 30, left: 80 };\n";
+
+        // Add the plot to the area
+        GraphJS = GraphJS+graphName + "chartPlotArea.plots.push(" + graphName
+                  + "chartPlot);\n";
+        // Simply use the next available color when plotting the time series
+        // plot
+        GraphJS = GraphJS+graphName + "Series.color = '#"+hexColor+"';\n";
+
+        // Create the actual chart "canvas"
+        GraphJS = GraphJS+"var " + graphName
+                  + "chart = new dojo.charting.Chart(null, \"" + graphName
+                  + "\", \"This is the example chart description\");\n";
+
+        // Add the plot area at an offset of 10 pixels from the top left
+        GraphJS = GraphJS+graphName + "chart.addPlotArea({ x: "
+                  + dataSet1.size() + ", y: " + dataSet1.size()
+                  + ", plotArea: " + graphName + "chartPlotArea });\n";
+
+        // Setup the chart to be added to the DOM on load
+        GraphJS = GraphJS+"dojo.addOnLoad(function()\n{\n"+graphName + "chart.node = dojo.byId(\"" + DivName +"\");";
+
+        GraphJS = GraphJS+graphName + "chart.render();\n});\n";
+    }
+
+    public StatsGraph(String graphName, String prettyName, String xAxisLabel, String yAxisLabel, Vector<Long> dataSet1, Vector<Long> snapshotTimes, int snapshotDuration, int timeFrame, int pointCount) 
+    {
+
+    }
+
+    public StatsGraph(String graphName, String prettyName, String xAxisLabel, String yAxisLabel, Vector<Long> dataSet1, Vector<Long> snapshotTimes, int snapshotDuration, int timeFrame) 
+    {
+
+    }
+
+    public StatsGraph() 
+    {
+
+    }
+
+    public void redraw()
+    {
+
+    }
+
+    public String getJS()
+    {
+        return GraphJS;
+    }
+
+    public String getDiv()
+    {
+        return DivDefine;
+    }
+
+    public String getDivImplement()
+    {
+        return DivImplement;
+    }
+
+    public String getDivName()
+    {
+        return DivName;
+    }
+
+    public String getXAxis()
+    {
+        return XAxisLabel;
+    }
+
+    public String getYAxis()
+    {
+        return YAxisLabel;
+    }
+
+    public String getName()
+    {
+        return GraphName;
+    }
+
+    public String getPrettyName()
+    {
+        return PrettyName;
+    }
+
+    public int getSnapshotDuration()
+    {
+        return SnapshotDuration;
+    }
+
+    public int getTimeFrame()
+    {
+        return TimeFrame;
+    }
+
+    public int getPointCount()
+    {
+        return PointCount;
+    }
+
+    public String getColor()
+    {
+        return HexColor;
+    }
+}
\ No newline at end of file

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/java/org/apache/geronimo/console/stats/StatsGraph.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/java/org/apache/geronimo/console/stats/StatsGraph.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/java/org/apache/geronimo/console/stats/StatsGraph.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/sandbox/monitoring/mrc-client/src/main/java/org/apache/geronimo/console/stats/StatsPortlet.java
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-client/src/main/java/org/apache/geronimo/console/stats/StatsPortlet.java?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-client/src/main/java/org/apache/geronimo/console/stats/StatsPortlet.java (added)
+++ geronimo/sandbox/monitoring/mrc-client/src/main/java/org/apache/geronimo/console/stats/StatsPortlet.java Fri Sep 28 12:34:24 2007
@@ -0,0 +1,142 @@
+/**
+ *  Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  See the NOTICE file distributed with
+ *  this work for additional information regarding copyright ownership.
+ *  The ASF licenses this file to You under the Apache License, Version 2.0
+ *  (the "License"); you may not use this file except in compliance with
+ *  the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+package org.apache.geronimo.console.stats;
+
+import java.io.IOException;
+import java.util.Vector;
+import java.util.Set;
+
+import javax.portlet.ActionRequest;
+import javax.portlet.ActionResponse;
+import javax.portlet.GenericPortlet;
+import javax.portlet.PortletConfig;
+import javax.portlet.PortletException;
+import javax.portlet.PortletRequestDispatcher;
+import javax.portlet.RenderRequest;
+import javax.portlet.RenderResponse;
+import javax.portlet.WindowState;
+
+import org.apache.geronimo.console.stats.GraphsBuilder;
+
+/**
+ * STATS
+ */
+public class StatsPortlet extends GenericPortlet {
+
+    private static final String MBEAN_JSP = "/WEB-INF/view/statsMbean.jsp";
+
+    private static final String TIMEFRAME_JSP = "/WEB-INF/view/statsTimeframe.jsp";
+
+    private static final String MAXIMIZEDVIEW_JSP = "/WEB-INF/view/statsMaximized.jsp";
+
+    private static final String HELPVIEW_JSP = "/WEB-INF/view/statsHelp.jsp";
+
+    private PortletRequestDispatcher mBeanView;
+
+    private PortletRequestDispatcher timeFrameView;
+
+    private PortletRequestDispatcher maximizedView;
+
+    private PortletRequestDispatcher helpView;
+
+    public void processAction(ActionRequest actionRequest,
+                              ActionResponse actionResponse) throws PortletException, IOException {
+        actionResponse.setRenderParameter("time", actionRequest.getParameter("time"));
+        actionResponse.setRenderParameter("mode", actionRequest.getParameter("mode"));
+        if (actionRequest.getParameter("mode").equals("mbean")) {
+            actionResponse.setRenderParameter("bean", actionRequest.getParameter("bean"));
+        }
+    }
+
+    public void doView(RenderRequest request, RenderResponse response)
+    throws PortletException, IOException {
+        Integer timeFrame = 60;
+        String mode = "mbean";
+        String bean = "TomcatWebConnector";
+        if (request.getParameter("time") != null)
+            timeFrame = Integer.parseInt(request.getParameter("time"));
+        if (request.getParameter("mode") != null)
+            mode = request.getParameter("mode");
+        if (request.getParameter("bean") != null)
+            bean = request.getParameter("bean");
+        response.setProperty("time", timeFrame.toString());
+        response.setProperty("mode", mode);
+
+        try {
+
+            GraphsBuilder run = new GraphsBuilder(0);
+            if (mode.equals("mbean")) {
+                Vector <StatsGraph> GraphVector = run.BuildOnMbean(14, timeFrame, bean);
+                Set <String> trackedBeans = run.GetTrackedBeansPretty();
+                request.setAttribute("GraphVector", GraphVector);
+                request.setAttribute("trackedBeans", trackedBeans);
+                if (WindowState.MINIMIZED.equals(request.getWindowState())) {
+                    return;
+                } else
+                    mBeanView.include(request, response);
+            }
+            if (mode.equals("timeframe")) {
+                Vector <StatsGraph> GraphVector = run.BuildAllOnTimeFrame(14, timeFrame);
+                Set <String> trackedBeans = run.GetTrackedBeansPretty();
+                request.setAttribute("GraphVector", GraphVector);
+                request.setAttribute("trackedBeans", trackedBeans);
+                if (WindowState.MINIMIZED.equals(request.getWindowState())) {
+                    return;
+                } else
+                    timeFrameView.include(request, response);
+            }
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+
+        //if (WindowState.MINIMIZED.equals(request.getWindowState())) {
+        //return;
+        //}
+
+        //if (WindowState.NORMAL.equals(request.getWindowState())) {
+        //	normalView.include(request, response);
+        //} else {
+        //	maximizedView.include(request, response);
+        //}
+
+    }
+
+    protected void doHelp(RenderRequest renderRequest,
+                          RenderResponse renderResponse) throws PortletException, IOException {
+        helpView.include(renderRequest, renderResponse);
+    }
+
+    public void init(PortletConfig portletConfig) throws PortletException {
+        super.init(portletConfig);
+        mBeanView = portletConfig.getPortletContext().getRequestDispatcher(
+                                                                          MBEAN_JSP);
+        timeFrameView = portletConfig.getPortletContext().getRequestDispatcher(
+                                                                              TIMEFRAME_JSP);
+        maximizedView = portletConfig.getPortletContext().getRequestDispatcher(
+                                                                              MAXIMIZEDVIEW_JSP);
+        helpView = portletConfig.getPortletContext().getRequestDispatcher(
+                                                                         HELPVIEW_JSP);
+    }
+
+    public void destroy() {
+        mBeanView = null;
+        timeFrameView = null;
+        maximizedView = null;
+        helpView = null;
+        super.destroy();
+    }
+}

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/java/org/apache/geronimo/console/stats/StatsPortlet.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/java/org/apache/geronimo/console/stats/StatsPortlet.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/java/org/apache/geronimo/console/stats/StatsPortlet.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/geronimo-web.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/geronimo-web.xml?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/geronimo-web.xml (added)
+++ geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/geronimo-web.xml Fri Sep 28 12:34:24 2007
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+    
+       http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+<web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-1.2">
+    <environment>
+        <moduleId>
+            <groupId>org.apache.geronimo.plugins</groupId>
+            <artifactId>mrc-client</artifactId>
+            <version>1.0-SNAPSHOT</version>
+            <type>war</type>
+        </moduleId>
+        
+        <dependencies>
+            <dependency>
+                <groupId>org.apache.geronimo.plugins</groupId>
+                <artifactId>pluto-support</artifactId>
+            </dependency>
+        </dependencies>
+    </environment>
+    
+    <context-root>/StatsPortlet</context-root>
+    
+    <gbean name="StatsPortlet" class="org.apache.geronimo.pluto.AdminConsoleExtensionGBean">
+        <attribute name="pageTitle">Stats</attribute>
+        <attribute name="portletContext">/StatsPortlet</attribute>
+        <attribute name="portletList">[StatsPortlet]</attribute>
+    </gbean>
+</web-app>

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/geronimo-web.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/geronimo-web.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/geronimo-web.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/portlet.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/portlet.xml?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/portlet.xml (added)
+++ geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/portlet.xml Fri Sep 28 12:34:24 2007
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+    
+       http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+<portlet-app
+    xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"
+    version="1.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd
+                        http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd">
+
+    <portlet>
+        <description>Stats portlet app</description>
+        <portlet-name>StatsPortlet</portlet-name>
+        <display-name>Stats Portlet</display-name>
+        <portlet-class>org.apache.geronimo.console.stats.StatsPortlet</portlet-class>
+        <supports> <!-- Defines which views are avaliable [view,edit,help] -->
+            <mime-type>text/html</mime-type>
+            <portlet-mode>VIEW</portlet-mode>
+            <portlet-mode>HELP</portlet-mode>
+        </supports>
+        <portlet-info>
+            <title>Stats Portlet</title>
+        </portlet-info>
+    </portlet>
+    
+</portlet-app>

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/portlet.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/portlet.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/portlet.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsHelp.jsp
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsHelp.jsp?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsHelp.jsp (added)
+++ geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsHelp.jsp Fri Sep 28 12:34:24 2007
@@ -0,0 +1,22 @@
+<%--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+--%>
+
+<p><font face="Verdana" size="+1"><center><b>This is the help for the MRC Statistics.</b></center></font></p>
+
+<P>The stats page needs help documentation</P>
+
+<P>To return to the main Welcome panel select the "view" link from the header of this portlet.</P>

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsHelp.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsHelp.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsHelp.jsp
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsMaximized.jsp
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsMaximized.jsp?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsMaximized.jsp (added)
+++ geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsMaximized.jsp Fri Sep 28 12:34:24 2007
@@ -0,0 +1,17 @@
+<%--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+--%>
+<%@ include file="statsMbean.jsp" %>

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsMaximized.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsMaximized.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsMaximized.jsp
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsMbean.jsp
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsMbean.jsp?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsMbean.jsp (added)
+++ geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsMbean.jsp Fri Sep 28 12:34:24 2007
@@ -0,0 +1,86 @@
+<%--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+--%>
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
+<%@ taglib uri="http://java.sun.com/portlet" prefix="portlet"%>
+<%@ page import="org.apache.geronimo.console.stats.StatsGraph" %>
+<%@ page import="java.util.Vector" %>
+<%@ page import="java.util.Set" %>
+<%@ page import="org.apache.geronimo.console.util.PortletManager" %>
+<portlet:defineObjects/>
+
+<%
+Vector <StatsGraph> GraphVector = (Vector<StatsGraph>) request.getAttribute("GraphVector");
+Set <String> trackedBeans = (Set<String>) request.getAttribute("trackedBeans");
+Integer time = (Integer) request.getAttribute("time"); 
+%>
+<head>
+    <style type='text/css'>
+    <% for (StatsGraph graph : GraphVector) 
+            out.println(graph.getDiv());
+    %>
+    </style>
+    <script type='text/javascript' src='/dojo/dojo.js'>
+    </script>
+    <script type='text/javascript'>
+    var dojoConfig =
+    {
+        isDebug:true
+    };
+    dojo.require("dojo.collections.Store");
+    dojo.require("dojo.charting.Chart");
+    dojo.require('dojo.json');
+    <% for (StatsGraph graph : GraphVector)
+        out.println(graph.getJS());
+    %>
+    </script>
+</head>
+<table>
+    <tr>
+        <!-- Body -->
+        <td width="90%" align="left" valign="top">
+            <p>
+            <font face="Verdana" size="+1">
+            <left>
+            <b>By MBean | <a href="<portlet:actionURL portletMode="view"><portlet:param name="mode" value="timeframe" /><portlet:param name="time" value="60" /></portlet:actionURL>">By 
+            Timeframe</a></b>
+            </left>
+            </font>
+            </p>
+            |
+<% for (String Bean : trackedBeans) 
+{
+%>
+            <a href="<portlet:actionURL portletMode="view"><portlet:param name="mode" value="mbean" /><portlet:param name="time" value="60" /><portlet:param name="draw" value="all" /><portlet:param name="bean" value="<%=Bean%>" /></portlet:actionURL>"><%=Bean%></a> 
+            |
+<%
+}
+%>
+            
+<% for (StatsGraph graph : GraphVector) 
+{
+%>
+            <p>
+<%=graph.getDivImplement()%>
+            </p>
+<%
+}
+%>
+
+        </td>
+    </tr>
+</table>
+

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsMbean.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsMbean.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsMbean.jsp
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsTimeframe.jsp
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsTimeframe.jsp?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsTimeframe.jsp (added)
+++ geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsTimeframe.jsp Fri Sep 28 12:34:24 2007
@@ -0,0 +1,73 @@
+<%--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+--%>
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
+<%@ taglib uri="http://java.sun.com/portlet" prefix="portlet"%>
+<%@ page import="org.apache.geronimo.console.stats.StatsGraph" %>
+<%@ page import="java.util.Vector" %>
+<%@ page import="org.apache.geronimo.console.util.PortletManager" %>
+<portlet:defineObjects/>
+
+<%
+Vector <StatsGraph> GraphVector = (Vector<StatsGraph>) request.getAttribute("GraphVector");
+Integer time = (Integer) request.getAttribute("time"); 
+%>
+<head>
+    <style type='text/css'>
+    <% for (StatsGraph graph : GraphVector) 
+            out.println(graph.getDiv());
+    %>
+    </style>
+    <script type='text/javascript' src='/dojo/dojo.js'>
+    </script>
+    <script type='text/javascript'>
+    var dojoConfig =
+    {
+        isDebug:true
+    };
+    dojo.require("dojo.collections.Store");
+    dojo.require("dojo.charting.Chart");
+    dojo.require('dojo.json');
+    <% for (StatsGraph graph : GraphVector)
+        out.println(graph.getJS());
+    %>
+    </script>
+</head>
+<table>
+    <tr>
+        <!-- Body -->
+        <td width="90%" align="left" valign="top">
+            <p>
+            <font face="Verdana" size="+1">
+            <left>
+            <b><a href="<portlet:actionURL portletMode="view"><portlet:param name="bean" value="TomcatWebConnector" /><portlet:param name="mode" value="mbean" /><portlet:param name="time" value="60" /></portlet:actionURL>">By 
+            MBean</a> | By Timeframe</b>
+            </left>
+            </font>
+            </p>
+            <a href="<portlet:actionURL portletMode="view"><portlet:param name="time" value="60" /><portlet:param name="mode" value="timeframe" /></portlet:actionURL>">Hour</a> 
+            | <a href="<portlet:actionURL portletMode="view"><portlet:param name="time" value="1440" /><portlet:param name="mode" value="timeframe" /></portlet:actionURL>">Day</a> 
+            | <a href="<portlet:actionURL portletMode="view"><portlet:param name="time" value="10080" /><portlet:param name="mode" value="timeframe" /></portlet:actionURL>">Week</a> 
+            | <a href="<portlet:actionURL portletMode="view"><portlet:param name="time" value="43200" /><portlet:param name="mode" value="timeframe" /></portlet:actionURL>">30 
+            day</a>
+            <% for (StatsGraph graph : GraphVector) 
+                out.println("<p>"+graph.getDivImplement()+"</p>");
+            %>
+
+        </td>
+    </tr>
+</table>
+

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsTimeframe.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsTimeframe.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/view/statsTimeframe.jsp
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/web.xml?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/web.xml (added)
+++ geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/web.xml Fri Sep 28 12:34:24 2007
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+    
+       http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
+                         "http://java.sun.com/dtd/web-app_2_3.dtd">
+<web-app>
+
+    <servlet>
+        <servlet-name>StatsPortlet</servlet-name>
+        <servlet-class>org.apache.pluto.core.PortletServlet</servlet-class>
+        <init-param>
+            <param-name>portlet-name</param-name>
+            <param-value>StatsPortlet</param-value>
+        </init-param>
+        <load-on-startup>1</load-on-startup>
+    </servlet>
+    <servlet-mapping>
+        <servlet-name>StatsPortlet</servlet-name>
+        <url-pattern>/PlutoInvoker/StatsPortlet</url-pattern>
+    </servlet-mapping>
+    
+</web-app>

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-client/src/main/webapp/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/sandbox/monitoring/mrc-server/LICENSE.txt
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-server/LICENSE.txt?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-server/LICENSE.txt (added)
+++ geronimo/sandbox/monitoring/mrc-server/LICENSE.txt Fri Sep 28 12:34:24 2007
@@ -0,0 +1,203 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+

Propchange: geronimo/sandbox/monitoring/mrc-server/LICENSE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-server/LICENSE.txt
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-server/LICENSE.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/sandbox/monitoring/mrc-server/MRC.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-server/MRC.xml?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-server/MRC.xml (added)
+++ geronimo/sandbox/monitoring/mrc-server/MRC.xml Fri Sep 28 12:34:24 2007
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+    
+       http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+<module xmlns="http://geronimo.apache.org/xml/ns/deployment">
+    <environment>
+        <moduleId>
+            <groupId>org.apache.geronimo.monitor</groupId>
+            <artifactId>MRC</artifactId>
+            <version>1.0</version>
+        </moduleId>
+        <dependencies>
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-j2ee-management_1.1_spec</artifactId>
+                <version>1.0</version>
+                <type>jar</type>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-ejb_3.0_spec</artifactId>
+                <version>1.0</version>
+                <type>jar</type>
+            </dependency>
+            <!--dependency>
+                <groupId>org.apache.geronimo.modules</groupId>
+                <artifactId>geronimo-management</artifactId>
+                <version>2.0.2-SNAPSHOT</version>
+                <type>jar</type>
+            </dependency-->
+            <dependency>
+                <groupId>org.apache.geronimo.configs</groupId>
+                <artifactId>j2ee-server</artifactId>
+                <version>2.1-SNAPSHOT</version>
+                <type>car</type>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.modules</groupId>
+                <artifactId>geronimo-j2ee</artifactId>
+                <version>2.1-SNAPSHOT</version>
+                <type>jar</type>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.modules</groupId>
+                <artifactId>geronimo-system</artifactId>
+                <version>2.1-SNAPSHOT</version>
+                <type>jar</type>
+            </dependency>
+        </dependencies>
+    </environment>
+    <gbean name="MasterRemoteControl" class="org.apache.geronimo.monitor.MasterRemoteControl" />
+</module>

Propchange: geronimo/sandbox/monitoring/mrc-server/MRC.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-server/MRC.xml
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/monitoring/mrc-server/MRC.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-server/MRC.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/sandbox/monitoring/mrc-server/NOTICE.txt
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-server/NOTICE.txt?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-server/NOTICE.txt (added)
+++ geronimo/sandbox/monitoring/mrc-server/NOTICE.txt Fri Sep 28 12:34:24 2007
@@ -0,0 +1,5 @@
+Apache Geronimo 
+Copyright 2003-2006 The Apache Software Foundation
+
+This product includes software developed by
+The Apache Software Foundation (http://www.apache.org/).

Propchange: geronimo/sandbox/monitoring/mrc-server/NOTICE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-server/NOTICE.txt
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-server/NOTICE.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/sandbox/monitoring/mrc-server/mrc-ear/LICENSE.txt
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-server/mrc-ear/LICENSE.txt?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-server/mrc-ear/LICENSE.txt (added)
+++ geronimo/sandbox/monitoring/mrc-server/mrc-ear/LICENSE.txt Fri Sep 28 12:34:24 2007
@@ -0,0 +1,203 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+

Propchange: geronimo/sandbox/monitoring/mrc-server/mrc-ear/LICENSE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-server/mrc-ear/LICENSE.txt
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-server/mrc-ear/LICENSE.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/sandbox/monitoring/mrc-server/mrc-ear/NOTICE.txt
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-server/mrc-ear/NOTICE.txt?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-server/mrc-ear/NOTICE.txt (added)
+++ geronimo/sandbox/monitoring/mrc-server/mrc-ear/NOTICE.txt Fri Sep 28 12:34:24 2007
@@ -0,0 +1,5 @@
+Apache Geronimo 
+Copyright 2003-2006 The Apache Software Foundation
+
+This product includes software developed by
+The Apache Software Foundation (http://www.apache.org/).

Propchange: geronimo/sandbox/monitoring/mrc-server/mrc-ear/NOTICE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-server/mrc-ear/NOTICE.txt
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-server/mrc-ear/NOTICE.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/sandbox/monitoring/mrc-server/mrc-ear/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-server/mrc-ear/pom.xml?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-server/mrc-ear/pom.xml (added)
+++ geronimo/sandbox/monitoring/mrc-server/mrc-ear/pom.xml Fri Sep 28 12:34:24 2007
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+     http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.geronimo.plugins.mrc</groupId>
+        <artifactId>mrc-server</artifactId>
+        <version>1.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>mrc-server-ear</artifactId>
+    <name>Geronimo Stats :: Server :: EAR</name>
+    <packaging>ear</packaging>
+
+    <description>Geronimo Stats. EAR Module</description>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.geronimo.plugins.mrc</groupId>
+            <artifactId>mrc-server-ejb</artifactId>
+            <version>1.0-SNAPSHOT</version>
+            <type>ejb</type>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-ear-plugin</artifactId>
+                <configuration>
+                    <displayName>Geronimo Sample EAR for MRC</displayName>
+                    <description>Geronimo Sample EAR for MRC</description>
+                    <version>5</version>
+                    <modules>
+                        <ejbModule>
+                            <groupId>org.apache.geronimo.plugins.mrc</groupId>
+                            <artifactId>mrc-server-ejb</artifactId>
+                            <bundleFileName>mrc-server-ejb-1.0-SNAPSHOT.jar</bundleFileName>
+                        </ejbModule>
+                    </modules>
+                </configuration>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>install</phase>
+                        <id>copy-parent-target</id>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                        <configuration>
+                            <tasks>
+                                <echo>Copying ${pom.build.finalName}.ear file to parent</echo>
+                                <copy file ="${project.build.directory}/${pom.artifactId}-${pom.version}.ear" todir="${pom.basedir}/.." failonerror="false" overwrite="true" />
+                            </tasks>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>
+

Propchange: geronimo/sandbox/monitoring/mrc-server/mrc-ear/pom.xml
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/monitoring/mrc-server/mrc-ear/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-server/mrc-ear/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/sandbox/monitoring/mrc-server/mrc-ear/readme.txt
URL: http://svn.apache.org/viewvc/geronimo/sandbox/monitoring/mrc-server/mrc-ear/readme.txt?rev=580468&view=auto
==============================================================================
--- geronimo/sandbox/monitoring/mrc-server/mrc-ear/readme.txt (added)
+++ geronimo/sandbox/monitoring/mrc-server/mrc-ear/readme.txt Fri Sep 28 12:34:24 2007
@@ -0,0 +1,12 @@
+HOW TO COMPILE AND DEPLOY
+    1. run `mvn clean install`
+    2. Deploy the JAR file present in the MRC-ejb/target folder along with 
+       MRC.xml present at the home directory into Geronimo.
+       2a. Navigate to <GERONIMO_HOME>/bin/ directory
+       2b. Give it this command
+
+          java -jar ./deployer.jar -u system -p manager deploy <path-to-jar> <path-to-xml>
+
+
+**The snapshot information for the server will reside under the folder
+    <GERONIMO_HOME>/var/

Propchange: geronimo/sandbox/monitoring/mrc-server/mrc-ear/readme.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/monitoring/mrc-server/mrc-ear/readme.txt
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/monitoring/mrc-server/mrc-ear/readme.txt
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/monitoring/mrc-server/mrc-ear/readme.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain