Author: yusaku
Date: Fri Jan 11 02:33:53 2013
New Revision: 1431827

URL: http://svn.apache.org/viewvc?rev=1431827&view=rev
Log:
AMBARI-1125. Graphs "degrade" over time. (Srimanth Gunturi via yusaku)

Modified:
    incubator/ambari/trunk/CHANGES.txt
    
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/cpu.js
    
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/load.js
    
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/memory.js
    
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/network.js
    incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/cpu.js
    incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/disk.js
    incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/load.js
    incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/memory.js
    incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/network.js
    incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/processes.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/cluster_requests.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/hlog_split_size.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/hlog_split_time.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_queuesize.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_regions.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_rw_requests.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/block_status.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/file_operations.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/gc.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/io.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/jvm_heap.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/jvm_threads.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/rpc.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/space_utilization.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/gc.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jobs_status.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jvm_heap.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jvm_threads.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/map_slots.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/reduce_slots.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/rpc.js
    
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/tasks_running_waiting.js

Modified: incubator/ambari/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Fri Jan 11 02:33:53 2013
@@ -675,6 +675,8 @@ AMBARI-666 branch (unreleased changes)
 
   BUG FIXES
 
+  AMBARI-1125. Graphs "degrade" over time. (Srimanth Gunturi via yusaku)
+
   AMBARI-1124. Boxes on services page need min height or something to keep
   it from visually cutting off info. (Srimanth Gunturi via yusaku)
 

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/cpu.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/cpu.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/cpu.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/cpu.js
 Fri Jan 11 02:33:53 2013
@@ -32,7 +32,7 @@ App.ChartClusterMetricsCPU = App.ChartLi
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}?fields=metrics/cpu[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/cluster_metrics/cpu_1hr.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   title: "CPU Usage",
   yAxisFormatter: App.ChartLinearTimeView.PercentageFormatter,

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/load.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/load.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/load.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/load.js
 Fri Jan 11 02:33:53 2013
@@ -34,7 +34,7 @@ App.ChartClusterMetricsLoad = App.ChartL
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}?fields=metrics/load[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/cluster_metrics/load_1hr.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
   renderer: 'line',
   title: "Cluster Load",
   

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/memory.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/memory.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/memory.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/memory.js
 Fri Jan 11 02:33:53 2013
@@ -32,7 +32,7 @@ App.ChartClusterMetricsMemory = App.Char
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}?fields=metrics/memory[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/cluster_metrics/memory_1hr.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
   title: "Memory Usage",
   yAxisFormatter: App.ChartLinearTimeView.BytesFormatter,
   renderer: 'line',

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/network.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/network.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/network.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/cluster_metrics/network.js
 Fri Jan 11 02:33:53 2013
@@ -33,7 +33,7 @@ App.ChartClusterMetricsNetwork = App.Cha
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}?fields=metrics/network[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/cluster_metrics/network_1hr.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
   title: "Network Usage",
   yAxisFormatter: App.ChartLinearTimeView.BytesFormatter,
   renderer: 'line',

Modified: incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/cpu.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/cpu.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/cpu.js 
(original)
+++ incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/cpu.js Fri 
Jan 11 02:33:53 2013
@@ -37,7 +37,7 @@ App.ChartHostMetricsCPU = App.ChartLinea
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: this.get('content').get('hostName')
     }, "/data/hosts/metrics/cpu.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/disk.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/disk.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/disk.js 
(original)
+++ incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/disk.js Fri 
Jan 11 02:33:53 2013
@@ -36,7 +36,7 @@ App.ChartHostMetricsDisk = App.ChartLine
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: this.get('content').get('hostName')
     }, "/data/hosts/metrics/disk.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/load.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/load.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/load.js 
(original)
+++ incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/load.js Fri 
Jan 11 02:33:53 2013
@@ -35,7 +35,7 @@ App.ChartHostMetricsLoad = App.ChartLine
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: this.get('content').get('hostName')
     }, "/data/hosts/metrics/load.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/memory.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/memory.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/memory.js 
(original)
+++ incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/memory.js Fri 
Jan 11 02:33:53 2013
@@ -36,7 +36,7 @@ App.ChartHostMetricsMemory = App.ChartLi
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: this.get('content').get('hostName')
     }, "/data/hosts/metrics/memory.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/network.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/network.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/network.js 
(original)
+++ incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/network.js 
Fri Jan 11 02:33:53 2013
@@ -36,7 +36,7 @@ App.ChartHostMetricsNetwork = App.ChartL
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: this.get('content').get('hostName')
     }, "/data/hosts/metrics/network.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/processes.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/processes.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/processes.js 
(original)
+++ incubator/ambari/trunk/ambari-web/app/views/main/host/metrics/processes.js 
Fri Jan 11 02:33:53 2013
@@ -35,7 +35,7 @@ App.ChartHostMetricsProcesses = App.Char
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: this.get('content').get('hostName')
     }, "/data/hosts/metrics/processes.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/cluster_requests.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/cluster_requests.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/cluster_requests.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/cluster_requests.js
 Fri Jan 11 02:33:53 2013
@@ -34,7 +34,7 @@ App.ChartServiceMetricsHBASE_ClusterRequ
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}/services/HBASE/components/HBASE_MASTER?fields=metrics/hbase/master/cluster_requests[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/services/metrics/hbase/cluster_requests.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/hlog_split_size.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/hlog_split_size.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/hlog_split_size.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/hlog_split_size.js
 Fri Jan 11 02:33:53 2013
@@ -35,7 +35,7 @@ App.ChartServiceMetricsHBASE_HlogSplitSi
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}/services/HBASE/components/HBASE_MASTER?fields=metrics/hbase/master/splitSize_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/services/metrics/hbase/hlog_split_size.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/hlog_split_time.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/hlog_split_time.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/hlog_split_time.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/hlog_split_time.js
 Fri Jan 11 02:33:53 2013
@@ -35,7 +35,7 @@ App.ChartServiceMetricsHBASE_HlogSplitTi
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}/services/HBASE/components/HBASE_MASTER?fields=metrics/hbase/master/splitTime_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/services/metrics/hbase/hlog_split_time.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_queuesize.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_queuesize.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_queuesize.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_queuesize.js
 Fri Jan 11 02:33:53 2013
@@ -34,7 +34,7 @@ App.ChartServiceMetricsHBASE_RegionServe
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}/services/HBASE/components/HBASE_REGIONSERVER?fields=metrics/hbase/regionserver/flushQueueSize[{fromSeconds},{toSeconds},{stepSeconds}],metrics/hbase/regionserver/compactionQueueSize[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/services/metrics/hbase/regionserver_queuesize.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_regions.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_regions.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_regions.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_regions.js
 Fri Jan 11 02:33:53 2013
@@ -34,7 +34,7 @@ App.ChartServiceMetricsHBASE_RegionServe
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}/services/HBASE/components/HBASE_REGIONSERVER?fields=metrics/hbase/regionserver/regions[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/services/metrics/hbase/regionserver_regions.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_rw_requests.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_rw_requests.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_rw_requests.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hbase/regionserver_rw_requests.js
 Fri Jan 11 02:33:53 2013
@@ -34,7 +34,7 @@ App.ChartServiceMetricsHBASE_RegionServe
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}/services/HBASE/components/HBASE_REGIONSERVER?fields=metrics/hbase/regionserver/readRequestsCount[{fromSeconds},{toSeconds},{stepSeconds}],metrics/hbase/regionserver/writeRequestsCount[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/services/metrics/hbase/regionserver_rw_requests.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/block_status.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/block_status.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/block_status.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/block_status.js
 Fri Jan 11 02:33:53 2013
@@ -37,7 +37,7 @@ App.ChartServiceMetricsHDFS_BlockStatus 
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: nameNodeHostName
     }, "/data/services/metrics/hdfs/block_status.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/file_operations.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/file_operations.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/file_operations.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/file_operations.js
 Fri Jan 11 02:33:53 2013
@@ -37,7 +37,7 @@ App.ChartServiceMetricsHDFS_FileOperatio
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: nameNodeHostName
     }, "/data/services/metrics/hdfs/file_operations.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/gc.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/gc.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/gc.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/gc.js
 Fri Jan 11 02:33:53 2013
@@ -38,7 +38,7 @@ App.ChartServiceMetricsHDFS_GC = App.Cha
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: nameNodeHostName
     }, "/data/services/metrics/hdfs/gc.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/io.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/io.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/io.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/io.js
 Fri Jan 11 02:33:53 2013
@@ -35,7 +35,7 @@ App.ChartServiceMetricsHDFS_IO = App.Cha
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}/services/HDFS/components/DATANODE?fields=metrics/dfs/datanode/bytes_written[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/datanode/bytes_read[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/services/metrics/hdfs/io.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/jvm_heap.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/jvm_heap.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/jvm_heap.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/jvm_heap.js
 Fri Jan 11 02:33:53 2013
@@ -38,7 +38,7 @@ App.ChartServiceMetricsHDFS_JVMHeap = Ap
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: nameNodeHostName
     }, "/data/services/metrics/hdfs/jvm_heap.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/jvm_threads.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/jvm_threads.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/jvm_threads.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/jvm_threads.js
 Fri Jan 11 02:33:53 2013
@@ -37,7 +37,7 @@ App.ChartServiceMetricsHDFS_JVMThreads =
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: nameNodeHostName
     }, "/data/services/metrics/hdfs/jvm_threads.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/rpc.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/rpc.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/rpc.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/rpc.js
 Fri Jan 11 02:33:53 2013
@@ -38,7 +38,7 @@ App.ChartServiceMetricsHDFS_RPC = App.Ch
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: nameNodeHostName
     }, "/data/services/metrics/hdfs/rpc.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/space_utilization.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/space_utilization.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/space_utilization.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/hdfs/space_utilization.js
 Fri Jan 11 02:33:53 2013
@@ -38,7 +38,7 @@ App.ChartServiceMetricsHDFS_SpaceUtiliza
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: nameNodeHostName
     }, "/data/services/metrics/hdfs/space_utilization.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/gc.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/gc.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/gc.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/gc.js
 Fri Jan 11 02:33:53 2013
@@ -38,7 +38,7 @@ App.ChartServiceMetricsMapReduce_GC = Ap
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: jtHostName
     }, "/data/services/metrics/mapreduce/gc.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jobs_status.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jobs_status.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jobs_status.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jobs_status.js
 Fri Jan 11 02:33:53 2013
@@ -34,7 +34,7 @@ App.ChartServiceMetricsMapReduce_JobsSta
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}/services/MAPREDUCE/components/JOBTRACKER?fields=metrics/mapred/jobtracker/jobs_completed[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/jobs_preparing[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/jobs_failed[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/jobs_submitted[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/jobs_failed[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/jobs_running[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/services/metrics/mapreduce/jobs_status.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jvm_heap.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jvm_heap.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jvm_heap.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jvm_heap.js
 Fri Jan 11 02:33:53 2013
@@ -38,7 +38,7 @@ App.ChartServiceMetricsMapReduce_JVMHeap
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: jtHostName
     }, "/data/services/metrics/mapreduce/jvm_heap.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jvm_threads.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jvm_threads.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jvm_threads.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/jvm_threads.js
 Fri Jan 11 02:33:53 2013
@@ -37,7 +37,7 @@ App.ChartServiceMetricsMapReduce_JVMThre
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: jtHostName
     }, "/data/services/metrics/mapreduce/jvm_threads.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/map_slots.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/map_slots.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/map_slots.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/map_slots.js
 Fri Jan 11 02:33:53 2013
@@ -34,7 +34,7 @@ App.ChartServiceMetricsMapReduce_MapSlot
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}/services/MAPREDUCE/components/JOBTRACKER?fields=metrics/mapred/jobtracker/occupied_map_slots[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/reserved_map_slots[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/services/metrics/mapreduce/map_slots.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/reduce_slots.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/reduce_slots.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/reduce_slots.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/reduce_slots.js
 Fri Jan 11 02:33:53 2013
@@ -34,7 +34,7 @@ App.ChartServiceMetricsMapReduce_ReduceS
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}/services/MAPREDUCE/components/JOBTRACKER?fields=metrics/mapred/jobtracker/occupied_reduce_slots[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/reserved_reduce_slots[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/services/metrics/mapreduce/reduce_slots.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/rpc.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/rpc.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/rpc.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/rpc.js
 Fri Jan 11 02:33:53 2013
@@ -38,7 +38,7 @@ App.ChartServiceMetricsMapReduce_RPC = A
       clusterName: App.router.get('clusterController.clusterName'),
       hostName: jtHostName
     }, "/data/services/metrics/mapreduce/rpc.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];

Modified: 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/tasks_running_waiting.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/tasks_running_waiting.js?rev=1431827&r1=1431826&r2=1431827&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/tasks_running_waiting.js
 (original)
+++ 
incubator/ambari/trunk/ambari-web/app/views/main/service/info/metrics/mapreduce/tasks_running_waiting.js
 Fri Jan 11 02:33:53 2013
@@ -34,7 +34,7 @@ App.ChartServiceMetricsMapReduce_TasksRu
     return App.formatUrl(App.apiPrefix + 
"/clusters/{clusterName}/services/MAPREDUCE/components/JOBTRACKER?fields=metrics/mapred/jobtracker/running_maps[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/running_reduces[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/waiting_maps[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/waiting_reduces[{fromSeconds},{toSeconds},{stepSeconds}]",
 {
       clusterName: App.router.get('clusterController.clusterName')
     }, "/data/services/metrics/mapreduce/tasks_running_waiting.json");
-  }.property('App.router.clusterController.clusterName'),
+  }.property('App.router.clusterController.clusterName').volatile(),
 
   transformToSeries: function (jsonData) {
     var seriesArray = [];


Reply via email to