Updated Branches: refs/heads/trunk ad3bc8efb -> 0b04d90e3
AMBARI-4231 Storm: Update Dashboard / Services to support Storm. (Denys Buzhor vs ababiichuk) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/0b04d90e Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/0b04d90e Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/0b04d90e Branch: refs/heads/trunk Commit: 0b04d90e3e6ca19030b2fdc37333368320fd9055 Parents: ad3bc8e Author: aBabiichuk <[email protected]> Authored: Mon Jan 6 20:00:31 2014 +0200 Committer: aBabiichuk <[email protected]> Committed: Mon Jan 6 20:00:31 2014 +0200 ---------------------------------------------------------------------- ambari-web/app/assets/data/services/HDP2/services.json | 7 +++++++ ambari-web/app/models/service.js | 6 ++++-- 2 files changed, 11 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/0b04d90e/ambari-web/app/assets/data/services/HDP2/services.json ---------------------------------------------------------------------- diff --git a/ambari-web/app/assets/data/services/HDP2/services.json b/ambari-web/app/assets/data/services/HDP2/services.json index 7297c95..7147630 100644 --- a/ambari-web/app/assets/data/services/HDP2/services.json +++ b/ambari-web/app/assets/data/services/HDP2/services.json @@ -77,6 +77,13 @@ "cluster_name" : "cl", "service_name" : "ZOOKEEPER" } + }, + { + "href" : "http://192.168.56.101:8080/api/v1/clusters/cl/services/STORM", + "ServiceInfo" : { + "cluster_name" : "cl", + "service_name" : "STORM" + } } ] } \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ambari/blob/0b04d90e/ambari-web/app/models/service.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/models/service.js b/ambari-web/app/models/service.js index 09a3256..5be8095 100644 --- a/ambari-web/app/models/service.js +++ b/ambari-web/app/models/service.js @@ -179,7 +179,8 @@ App.Service.DisplayNames = { 'GANGLIA': 'Ganglia', 'NAGIOS': 'Nagios', 'HUE': 'Hue', - 'FLUME': 'Flume' + 'FLUME': 'Flume', + 'STORM': 'Storm' }; App.Service.servicesSortOrder = [ @@ -199,7 +200,8 @@ App.Service.servicesSortOrder = [ 'ZOOKEEPER', 'PIG', 'SQOOP', - 'HUE' + 'HUE', + 'STORM' ]; App.Service.FIXTURES = [];
