Repository: tez Updated Branches: refs/heads/master b3e20c7c6 -> ea05361f8
TEZ-3771. Tez UI: WASB/ADLS counters should be listed on the Tez UI (sree) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/ea05361f Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/ea05361f Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/ea05361f Branch: refs/heads/master Commit: ea05361f889e8916e10052bcb173f3170d24b8ce Parents: b3e20c7 Author: Sreenath Somarajapuram <[email protected]> Authored: Wed Jun 28 19:47:15 2017 +0530 Committer: Sreenath Somarajapuram <[email protected]> Committed: Wed Jun 28 19:47:15 2017 +0530 ---------------------------------------------------------------------- tez-ui/src/main/webapp/bower-shrinkwrap.json | 3 ++- tez-ui/src/main/webapp/bower.json | 2 +- tez-ui/src/main/webapp/config/default-app-conf.js | 18 ++++++++++++++++++ 3 files changed, 21 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/ea05361f/tez-ui/src/main/webapp/bower-shrinkwrap.json ---------------------------------------------------------------------- diff --git a/tez-ui/src/main/webapp/bower-shrinkwrap.json b/tez-ui/src/main/webapp/bower-shrinkwrap.json index 6daaaeb..357d576 100644 --- a/tez-ui/src/main/webapp/bower-shrinkwrap.json +++ b/tez-ui/src/main/webapp/bower-shrinkwrap.json @@ -54,7 +54,8 @@ "0.4.16": "142c4066a5458bef9dfcb92b70152b9c01d79188" }, "https://github.com/sreenaths/more-js.git": { - "0.8.6": "f1d9ccdaf7ff74c26b6ee341067a5a5ef33bd64a" + "0.8.6": "f1d9ccdaf7ff74c26b6ee341067a5a5ef33bd64a", + "0.8.8": "0.8.8" }, "https://github.com/sreenaths/snippet-ss.git": { "1.11.0": "c1abc566f4e001b7f1939b6dbdd911eadc969cf9" http://git-wip-us.apache.org/repos/asf/tez/blob/ea05361f/tez-ui/src/main/webapp/bower.json ---------------------------------------------------------------------- diff --git a/tez-ui/src/main/webapp/bower.json b/tez-ui/src/main/webapp/bower.json index a803d73..56a69f3 100644 --- a/tez-ui/src/main/webapp/bower.json +++ b/tez-ui/src/main/webapp/bower.json @@ -10,7 +10,7 @@ "ember-qunit-notifications": "0.1.0", "loader.js": "3.3.0", "qunit": "1.19.0", - "more-js": "0.8.6", + "more-js": "0.8.8", "bootstrap": "3.3.6", "font-awesome": "4.5.0", "jquery": "2.1.4", http://git-wip-us.apache.org/repos/asf/tez/blob/ea05361f/tez-ui/src/main/webapp/config/default-app-conf.js ---------------------------------------------------------------------- diff --git a/tez-ui/src/main/webapp/config/default-app-conf.js b/tez-ui/src/main/webapp/config/default-app-conf.js index 71c4ca7..388ca4c 100644 --- a/tez-ui/src/main/webapp/config/default-app-conf.js +++ b/tez-ui/src/main/webapp/config/default-app-conf.js @@ -111,6 +111,24 @@ module.exports = { // Tez App configurations counterGroupName: 'org.apache.tez.common.counters.FileSystemCounter', }, + //WASB/ADLS counters + { + counterName: 'WASB_BYTES_READ', + counterGroupName: 'org.apache.tez.common.counters.FileSystemCounter', + }, + { + counterName: 'WASB_BYTES_WRITTEN', + counterGroupName: 'org.apache.tez.common.counters.FileSystemCounter', + }, + { + counterName: 'ADL_BYTES_READ', + counterGroupName: 'org.apache.tez.common.counters.FileSystemCounter', + }, + { + counterName: 'ADL_BYTES_WRITTEN', + counterGroupName: 'org.apache.tez.common.counters.FileSystemCounter', + }, + // Task Counters { counterName: "NUM_SPECULATIONS",
