Browse Source

global

master
zeus 4 years ago
parent
commit
48594504ed
  1. 7
      swarmlab-app/src/run/app.js

7
swarmlab-app/src/run/app.js

@ -189,9 +189,10 @@ async function getpipelines(token,pipelinename) {
global.online='ob'; global.online='ob';
global.pipelines=[]; global.pipelines=[];
function sendlog(reslog,index){ function sendlog(reslog,pathfileval){
//io.in("iot").emit("message", reslog); //io.in("iot").emit("message", reslog);
console.info(reslog); var usertmp = global.pipelines.find(x => x.pathlogfile==pathfileval);
console.log('-----------------------' + JSON.stringify(usertmp));
} }
function onWatcherReady(){ function onWatcherReady(){
console.info('From here can you check for real changes, the initial scan has been completed.'); console.info('From here can you check for real changes, the initial scan has been completed.');
@ -317,7 +318,7 @@ cors(corsOptions), (req, res, next) => {
console.log(reslog); console.log(reslog);
var pathfileval = pathmodule.basename(reslog.log.tailed_path); var pathfileval = pathmodule.basename(reslog.log.tailed_path);
var indexfind = global.pipelines.findIndex(x => x.pathlogfile==pathfileval); var indexfind = global.pipelines.findIndex(x => x.pathlogfile==pathfileval);
//indexfind === 1 ? sendlog(reslog, indexfind) : console.log("object already exists") indexfind === 1 ? sendlog(reslog,pathfileval) : console.log("object already exists")
console.log("IOT "+JSON.stringify(reslog.log.tailed_path)); console.log("IOT "+JSON.stringify(reslog.log.tailed_path));
console.log("IOTindexfind "+JSON.stringify(indexfind)); console.log("IOTindexfind "+JSON.stringify(indexfind));
console.log("IOTuser "+JSON.stringify(global.pipelines)); console.log("IOTuser "+JSON.stringify(global.pipelines));

Loading…
Cancel
Save