diff --git a/web/src/main/webapp/features/agentChartGroup/agent-chart-group.directive.js b/web/src/main/webapp/features/agentChartGroup/agent-chart-group.directive.js
index 1e969fc37..9e6a6c7e4 100644
--- a/web/src/main/webapp/features/agentChartGroup/agent-chart-group.directive.js
+++ b/web/src/main/webapp/features/agentChartGroup/agent-chart-group.directive.js
@@ -19,7 +19,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/agentChartGroup/agentChartGroup.html?v=${buildTime}',
+ templateUrl: 'features/agentChartGroup/agentChartGroup.html?v=' + G_BUILD_TIME,
scope: {
namespace: '@'
},
diff --git a/web/src/main/webapp/features/agentInfo/agent-info.directive.js b/web/src/main/webapp/features/agentInfo/agent-info.directive.js
index 5761c633a..4cff332bc 100644
--- a/web/src/main/webapp/features/agentInfo/agent-info.directive.js
+++ b/web/src/main/webapp/features/agentInfo/agent-info.directive.js
@@ -16,7 +16,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/agentInfo/agentInfo.html?v=${buildTime}',
+ templateUrl: 'features/agentInfo/agentInfo.html?v' + G_BUILD_TIME,
link: function postLink(scope, element, attrs) {
// define private variables
@@ -27,7 +27,7 @@
broadcastToCpuLoadChart, broadcastToTpsChart, resetServerMetaDataDiv, initTooltip;
// initialize
- scope.agentInfoTemplate = 'features/agentInfo/agentInfoReady.html?v=${buildTime}';
+ scope.agentInfoTemplate = 'features/agentInfo/agentInfoReady.html?v=' + G_BUILD_TIME;
oAlertService = new AlertsService();
oProgressBarService = new ProgressBarService();
@@ -69,7 +69,7 @@
* scope event of agentInfo.initialize
*/
scope.$on('agentInfoDirective.initialize', function (event, navbarVoService, agent) {
- scope.agentInfoTemplate = 'features/agentInfo/agentInfoMain.html?v=${buildTime}';
+ scope.agentInfoTemplate = 'features/agentInfo/agentInfoMain.html?v=' + G_BUILD_TIME;
scope.agent = agent;
oNavbarVoService = navbarVoService;
scope.chartGroup = null;
diff --git a/web/src/main/webapp/features/agentList/agent-list.directive.js b/web/src/main/webapp/features/agentList/agent-list.directive.js
index 54ec6391c..afd68698e 100644
--- a/web/src/main/webapp/features/agentList/agent-list.directive.js
+++ b/web/src/main/webapp/features/agentList/agent-list.directive.js
@@ -15,7 +15,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/agentList/agentList.html?v=${buildTime}',
+ templateUrl: 'features/agentList/agentList.html?v=' + G_BUILD_TIME,
link: function postLink(scope, element, attrs) {
// define private variables of methods
diff --git a/web/src/main/webapp/features/configuration/alarm/alarm-group-member.directive.js b/web/src/main/webapp/features/configuration/alarm/alarm-group-member.directive.js
index 2e3de042c..563e5cd55 100644
--- a/web/src/main/webapp/features/configuration/alarm/alarm-group-member.directive.js
+++ b/web/src/main/webapp/features/configuration/alarm/alarm-group-member.directive.js
@@ -12,7 +12,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/configuration/alarm/alarmGroupMember.html?v=${buildTime}',
+ templateUrl: 'features/configuration/alarm/alarmGroupMember.html?v=' + G_BUILD_TIME,
scope: true,
link: function (scope, element) {
diff --git a/web/src/main/webapp/features/configuration/alarm/alarm-pinpoint-user.directive.js b/web/src/main/webapp/features/configuration/alarm/alarm-pinpoint-user.directive.js
index 62996cb72..65d1fc0fa 100644
--- a/web/src/main/webapp/features/configuration/alarm/alarm-pinpoint-user.directive.js
+++ b/web/src/main/webapp/features/configuration/alarm/alarm-pinpoint-user.directive.js
@@ -13,7 +13,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/configuration/alarm/alarmPinpointUser.html?v=${buildTime}',
+ templateUrl: 'features/configuration/alarm/alarmPinpointUser.html?v=' + G_BUILD_TIME,
scope: true,
link: function (scope, element) {
var $element = $(element);
diff --git a/web/src/main/webapp/features/configuration/alarm/alarm-rule.directive.js b/web/src/main/webapp/features/configuration/alarm/alarm-rule.directive.js
index bca4d9fe2..6dd36d96e 100644
--- a/web/src/main/webapp/features/configuration/alarm/alarm-rule.directive.js
+++ b/web/src/main/webapp/features/configuration/alarm/alarm-rule.directive.js
@@ -13,7 +13,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/configuration/alarm/alarmRule.html?v=${buildTime}',
+ templateUrl: 'features/configuration/alarm/alarmRule.html?v=' + G_BUILD_TIME,
scope: true,
link: function (scope, element) {
diff --git a/web/src/main/webapp/features/configuration/alarm/alarm-user-group.directive.js b/web/src/main/webapp/features/configuration/alarm/alarm-user-group.directive.js
index f196e1da3..d5f562ff7 100644
--- a/web/src/main/webapp/features/configuration/alarm/alarm-user-group.directive.js
+++ b/web/src/main/webapp/features/configuration/alarm/alarm-user-group.directive.js
@@ -13,7 +13,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/configuration/alarm/alarmUserGroup.html?v=${buildTime}',
+ templateUrl: 'features/configuration/alarm/alarmUserGroup.html?v=' + G_BUILD_TIME,
scope: true,
link: function (scope, element) {
scope.prefix = "alarmUserGroup_";
diff --git a/web/src/main/webapp/features/linkInfoDetails/link-info-details.directive.js b/web/src/main/webapp/features/linkInfoDetails/link-info-details.directive.js
index 6f1440ce4..e7048a74f 100644
--- a/web/src/main/webapp/features/linkInfoDetails/link-info-details.directive.js
+++ b/web/src/main/webapp/features/linkInfoDetails/link-info-details.directive.js
@@ -18,7 +18,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/linkInfoDetails/linkInfoDetails.html?v=${buildTime}',
+ templateUrl: 'features/linkInfoDetails/linkInfoDetails.html?v=' + G_BUILD_TIME,
scope: true,
link: function postLink(scope, element, attrs) {
diff --git a/web/src/main/webapp/features/navbar/navbar.directive.js b/web/src/main/webapp/features/navbar/navbar.directive.js
index 352487e34..739cfc1b5 100644
--- a/web/src/main/webapp/features/navbar/navbar.directive.js
+++ b/web/src/main/webapp/features/navbar/navbar.directive.js
@@ -18,7 +18,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/navbar/navbar.html?v=${buildTime}',
+ templateUrl: 'features/navbar/navbar.html?v=' + G_BUILD_TIME,
link: function (scope, element) {
// define private variables
diff --git a/web/src/main/webapp/features/nodeInfoDetails/node-info-details.directive.js b/web/src/main/webapp/features/nodeInfoDetails/node-info-details.directive.js
index 31dfba54e..73392af29 100644
--- a/web/src/main/webapp/features/nodeInfoDetails/node-info-details.directive.js
+++ b/web/src/main/webapp/features/nodeInfoDetails/node-info-details.directive.js
@@ -18,7 +18,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/nodeInfoDetails/nodeInfoDetails.html?v=${buildTime}',
+ templateUrl: 'features/nodeInfoDetails/nodeInfoDetails.html?v=' + G_BUILD_TIME,
scope: {},
link: function postLink(scope, element) {
diff --git a/web/src/main/webapp/features/serverMap/server-map.directive.js b/web/src/main/webapp/features/serverMap/server-map.directive.js
index 3d4bfbee2..5ee053b12 100644
--- a/web/src/main/webapp/features/serverMap/server-map.directive.js
+++ b/web/src/main/webapp/features/serverMap/server-map.directive.js
@@ -46,7 +46,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/serverMap/serverMap.html?v=${buildTime}',
+ templateUrl: 'features/serverMap/serverMap.html?v=' + G_BUILD_TIME,
link: function postLink(scope, element, attrs) {
// define private variables
diff --git a/web/src/main/webapp/features/sidebar/filter/filter-information.directive.js b/web/src/main/webapp/features/sidebar/filter/filter-information.directive.js
index 782fec899..e2ac78de2 100644
--- a/web/src/main/webapp/features/sidebar/filter/filter-information.directive.js
+++ b/web/src/main/webapp/features/sidebar/filter/filter-information.directive.js
@@ -12,7 +12,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/sidebar/filter/filterInformation.html?v=${buildTime}',
+ templateUrl: 'features/sidebar/filter/filterInformation.html?v=' + G_BUILD_TIME,
scope : {
namespace : '@' // string value
},
diff --git a/web/src/main/webapp/features/sidebar/title/sidebar-title.directive.js b/web/src/main/webapp/features/sidebar/title/sidebar-title.directive.js
index 53067cedf..7b18e87ff 100644
--- a/web/src/main/webapp/features/sidebar/title/sidebar-title.directive.js
+++ b/web/src/main/webapp/features/sidebar/title/sidebar-title.directive.js
@@ -12,7 +12,7 @@
return {
restrict: 'E',
replace: true,
- templateUrl: 'features/sidebar/title/sidebarTitle.html?v=${buildTime}',
+ templateUrl: 'features/sidebar/title/sidebarTitle.html?v=' + G_BUILD_TIME,
scope: {
namespace: '@'
},
diff --git a/web/src/main/webapp/features/timeSlider/time-slider.directive.js b/web/src/main/webapp/features/timeSlider/time-slider.directive.js
index 8ff94812b..257226e80 100644
--- a/web/src/main/webapp/features/timeSlider/time-slider.directive.js
+++ b/web/src/main/webapp/features/timeSlider/time-slider.directive.js
@@ -15,7 +15,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/timeSlider/timeSlider.html?v=${buildTime}',
+ templateUrl: 'features/timeSlider/timeSlider.html?v=' + G_BUILD_TIME,
link: function postLink(scope, element, attrs) {
// define variables
diff --git a/web/src/main/webapp/features/timeline/timeline.directive.js b/web/src/main/webapp/features/timeline/timeline.directive.js
index 849c3206b..76c3dae44 100644
--- a/web/src/main/webapp/features/timeline/timeline.directive.js
+++ b/web/src/main/webapp/features/timeline/timeline.directive.js
@@ -11,7 +11,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/timeline/timeline.html?v=${buildTime}',
+ templateUrl: 'features/timeline/timeline.html?v=' + G_BUILD_TIME,
link: function postLink(scope, element, attrs) {
// define private variables of methods
diff --git a/web/src/main/webapp/features/transactionTable/transaction-table.directive.js b/web/src/main/webapp/features/transactionTable/transaction-table.directive.js
index 24cd844cf..846ce925e 100644
--- a/web/src/main/webapp/features/transactionTable/transaction-table.directive.js
+++ b/web/src/main/webapp/features/transactionTable/transaction-table.directive.js
@@ -11,7 +11,7 @@
return {
restrict: 'EA',
replace: true,
- templateUrl: 'features/transactionTable/transactionTable.html?v=${buildTime}',
+ templateUrl: 'features/transactionTable/transactionTable.html?v=' + G_BUILD_TIME,
link: function postLink(scope, element, attrs) {
// define private variables of methods
diff --git a/web/src/main/webapp/index.html b/web/src/main/webapp/index.html
index 3af87681f..2c4cd7df1 100644
--- a/web/src/main/webapp/index.html
+++ b/web/src/main/webapp/index.html
@@ -511,6 +511,9 @@
+