AngularJS tail logs module.
Poll a log API for displaying messages
$ yarn add @ovh-ux/ng-tail-logs
import angular from 'angular';
import ngTailLogs from '@ovh-ux/ng-tail-logs';
angular.module('myApp', [ngTailLogs]).controller(
'MyCtrl',
/* @ngInject */ ($q, TailLogs) => {
this.logger = new TailLogs({
source: () => $q.when('http://my-log-url'),
delay: 2000,
});
},
);
<div data-ng-controller="MyCtrl as $ctrl">
<tail-logs>
<div data-ng-repeat="log in $ctrl.logger.logs track by $index"
data-ng-bind="log.message">
</div>
</tail-logs>
</div>
$ yarn test
Always feel free to help out! Whether it's filing bugs and feature requests or working on some of the open issues, our contributing guide will help get you started.
BSD-3-Clause © OVH SAS