1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 12:25:22 +02:00

Implemented CPU usage graph, upgraded to Chart.js 1.0.2, broke dashboard charts, tests.

This commit is contained in:
Kevan Ahlquist 2015-08-26 01:28:08 -05:00
parent 6cb658a1ef
commit d243a83c5c
5 changed files with 53 additions and 80 deletions

View file

@ -18,7 +18,7 @@ angular.module('dockerui.services', ['ngResource'])
create: {method: 'POST', params: {action: 'create'}},
remove: {method: 'DELETE', params: {id: '@id', v: 0}},
rename: {method: 'POST', params: {id: '@id', action: 'rename'}, isArray: false},
stats: {method: 'GET', params: {id: '@id', stream: false, action: 'stats'}}
stats: {method: 'GET', params: {id: '@id', stream: false, action: 'stats'}, timeout: 2000}
});
})
.factory('ContainerCommit', function ($resource, $http, Settings) {