Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 1 | 'use strict'; |
| 2 | |
| 3 | angular.module('xos.ceilometerDashboard', [ |
| 4 | 'ngResource', |
| 5 | 'ngCookies', |
| 6 | 'ngLodash', |
| 7 | 'ui.router', |
| 8 | 'xos.helpers', |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 9 | 'ngAnimate', |
Matteo Scandolo | c058211 | 2015-12-09 16:09:59 -0800 | [diff] [blame] | 10 | 'chart.js', |
| 11 | 'ui.bootstrap.accordion' |
Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 12 | ]) |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 13 | .config(($stateProvider, $urlRouterProvider) => { |
Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 14 | $stateProvider |
| 15 | .state('ceilometerDashboard', { |
| 16 | url: '/', |
| 17 | template: '<ceilometer-dashboard></ceilometer-dashboard>' |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 18 | }) |
| 19 | .state('samples', { |
| 20 | url: '/:name/:tenant/samples', |
| 21 | template: '<ceilometer-samples></ceilometer-samples>' |
Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 22 | }); |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 23 | $urlRouterProvider.otherwise('/'); |
Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 24 | }) |
| 25 | .config(function($httpProvider){ |
| 26 | $httpProvider.interceptors.push('NoHyperlinks'); |
| 27 | }) |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 28 | .run(function($rootScope){ |
| 29 | $rootScope.stateName = 'ceilometerDashboard'; |
| 30 | $rootScope.$on('$stateChangeStart', (event, toState) => { |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 31 | $rootScope.stateName = toState.name; |
| 32 | }) |
| 33 | }) |
Matteo Scandolo | 41f5c15 | 2015-12-09 17:09:55 -0800 | [diff] [blame] | 34 | .service('Ceilometer', function($http, $q, lodash){ |
Matteo Scandolo | 2b6583e | 2015-12-08 15:24:23 -0800 | [diff] [blame] | 35 | |
Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 36 | this.getMeters = () => { |
| 37 | let deferred = $q.defer(); |
| 38 | |
Matteo Scandolo | 41f5c15 | 2015-12-09 17:09:55 -0800 | [diff] [blame] | 39 | $http.get('/xoslib/meters/', {cache: true}) |
| 40 | // $http.get('../meters_mock.json', {cache: true}) |
Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 41 | .then((res) => { |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 42 | deferred.resolve(res.data) |
| 43 | }) |
| 44 | .catch((e) => { |
| 45 | deferred.reject(e); |
| 46 | }); |
| 47 | |
| 48 | return deferred.promise; |
| 49 | } |
| 50 | |
| 51 | this.getSamples = (name, tenant) => { |
| 52 | let deferred = $q.defer(); |
| 53 | |
Matteo Scandolo | ac812bd | 2015-12-07 17:32:39 -0800 | [diff] [blame] | 54 | $http.get(`/xoslib/metersamples/`, {params: {meter: name, tenant: tenant}}) |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 55 | .then((res) => { |
| 56 | deferred.resolve(res.data) |
Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 57 | }) |
| 58 | .catch((e) => { |
| 59 | deferred.reject(e); |
| 60 | }); |
| 61 | |
| 62 | return deferred.promise; |
| 63 | } |
Matteo Scandolo | 41f5c15 | 2015-12-09 17:09:55 -0800 | [diff] [blame] | 64 | |
Matteo Scandolo | 19c2a4e | 2016-02-02 16:29:40 -0800 | [diff] [blame] | 65 | this.getStats = (options) => { |
Matteo Scandolo | 41f5c15 | 2015-12-09 17:09:55 -0800 | [diff] [blame] | 66 | let deferred = $q.defer(); |
| 67 | |
Matteo Scandolo | 19c2a4e | 2016-02-02 16:29:40 -0800 | [diff] [blame] | 68 | $http.get('/xoslib/meterstatistics/', {cache: true, params: options}) |
Matteo Scandolo | 41f5c15 | 2015-12-09 17:09:55 -0800 | [diff] [blame] | 69 | // $http.get('../stats_mock.son', {cache: true}) |
| 70 | .then((res) => { |
Matteo Scandolo | 19c2a4e | 2016-02-02 16:29:40 -0800 | [diff] [blame] | 71 | deferred.resolve(res.data); |
Matteo Scandolo | 41f5c15 | 2015-12-09 17:09:55 -0800 | [diff] [blame] | 72 | }) |
| 73 | .catch((e) => { |
| 74 | deferred.reject(e); |
| 75 | }); |
| 76 | |
| 77 | return deferred.promise; |
| 78 | }; |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 79 | |
| 80 | // hold dashboard status (opened service, slice, resource) |
| 81 | this.selectedService = null; |
| 82 | this.selectedSlice = null; |
| 83 | this.selectedResource = null; |
Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 84 | }) |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 85 | .directive('ceilometerDashboard', function(lodash){ |
Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 86 | return { |
| 87 | restrict: 'E', |
| 88 | scope: {}, |
| 89 | bindToController: true, |
| 90 | controllerAs: 'vm', |
| 91 | templateUrl: 'templates/ceilometer-dashboard.tpl.html', |
| 92 | controller: function(Ceilometer){ |
| 93 | |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 94 | // this open the accordion |
| 95 | this.accordion = { |
| 96 | open: {} |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Open the active panel base on the service stored values |
| 101 | */ |
| 102 | this.openPanels = () => { |
| 103 | if(Ceilometer.selectedService){ |
| 104 | this.accordion.open[Ceilometer.selectedService] = true; |
| 105 | if(Ceilometer.selectedSlice){ |
| 106 | this.selectedSlice = Ceilometer.selectedSlice; |
| 107 | this.selectedResources = this.projects[Ceilometer.selectedService][Ceilometer.selectedSlice] |
| 108 | if(Ceilometer.selectedResource){ |
| 109 | this.selectedResource = Ceilometer.selectedResource; |
| 110 | this.selectedMeters = this.selectedResources[Ceilometer.selectedResource]; |
| 111 | } |
| 112 | } |
| 113 | } |
| 114 | } |
| 115 | |
Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 116 | this.loadMeters = () => { |
| 117 | this.loader = true; |
| 118 | |
Matteo Scandolo | 1b9ffac | 2015-12-14 17:36:09 -0800 | [diff] [blame] | 119 | // TODO rename projects in meters |
Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 120 | Ceilometer.getMeters() |
| 121 | .then(meters => { |
Matteo Scandolo | c8f18e6 | 2015-12-09 15:23:51 -0800 | [diff] [blame] | 122 | //group project by service |
| 123 | this.projects = lodash.groupBy(meters, 'service'); |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 124 | lodash.forEach(Object.keys(this.projects), (project) => { |
Matteo Scandolo | c8f18e6 | 2015-12-09 15:23:51 -0800 | [diff] [blame] | 125 | // inside each service group by slice |
| 126 | this.projects[project] = lodash.groupBy(this.projects[project], 'slice'); |
| 127 | lodash.forEach(Object.keys(this.projects[project]), (slice) => { |
| 128 | // inside each service => slice group by resource |
Matteo Scandolo | 8386933 | 2015-12-14 14:26:20 -0800 | [diff] [blame] | 129 | this.projects[project][slice] = lodash.groupBy(this.projects[project][slice], 'resource_name'); |
Matteo Scandolo | c8f18e6 | 2015-12-09 15:23:51 -0800 | [diff] [blame] | 130 | }); |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 131 | }); |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 132 | |
| 133 | // open selected panels |
| 134 | this.openPanels(); |
Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 135 | }) |
| 136 | .catch(err => { |
Matteo Scandolo | 8386933 | 2015-12-14 14:26:20 -0800 | [diff] [blame] | 137 | this.error = err.data.detail; |
Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 138 | }) |
| 139 | .finally(() => { |
| 140 | this.loader = false; |
| 141 | }); |
| 142 | } |
| 143 | |
| 144 | this.loadMeters(); |
| 145 | |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 146 | /** |
| 147 | * Select Resources for a slice |
| 148 | * |
| 149 | * @param Array resources The list of selected resources |
| 150 | * @returns void |
| 151 | */ |
| 152 | this.selectedResources = null; |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 153 | this.selectResources = (resources, slice, service) => { |
Matteo Scandolo | 19c2a4e | 2016-02-02 16:29:40 -0800 | [diff] [blame] | 154 | |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 155 | //cleaning |
| 156 | this.selectedResources = null; |
| 157 | this.selectedResource = null; |
| 158 | this.selectedMeters = null; |
| 159 | |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 160 | // hold the resource list for the current slice |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 161 | this.selectedResources = resources; |
| 162 | this.selectedSlice = slice; |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 163 | this.selectedService = service; |
| 164 | |
| 165 | // store the status |
| 166 | Ceilometer.selectedSlice = slice; |
| 167 | Ceilometer.selectedService = service; |
Matteo Scandolo | 19c2a4e | 2016-02-02 16:29:40 -0800 | [diff] [blame] | 168 | |
| 169 | // store tenant (slice id for ceilometer) |
| 170 | // it is passed to ceilometer-stats directive |
| 171 | console.log(resources); |
| 172 | this.selectedTenant = resources[Object.keys(resources)[0]][0].project_id; |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | /** |
| 176 | * Select Meters for a resource |
| 177 | * |
| 178 | * @param Array meters The list of selected resources |
| 179 | * @returns void |
| 180 | */ |
| 181 | this.selectedMeters = null; |
| 182 | this.selectMeters = (meters, resource) => { |
| 183 | this.selectedMeters = meters; |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 184 | |
| 185 | Ceilometer.selectedResource = resource; |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 186 | this.selectedResource = resource; |
| 187 | } |
| 188 | |
Matteo Scandolo | 68c2e72 | 2015-12-04 10:14:40 -0800 | [diff] [blame] | 189 | } |
| 190 | }; |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 191 | }) |
| 192 | .directive('ceilometerSamples', function(lodash, $stateParams){ |
| 193 | return { |
| 194 | restrict: 'E', |
Matteo Scandolo | 895b30a | 2016-02-02 16:04:31 -0800 | [diff] [blame] | 195 | scope: {}, |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 196 | bindToController: true, |
| 197 | controllerAs: 'vm', |
| 198 | templateUrl: 'templates/ceilometer-samples.tpl.html', |
| 199 | controller: function(Ceilometer) { |
| 200 | |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 201 | // console.log(Ceilometer.selectResource); |
| 202 | |
Matteo Scandolo | 324df09 | 2015-12-08 16:39:57 -0800 | [diff] [blame] | 203 | this.chartColors = [ |
Matteo Scandolo | 2b6583e | 2015-12-08 15:24:23 -0800 | [diff] [blame] | 204 | '#286090', |
| 205 | '#F7464A', |
| 206 | '#46BFBD', |
| 207 | '#FDB45C', |
| 208 | '#97BBCD', |
| 209 | '#4D5360', |
| 210 | '#8c4f9f' |
| 211 | ]; |
Matteo Scandolo | 324df09 | 2015-12-08 16:39:57 -0800 | [diff] [blame] | 212 | |
| 213 | this.chart = { |
| 214 | series: [], |
| 215 | labels: [], |
| 216 | data: [] |
| 217 | } |
| 218 | |
| 219 | Chart.defaults.global.colours = this.chartColors; |
Matteo Scandolo | 2b6583e | 2015-12-08 15:24:23 -0800 | [diff] [blame] | 220 | |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 221 | this.chartType = 'line'; |
| 222 | |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 223 | if($stateParams.name && $stateParams.tenant){ |
| 224 | this.name = $stateParams.name; |
| 225 | this.tenant = $stateParams.tenant; |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 226 | // TODO rename tenant in project_id |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 227 | } |
Matteo Scandolo | 1b9ffac | 2015-12-14 17:36:09 -0800 | [diff] [blame] | 228 | else{ |
| 229 | throw new Error('Missing Name and Tenant Params!'); |
| 230 | } |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 231 | |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 232 | /** |
Matteo Scandolo | 324df09 | 2015-12-08 16:39:57 -0800 | [diff] [blame] | 233 | * Goes trough the array and format date to be used as labels |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 234 | * |
| 235 | * @param Array data |
| 236 | * @returns Array a list of labels |
| 237 | */ |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 238 | |
Matteo Scandolo | 1d8627f | 2015-12-05 18:44:45 -0800 | [diff] [blame] | 239 | this.getLabels = (data) => { |
| 240 | return data.reduce((list, item) => { |
| 241 | let date = new Date(item.timestamp); |
| 242 | list.push(`${date.getHours()}:${(date.getMinutes()<10?'0':'') + date.getMinutes()}:${date.getSeconds()}`); |
| 243 | return list; |
| 244 | }, []); |
| 245 | }; |
| 246 | |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 247 | /** |
Matteo Scandolo | 324df09 | 2015-12-08 16:39:57 -0800 | [diff] [blame] | 248 | * Goes trough the array and return a flat array of values |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 249 | * |
| 250 | * @param Array data |
| 251 | * @returns Array a list of values |
| 252 | */ |
| 253 | |
Matteo Scandolo | 1d8627f | 2015-12-05 18:44:45 -0800 | [diff] [blame] | 254 | this.getData = (data) => { |
| 255 | return data.reduce((list, item) => { |
| 256 | list.push(item.volume); |
| 257 | return list; |
| 258 | }, []); |
| 259 | } |
| 260 | |
Matteo Scandolo | 324df09 | 2015-12-08 16:39:57 -0800 | [diff] [blame] | 261 | /** |
| 262 | * Add a samples to the chart |
| 263 | * |
| 264 | * @param string resource_id |
| 265 | */ |
| 266 | this.chartMeters = []; |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 267 | this.addMeterToChart = (project_id) => { |
| 268 | this.chart['labels'] = this.getLabels(lodash.sortBy(this.samplesList[project_id], 'timestamp')); |
| 269 | this.chart['series'].push(project_id); |
| 270 | this.chart['data'].push(this.getData(lodash.sortBy(this.samplesList[project_id], 'timestamp'))); |
| 271 | this.chartMeters.push(this.samplesList[project_id][0]); //use the 0 as are all samples for the same resource and I need the name |
| 272 | lodash.remove(this.sampleLabels, {id: project_id}); |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 273 | } |
| 274 | |
Matteo Scandolo | e5d5ebd | 2015-12-14 14:42:28 -0800 | [diff] [blame] | 275 | this.removeFromChart = (meter) => { |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 276 | this.chart.data.splice(this.chart.series.indexOf(meter.project_id), 1); |
| 277 | this.chart.series.splice(this.chart.series.indexOf(meter.project_id), 1); |
| 278 | this.chartMeters.splice(lodash.findIndex(this.chartMeters, {project_id: meter.project_id}), 1); |
Matteo Scandolo | 324df09 | 2015-12-08 16:39:57 -0800 | [diff] [blame] | 279 | this.sampleLabels.push({ |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 280 | id: meter.project_id, |
| 281 | name: meter.resource_name || meter.project_id |
Matteo Scandolo | 324df09 | 2015-12-08 16:39:57 -0800 | [diff] [blame] | 282 | }) |
| 283 | }; |
| 284 | |
| 285 | /** |
| 286 | * Format samples to create a list of labels and ids |
| 287 | */ |
| 288 | |
| 289 | this.formatSamplesLabels = (samples) => { |
| 290 | |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 291 | return lodash.uniq(samples, 'project_id') |
Matteo Scandolo | 5074ccd | 2015-12-15 08:16:56 -0800 | [diff] [blame] | 292 | .reduce((labels, item) => { |
Matteo Scandolo | 324df09 | 2015-12-08 16:39:57 -0800 | [diff] [blame] | 293 | labels.push({ |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 294 | id: item.project_id, |
| 295 | name: item.resource_name || item.project_id |
Matteo Scandolo | 324df09 | 2015-12-08 16:39:57 -0800 | [diff] [blame] | 296 | }); |
| 297 | return labels; |
Matteo Scandolo | 5074ccd | 2015-12-15 08:16:56 -0800 | [diff] [blame] | 298 | }, []); |
Matteo Scandolo | 324df09 | 2015-12-08 16:39:57 -0800 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 302 | /** |
| 303 | * Load the samples and format data |
| 304 | */ |
| 305 | |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 306 | this.showSamples = () => { |
| 307 | this.loader = true; |
Matteo Scandolo | 6885608 | 2015-12-08 14:35:55 -0800 | [diff] [blame] | 308 | // Ceilometer.getSamples(this.name, this.tenant) //fetch one |
| 309 | Ceilometer.getSamples(this.name) //fetch all |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 310 | .then(res => { |
Matteo Scandolo | 324df09 | 2015-12-08 16:39:57 -0800 | [diff] [blame] | 311 | |
| 312 | // setup data for visualization |
Matteo Scandolo | 6c6b928 | 2015-12-15 14:37:27 -0800 | [diff] [blame] | 313 | this.samplesList = lodash.groupBy(res, 'project_id'); |
Matteo Scandolo | 324df09 | 2015-12-08 16:39:57 -0800 | [diff] [blame] | 314 | this.sampleLabels = this.formatSamplesLabels(res); |
| 315 | |
| 316 | // add current meter to chart |
| 317 | this.addMeterToChart(this.tenant); |
| 318 | |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 319 | }) |
| 320 | .catch(err => { |
Matteo Scandolo | c8f18e6 | 2015-12-09 15:23:51 -0800 | [diff] [blame] | 321 | this.error = err.data.detail; |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 322 | }) |
| 323 | .finally(() => { |
| 324 | this.loader = false; |
| 325 | }); |
| 326 | }; |
| 327 | |
| 328 | this.showSamples(); |
Matteo Scandolo | 7b80d84 | 2015-12-04 15:55:20 -0800 | [diff] [blame] | 329 | } |
| 330 | } |
Matteo Scandolo | 41f5c15 | 2015-12-09 17:09:55 -0800 | [diff] [blame] | 331 | }) |
| 332 | .directive('ceilometerStats', function(){ |
| 333 | return { |
| 334 | restrict: 'E', |
| 335 | scope: { |
| 336 | name: '=name', |
Matteo Scandolo | 19c2a4e | 2016-02-02 16:29:40 -0800 | [diff] [blame] | 337 | tenant: '=tenant' |
Matteo Scandolo | 41f5c15 | 2015-12-09 17:09:55 -0800 | [diff] [blame] | 338 | }, |
| 339 | bindToController: true, |
| 340 | controllerAs: 'vm', |
| 341 | templateUrl: 'templates/ceilometer-stats.tpl.html', |
| 342 | controller: function($scope, Ceilometer) { |
Matteo Scandolo | 19c2a4e | 2016-02-02 16:29:40 -0800 | [diff] [blame] | 343 | |
| 344 | this.getStats = (tenant) => { |
| 345 | console.log(this.tenant); |
Matteo Scandolo | 41f5c15 | 2015-12-09 17:09:55 -0800 | [diff] [blame] | 346 | this.loader = true; |
Matteo Scandolo | 19c2a4e | 2016-02-02 16:29:40 -0800 | [diff] [blame] | 347 | Ceilometer.getStats({tenant: tenant}) |
Matteo Scandolo | 41f5c15 | 2015-12-09 17:09:55 -0800 | [diff] [blame] | 348 | .then(res => { |
| 349 | this.stats = res; |
| 350 | }) |
| 351 | .catch(err => { |
| 352 | this.error = err.data; |
| 353 | }) |
| 354 | .finally(() => { |
| 355 | this.loader = false; |
| 356 | }); |
| 357 | }; |
| 358 | |
Matteo Scandolo | 19c2a4e | 2016-02-02 16:29:40 -0800 | [diff] [blame] | 359 | $scope.$watch(() => this.name, (val) => { |
| 360 | if(val){ |
| 361 | this.getStats(this.tenant); |
| 362 | } |
| 363 | }); |
Matteo Scandolo | 41f5c15 | 2015-12-09 17:09:55 -0800 | [diff] [blame] | 364 | } |
| 365 | } |
Matteo Scandolo | 869acc5 | 2015-12-10 10:15:20 -0800 | [diff] [blame] | 366 | }) |
| 367 | .filter('orderObjectByKey', function(lodash) { |
Matteo Scandolo | 8386933 | 2015-12-14 14:26:20 -0800 | [diff] [blame] | 368 | return function(items) { |
Matteo Scandolo | 869acc5 | 2015-12-10 10:15:20 -0800 | [diff] [blame] | 369 | |
| 370 | if(!items){ |
| 371 | return; |
| 372 | } |
| 373 | |
| 374 | return lodash.reduce(Object.keys(items).reverse(), (list, key) => { |
| 375 | list[key] = items[key]; |
| 376 | return list; |
| 377 | }, {}); |
| 378 | |
| 379 | }; |
| 380 | }); |
| 381 | ; |