I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Verified Commit 3f44a555 authored by zzz's avatar zzz
Browse files

Console: Use local time on graphs by default, add UTC option

parent 86cbb2ed
No related branches found
No related tags found
No related merge requests found
...@@ -13,4 +13,6 @@ public class GraphConstants { ...@@ -13,4 +13,6 @@ public class GraphConstants {
public static final int DEFAULT_Y = 100; public static final int DEFAULT_Y = 100;
public static final int MAX_X = 2048; public static final int MAX_X = 2048;
public static final int MAX_Y = 1024; public static final int MAX_Y = 1024;
public static final String PROP_UTC = "routerconsole.graphUTC";
} }
...@@ -162,6 +162,9 @@ class SummaryRenderer { ...@@ -162,6 +162,9 @@ class SummaryRenderer {
def.setFont(RrdGraphDef.FONTTAG_LEGEND, legnd); def.setFont(RrdGraphDef.FONTTAG_LEGEND, legnd);
def.setFont(RrdGraphDef.FONTTAG_TITLE, large); def.setFont(RrdGraphDef.FONTTAG_TITLE, large);
boolean localTime = !_context.getBooleanProperty(GraphConstants.PROP_UTC);
if (localTime)
def.setTimeZone(SystemVersion.getSystemTimeZone(_context));
def.setTimeSpan(start/1000, end/1000); def.setTimeSpan(start/1000, end/1000);
def.setMinValue(0d); def.setMinValue(0d);
String name = _listener.getRate().getRateStat().getName(); String name = _listener.getRate().getRateStat().getName();
...@@ -248,23 +251,39 @@ class SummaryRenderer { ...@@ -248,23 +251,39 @@ class SummaryRenderer {
if (!hideLegend) { if (!hideLegend) {
// '07 Jul 21:09' with month name in the system locale // '07 Jul 21:09' with month name in the system locale
// TODO: Fix Arabic time display // TODO: Fix Arabic time display
SimpleDateFormat sdf = new SimpleDateFormat("dd MMM HH:mm");
Map<Long, String> events = ((RouterContext)_context).router().eventLog().getEvents(EventLog.STARTED, start); Map<Long, String> events = ((RouterContext)_context).router().eventLog().getEvents(EventLog.STARTED, start);
for (Map.Entry<Long, String> event : events.entrySet()) { if (localTime) {
long started = event.getKey().longValue(); for (Map.Entry<Long, String> event : events.entrySet()) {
if (started > start && started < end) { long started = event.getKey().longValue();
// String legend = _t("Restart") + ' ' + sdf.format(new Date(started)) + " UTC " + event.getValue() + "\\l"; if (started > start && started < end) {
String legend; String legend;
if (Messages.isRTL(lang)) { if (Messages.isRTL(lang)) {
// RTL languages // RTL languages
legend = _t("Restart") + ' ' + sdf.format(new Date(started)) + " - " + event.getValue() + "\\l"; legend = _t("Restart") + ' ' + DataHelper.formatTime(started) + " - " + event.getValue() + "\\l";
} else { } else {
legend = _t("Restart") + ' ' + sdf.format(new Date(started)) + " [" + event.getValue() + "]\\l"; legend = _t("Restart") + ' ' + DataHelper.formatTime(started) + " [" + event.getValue() + "]\\l";
}
def.vrule(started / 1000, RESTART_BAR_COLOR, legend, 2.0f);
} }
def.vrule(started / 1000, RESTART_BAR_COLOR, legend, 2.0f);
} }
def.comment(DataHelper.formatTime(start) + " — " + DataHelper.formatTime(end) + "\\r");
} else {
SimpleDateFormat sdf = new SimpleDateFormat("dd MMM HH:mm");
for (Map.Entry<Long, String> event : events.entrySet()) {
long started = event.getKey().longValue();
if (started > start && started < end) {
String legend;
if (Messages.isRTL(lang)) {
// RTL languages
legend = _t("Restart") + ' ' + sdf.format(new Date(started)) + " - " + event.getValue() + "\\l";
} else {
legend = _t("Restart") + ' ' + sdf.format(new Date(started)) + " [" + event.getValue() + "]\\l";
}
def.vrule(started / 1000, RESTART_BAR_COLOR, legend, 2.0f);
}
}
def.comment(sdf.format(new Date(start)) + " — " + sdf.format(new Date(end)) + " UTC\\r");
} }
def.comment(sdf.format(new Date(start)) + " — " + sdf.format(new Date(end)) + " UTC\\r");
} }
if (!showCredit) if (!showCredit)
def.setShowSignature(false); def.setShowSignature(false);
......
...@@ -32,6 +32,7 @@ public class GraphHelper extends FormHandler { ...@@ -32,6 +32,7 @@ public class GraphHelper extends FormHandler {
private int _refreshDelaySeconds; private int _refreshDelaySeconds;
private boolean _persistent; private boolean _persistent;
private boolean _graphHideLegend; private boolean _graphHideLegend;
private boolean _utc;
private String _stat; private String _stat;
private int _end; private int _end;
...@@ -131,6 +132,9 @@ public class GraphHelper extends FormHandler { ...@@ -131,6 +132,9 @@ public class GraphHelper extends FormHandler {
/** @since 0.9.32 */ /** @since 0.9.32 */
public void setHideLegend(String foo) { _graphHideLegend = true; } public void setHideLegend(String foo) { _graphHideLegend = true; }
/** @since 0.9.49 */
public void setUtc(String foo) { _utc = true; }
/** /**
* For single stat page * For single stat page
* @since 0.9 * @since 0.9
...@@ -157,6 +161,8 @@ public class GraphHelper extends FormHandler { ...@@ -157,6 +161,8 @@ public class GraphHelper extends FormHandler {
else if (title.equals("bw.recvRate")) hasRx = true; else if (title.equals("bw.recvRate")) hasRx = true;
} }
boolean hideLegend = _context.getProperty(PROP_LEGEND, DEFAULT_LEGEND); boolean hideLegend = _context.getProperty(PROP_LEGEND, DEFAULT_LEGEND);
// param is ignored, we get it from the property, but add it to defeat caching on change
boolean utc = _context.getBooleanProperty(PROP_UTC);
if (hasTx && hasRx && !_showEvents) { if (hasTx && hasRx && !_showEvents) {
// remove individual tx/rx graphs if displaying combined // remove individual tx/rx graphs if displaying combined
...@@ -170,6 +176,7 @@ public class GraphHelper extends FormHandler { ...@@ -170,6 +176,7 @@ public class GraphHelper extends FormHandler {
+ "&amp;c=" + (3 * _periodCount ) + "&amp;c=" + (3 * _periodCount )
+ "&amp;w=" + (3 * _width) + "&amp;w=" + (3 * _width)
+ "&amp;h=" + (3 * _height) + "&amp;h=" + (3 * _height)
+ (utc ? "&amp;utc" : "")
+ "\">"); + "\">");
String title = _t("Combined bandwidth graph"); String title = _t("Combined bandwidth graph");
_out.write("<img class=\"statimage\"" _out.write("<img class=\"statimage\""
...@@ -184,6 +191,8 @@ public class GraphHelper extends FormHandler { ...@@ -184,6 +191,8 @@ public class GraphHelper extends FormHandler {
// no legend, no height difference needed // no legend, no height difference needed
_out.write("&amp;height=" + (_height)); _out.write("&amp;height=" + (_height));
} }
if (utc)
_out.write("&amp;utc");
_out.write("&amp;hideLegend=" + hideLegend _out.write("&amp;hideLegend=" + hideLegend
+ "\" alt=\"" + title + "\" title=\"" + title + "\"></a>\n"); + "\" alt=\"" + title + "\" title=\"" + title + "\"></a>\n");
} }
...@@ -199,6 +208,7 @@ public class GraphHelper extends FormHandler { ...@@ -199,6 +208,7 @@ public class GraphHelper extends FormHandler {
+ "&amp;w=" + (3 * _width) + "&amp;w=" + (3 * _width)
+ "&amp;h=" + (3 * _height) + "&amp;h=" + (3 * _height)
+ (_showEvents ? "&amp;showEvents=1" : "") + (_showEvents ? "&amp;showEvents=1" : "")
+ (utc ? "&amp;utc" : "")
+ "\">"); + "\">");
_out.write("<img class=\"statimage\" border=\"0\"" _out.write("<img class=\"statimage\" border=\"0\""
+ " src=\"viewstat.jsp?stat=" + " src=\"viewstat.jsp?stat="
...@@ -209,6 +219,7 @@ public class GraphHelper extends FormHandler { ...@@ -209,6 +219,7 @@ public class GraphHelper extends FormHandler {
+ "&amp;width=" + _width + "&amp;width=" + _width
+ "&amp;height=" + _height + "&amp;height=" + _height
+ "&amp;hideLegend=" + hideLegend + "&amp;hideLegend=" + hideLegend
+ (utc ? "&amp;utc" : "")
+ "\" alt=\"" + title + "\" alt=\"" + title
+ "\" title=\"" + title + "\"></a>\n"); + "\" title=\"" + title + "\"></a>\n");
} }
...@@ -417,6 +428,12 @@ public class GraphHelper extends FormHandler { ...@@ -417,6 +428,12 @@ public class GraphHelper extends FormHandler {
if (hideLegend) if (hideLegend)
_out.write(HelperBase.CHECKED); _out.write(HelperBase.CHECKED);
_out.write(">" + _t("Do not show legend on graphs") + "</label></span><br><span class=\"nowrap\">\n<b>"); _out.write(">" + _t("Do not show legend on graphs") + "</label></span><br><span class=\"nowrap\">\n<b>");
_out.write(_t("UTC") + ":</b> ");
_out.write("<label><input type=\"checkbox\" class=\"optbox\" value=\"true\" name=\"utc\"");
boolean utc = _context.getBooleanProperty(PROP_UTC);
if (utc)
_out.write(HelperBase.CHECKED);
_out.write(">" + _t("Use UTC time on graphs") + "</label></span><br><span class=\"nowrap\">\n<b>");
_out.write(_t("Persistence") + _out.write(_t("Persistence") +
":</b> <label><input type=\"checkbox\" class=\"optbox\" value=\"true\" name=\"persistent\""); ":</b> <label><input type=\"checkbox\" class=\"optbox\" value=\"true\" name=\"persistent\"");
boolean persistent = _context.getBooleanPropertyDefaultTrue(SummaryListener.PROP_PERSISTENT); boolean persistent = _context.getBooleanPropertyDefaultTrue(SummaryListener.PROP_PERSISTENT);
...@@ -477,6 +494,7 @@ public class GraphHelper extends FormHandler { ...@@ -477,6 +494,7 @@ public class GraphHelper extends FormHandler {
_refreshDelaySeconds != _context.getProperty(PROP_REFRESH, DEFAULT_REFRESH) || _refreshDelaySeconds != _context.getProperty(PROP_REFRESH, DEFAULT_REFRESH) ||
_showEvents != _context.getBooleanProperty(PROP_EVENTS) || _showEvents != _context.getBooleanProperty(PROP_EVENTS) ||
_graphHideLegend != _context.getProperty(PROP_LEGEND, DEFAULT_LEGEND) || _graphHideLegend != _context.getProperty(PROP_LEGEND, DEFAULT_LEGEND) ||
_utc != _context.getBooleanProperty(PROP_UTC) ||
_persistent != _context.getBooleanPropertyDefaultTrue(SummaryListener.PROP_PERSISTENT)) { _persistent != _context.getBooleanPropertyDefaultTrue(SummaryListener.PROP_PERSISTENT)) {
Map<String, String> changes = new HashMap<String, String>(); Map<String, String> changes = new HashMap<String, String>();
changes.put(PROP_X, Integer.toString(_width)); changes.put(PROP_X, Integer.toString(_width));
...@@ -486,6 +504,7 @@ public class GraphHelper extends FormHandler { ...@@ -486,6 +504,7 @@ public class GraphHelper extends FormHandler {
changes.put(PROP_EVENTS, Boolean.toString(_showEvents)); changes.put(PROP_EVENTS, Boolean.toString(_showEvents));
changes.put(PROP_LEGEND, Boolean.toString(_graphHideLegend)); changes.put(PROP_LEGEND, Boolean.toString(_graphHideLegend));
changes.put(SummaryListener.PROP_PERSISTENT, Boolean.toString(_persistent)); changes.put(SummaryListener.PROP_PERSISTENT, Boolean.toString(_persistent));
changes.put(PROP_UTC, Boolean.toString(_utc));
boolean warn = _persistent != _context.getBooleanPropertyDefaultTrue(SummaryListener.PROP_PERSISTENT); boolean warn = _persistent != _context.getBooleanPropertyDefaultTrue(SummaryListener.PROP_PERSISTENT);
_context.router().saveConfig(changes, null); _context.router().saveConfig(changes, null);
addFormNotice(_t("Graph settings saved")); addFormNotice(_t("Graph settings saved"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment