diff --git a/src/ServicePulse.Host/app/js/views/failed_messages/view.html b/src/ServicePulse.Host/app/js/views/failed_messages/view.html index 4ada52c03d..45f837c15d 100644 --- a/src/ServicePulse.Host/app/js/views/failed_messages/view.html +++ b/src/ServicePulse.Host/app/js/views/failed_messages/view.html @@ -10,7 +10,7 @@
- {{vm.selectedExceptionGroup.parentTitle}} endpoint + {{vm.selectedExceptionGroup.parentTitle}} endpoint Failed message groups list
All failed messages ({{vm.failedMessages.length}} / {{vm.selectedExceptionGroup.count}} | number)
diff --git a/src/ServicePulse.Host/app/layout/navbar.html b/src/ServicePulse.Host/app/layout/navbar.html index f06ffc0034..37d2a304a0 100644 --- a/src/ServicePulse.Host/app/layout/navbar.html +++ b/src/ServicePulse.Host/app/layout/navbar.html @@ -22,8 +22,8 @@ -
  • - +
  • + Monitoring diff --git a/src/ServicePulse.Host/app/modules/monitoring/js/endpoint_details.controller.js b/src/ServicePulse.Host/app/modules/monitoring/js/endpoint_details.controller.js index b099aa51a3..20bca47672 100644 --- a/src/ServicePulse.Host/app/modules/monitoring/js/endpoint_details.controller.js +++ b/src/ServicePulse.Host/app/modules/monitoring/js/endpoint_details.controller.js @@ -43,7 +43,7 @@ } $scope.buildUrl = function (selectedPeriodValue, showInstancesBreakdownTab) { - return `#/endpoint_details/${$scope.endpointName}/${$scope.sourceIndex}?historyPeriod=${selectedPeriodValue}&tab=${$scope.showInstancesBreakdown ? 'instancesBreakdown' : 'messageTypeBreakdown'}`; + return `#/monitoring/endpoint/${$scope.endpointName}/${$scope.sourceIndex}?historyPeriod=${selectedPeriodValue}&tab=${$scope.showInstancesBreakdown ? 'instancesBreakdown' : 'messageTypeBreakdown'}`; }; $scope.showInstancesBreakdownTab = function(isVisible) { diff --git a/src/ServicePulse.Host/app/modules/monitoring/js/endpoint_details.route.js b/src/ServicePulse.Host/app/modules/monitoring/js/endpoint_details.route.js index 5b7db915da..7c8ced8a4a 100644 --- a/src/ServicePulse.Host/app/modules/monitoring/js/endpoint_details.route.js +++ b/src/ServicePulse.Host/app/modules/monitoring/js/endpoint_details.route.js @@ -4,7 +4,7 @@ function routeProvider($routeProvider) { let template = require('./../views/endpoint_details.html'); - $routeProvider.when('/endpoint_details/:endpointName/:sourceIndex', { + $routeProvider.when('/monitoring/endpoint/:endpointName/:sourceIndex', { data: { pageTitle: 'Endpoint Details' }, diff --git a/src/ServicePulse.Host/app/modules/monitoring/js/monitored_endpoints.controller.js b/src/ServicePulse.Host/app/modules/monitoring/js/monitored_endpoints.controller.js index 5289af6424..50822a9f50 100644 --- a/src/ServicePulse.Host/app/modules/monitoring/js/monitored_endpoints.controller.js +++ b/src/ServicePulse.Host/app/modules/monitoring/js/monitored_endpoints.controller.js @@ -27,7 +27,7 @@ }; $scope.getDetailsUrl = endpoint => { - return '#/endpoint_details/' + endpoint.name + '/' + (endpoint.sourceIndex | 0) + '?historyPeriod=' + $scope.selectedPeriod.value; + return '#/monitoring/endpoint/' + endpoint.name + '/' + (endpoint.sourceIndex | 0) + '?historyPeriod=' + $scope.selectedPeriod.value; }; function fillDisplayValuesForEndpoint(endpoint) { diff --git a/src/ServicePulse.Host/app/modules/monitoring/js/monitored_endpoints.route.js b/src/ServicePulse.Host/app/modules/monitoring/js/monitored_endpoints.route.js index 66b70679f7..21ef78f7a1 100644 --- a/src/ServicePulse.Host/app/modules/monitoring/js/monitored_endpoints.route.js +++ b/src/ServicePulse.Host/app/modules/monitoring/js/monitored_endpoints.route.js @@ -4,7 +4,7 @@ function routeProvider($routeProvider) { let template = require('./../views/monitored_endpoints.html'); - $routeProvider.when('/monitored_endpoints', { + $routeProvider.when('/monitoring', { data: { pageTitle: 'Monitored Endpoints' }, diff --git a/src/ServicePulse.Host/app/modules/monitoring/views/endpoint_details.html b/src/ServicePulse.Host/app/modules/monitoring/views/endpoint_details.html index f4a52216c3..a14931f1e1 100644 --- a/src/ServicePulse.Host/app/modules/monitoring/views/endpoint_details.html +++ b/src/ServicePulse.Host/app/modules/monitoring/views/endpoint_details.html @@ -5,7 +5,7 @@

    diff --git a/src/ServicePulse.Host/app/modules/monitoring/views/monitored_endpoints.html b/src/ServicePulse.Host/app/modules/monitoring/views/monitored_endpoints.html index f7fe4e0cb3..48ef1efbd9 100644 --- a/src/ServicePulse.Host/app/modules/monitoring/views/monitored_endpoints.html +++ b/src/ServicePulse.Host/app/modules/monitoring/views/monitored_endpoints.html @@ -6,7 +6,7 @@

    Endpoints overview