You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2018/04/13 19:08:51 UTC

[accumulo] branch master updated: Reverse sort order except for state and table name (#426)

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new df3c87c  Reverse sort order except for state and table name (#426)
df3c87c is described below

commit df3c87cf49d15f17ae36681a169b27e46005c765
Author: alerman <al...@gmail.com>
AuthorDate: Fri Apr 13 15:08:48 2018 -0400

    Reverse sort order except for state and table name (#426)
---
 .../apache/accumulo/monitor/templates/tables.ftl   | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/server/monitor/src/main/resources/org/apache/accumulo/monitor/templates/tables.ftl b/server/monitor/src/main/resources/org/apache/accumulo/monitor/templates/tables.ftl
index 3cd45db..74330fb 100644
--- a/server/monitor/src/main/resources/org/apache/accumulo/monitor/templates/tables.ftl
+++ b/server/monitor/src/main/resources/org/apache/accumulo/monitor/templates/tables.ftl
@@ -50,17 +50,17 @@
                       }
                     },
                     { "data": "tableState" },
-                    { "data": "tablets" },
-                    { "data": "offlineTablets" },
-                    { "data": "recs" },
-                    { "data": "recsInMemory" },
-                    { "data": "ingestRate" },
-                    { "data": "entriesRead" },
-                    { "data": "entriesReturned" },
-                    { "data": "holdTime" },
-                    { "data": "scansCombo" },
-                    { "data": "minorCombo" },
-                    { "data": "majorCombo" }
+                    { "data": "tablets", "orderSequence": [ "desc", "asc" ] },
+                    { "data": "offlineTablets", "orderSequence": [ "desc", "asc" ] },
+                    { "data": "recs", "orderSequence": [ "desc", "asc" ]  },
+                    { "data": "recsInMemory", "orderSequence": [ "desc", "asc" ] },
+                    { "data": "ingestRate", "orderSequence": [ "desc", "asc" ] },
+                    { "data": "entriesRead", "orderSequence": [ "desc", "asc" ] },
+                    { "data": "entriesReturned", "orderSequence": [ "desc", "asc" ] },
+                    { "data": "holdTime", "orderSequence": [ "desc", "asc" ] },
+                    { "data": "scansCombo", "orderSequence": [ "desc", "asc" ] },
+                    { "data": "minorCombo", "orderSequence": [ "desc", "asc" ] },
+                    { "data": "majorCombo", "orderSequence": [ "desc", "asc" ] }
                   ]
             } );
         });

-- 
To stop receiving notification emails like this one, please contact
ctubbsii@apache.org.