Index: CHANGES.txt =================================================================== --- CHANGES.txt (revision 1517207) +++ CHANGES.txt (working copy) @@ -12,6 +12,8 @@ NEW FEATURES + CHUKWA-695. Added ability to export widgets from graph explorer. (Eric Yang) + CHUKWA-581. Added support for custom reducer package name. (Ivy Tang via Eric Yang) CHUKWA-669. JMX Adaptor. (shreyas subramanya via asrabkin) Index: src/main/java/org/apache/hadoop/chukwa/datastore/WidgetStore.java =================================================================== --- src/main/java/org/apache/hadoop/chukwa/datastore/WidgetStore.java (revision 1515057) +++ src/main/java/org/apache/hadoop/chukwa/datastore/WidgetStore.java (working copy) @@ -63,7 +63,7 @@ try { fs = FileSystem.get(config); FSDataOutputStream out = fs.create(widgetFile,true); - out.writeUTF(widget.deserialize().toString()); + out.writeBytes(widget.deserialize().toString()); out.close(); } catch (IOException ex) { log.error(ExceptionUtil.getStackTrace(ex)); Index: src/main/web/hicc/index.jsp =================================================================== --- src/main/web/hicc/index.jsp (revision 1515057) +++ src/main/web/hicc/index.jsp (working copy) @@ -87,6 +87,7 @@ + @@ -105,6 +106,7 @@ + + @@ -165,33 +307,49 @@ Table
- Column Family
- Column
- Row
- - Y-axis Min:
- Y-axis Max:
+ + + + + + + + + +
+ + + +
+ + + +
+ Index: NOTICE.txt =================================================================== --- NOTICE.txt (revision 1515057) +++ NOTICE.txt (working copy) @@ -58,3 +58,5 @@ This product includes JUnit Copyright (c) 2006 JUnit.org +This product includes formalize +Copyright (c) 2012 Nathan Smith, http://formalize.me/