mirror of https://github.com/portainer/portainer
24 lines
586 B
JavaScript
24 lines
586 B
JavaScript
import moment from 'moment';
|
|
|
|
angular.module('portainer.docker').controller('EventsController', [
|
|
'$scope',
|
|
'Notifications',
|
|
'SystemService',
|
|
function ($scope, Notifications, SystemService) {
|
|
function initView() {
|
|
var from = moment().subtract(24, 'hour').unix();
|
|
var to = moment().unix();
|
|
|
|
SystemService.events(from, to)
|
|
.then(function success(data) {
|
|
$scope.events = data;
|
|
})
|
|
.catch(function error(err) {
|
|
Notifications.error('Failure', err, 'Unable to load events');
|
|
});
|
|
}
|
|
|
|
initView();
|
|
},
|
|
]);
|