ffffng/server/jobs/NodeInformationRetrievalJob.ts

9 lines
305 B
TypeScript
Raw Normal View History

import * as MonitoringService from "../services/monitoringService";
export default {
name: 'NodeInformationRetrievalJob',
description: 'Fetches the nodes.json and calculates and stores the monitoring / online status for registered nodes.',
run: MonitoringService.retrieveNodeInformation,
};