WIP: Job to retrieve node information for monitoring.

This commit is contained in:
baldo 2016-05-24 14:42:25 +02:00
commit ad3f075d93
14 changed files with 274 additions and 15 deletions

View file

@ -0,0 +1,13 @@
'use strict';
angular.module('ffffng').factory('NodeInformationRetrievalJob', function (MonitoringService) {
return {
run: function () {
MonitoringService.retrieveNodeInformation(function (err) {
if (err) {
console.error(err);
}
});
}
};
});