2016-05-24 14:42:25 +02:00
|
|
|
'use strict';
|
|
|
|
|
2016-05-24 16:40:57 +02:00
|
|
|
angular.module('ffffng').factory('NodeInformationRetrievalJob', function (MonitoringService, Logger) {
|
2016-05-24 14:42:25 +02:00
|
|
|
return {
|
|
|
|
run: function () {
|
|
|
|
MonitoringService.retrieveNodeInformation(function (err) {
|
|
|
|
if (err) {
|
2016-05-24 16:40:57 +02:00
|
|
|
Logger.tag('monitoring', 'information-retrieval').error('Error retrieving node data:', err);
|
2016-05-24 14:42:25 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|