* stats.jsp: Link to graph page, not single image

This commit is contained in:
zzz
2012-11-13 20:40:15 +00:00
parent ea00c0af50
commit 4fdf1c2411
3 changed files with 17 additions and 6 deletions

View File

@ -215,11 +215,12 @@ public class StatsGenerator {
buf.append(")");
}
if (curRate.getSummaryListener() != null) {
buf.append(" <a href=\"viewstat.jsp?stat=").append(name);
buf.append("&amp;period=").append(periods[i]);
buf.append(" <a href=\"graph?stat=").append(name)
.append('.').append(periods[i]);
buf.append("\">").append(_("Graph Data")).append("</a> - ");
buf.append(" <a href=\"viewstat.jsp?stat=").append(name);
buf.append("&amp;period=").append(periods[i]).append("&amp;showEvents=true\">").append(_("Graph Event Count")).append("</a> - ");
buf.append(" <a href=\"graph?stat=").append(name)
.append('.').append(periods[i]);
buf.append("&amp;showEvents=true\">").append(_("Graph Event Count")).append("</a> - ");
buf.append("<a href=\"viewstat.jsp?stat=").append(name);
buf.append("&amp;period=").append(periods[i]);
buf.append("&amp;format=xml\">").append(_("Export Data as XML")).append("</a>");