mirror of https://github.com/portainer/portainer
71 lines
2.1 KiB
JavaScript
71 lines
2.1 KiB
JavaScript
angular.module('portainer.docker')
|
|
.controller('ContainerLogsController', ['$scope', '$transition$', '$anchorScroll', 'ContainerLogs', 'Container', 'Notifications',
|
|
function ($scope, $transition$, $anchorScroll, ContainerLogs, Container, Notifications) {
|
|
$scope.state = {};
|
|
$scope.state.displayTimestampsOut = false;
|
|
$scope.state.displayTimestampsErr = false;
|
|
$scope.stdout = '';
|
|
$scope.stderr = '';
|
|
$scope.tailLines = 2000;
|
|
|
|
Container.get({id: $transition$.params().id}, function (d) {
|
|
$scope.container = d;
|
|
}, function (e) {
|
|
Notifications.error('Failure', e, 'Unable to retrieve container info');
|
|
});
|
|
|
|
function getLogs() {
|
|
getLogsStdout();
|
|
getLogsStderr();
|
|
}
|
|
|
|
function getLogsStderr() {
|
|
ContainerLogs.get($transition$.params().id, {
|
|
stdout: 0,
|
|
stderr: 1,
|
|
timestamps: $scope.state.displayTimestampsErr,
|
|
tail: $scope.tailLines
|
|
}, function (data, status, headers, config) {
|
|
// Replace carriage returns with newlines to clean up output
|
|
data = data.replace(/[\r]/g, '\n');
|
|
// Strip 8 byte header from each line of output
|
|
data = data.substring(8);
|
|
data = data.replace(/\n(.{8})/g, '\n');
|
|
$scope.stderr = data;
|
|
});
|
|
}
|
|
|
|
function getLogsStdout() {
|
|
ContainerLogs.get($transition$.params().id, {
|
|
stdout: 1,
|
|
stderr: 0,
|
|
timestamps: $scope.state.displayTimestampsOut,
|
|
tail: $scope.tailLines
|
|
}, function (data, status, headers, config) {
|
|
// Replace carriage returns with newlines to clean up output
|
|
data = data.replace(/[\r]/g, '\n');
|
|
// Strip 8 byte header from each line of output
|
|
data = data.substring(8);
|
|
data = data.replace(/\n(.{8})/g, '\n');
|
|
$scope.stdout = data;
|
|
});
|
|
}
|
|
|
|
// initial call
|
|
getLogs();
|
|
var logIntervalId = window.setInterval(getLogs, 5000);
|
|
|
|
$scope.$on('$destroy', function () {
|
|
// clearing interval when view changes
|
|
clearInterval(logIntervalId);
|
|
});
|
|
|
|
$scope.toggleTimestampsOut = function () {
|
|
getLogsStdout();
|
|
};
|
|
|
|
$scope.toggleTimestampsErr = function () {
|
|
getLogsStderr();
|
|
};
|
|
}]);
|