|
|
@ -189,9 +189,10 @@ async function getpipelines(token,pipelinename) { |
|
|
|
global.online='ob'; |
|
|
|
global.pipelines=[]; |
|
|
|
|
|
|
|
function sendlog(reslog,index){ |
|
|
|
function sendlog(reslog,pathfileval){ |
|
|
|
//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(){ |
|
|
|
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); |
|
|
|
var pathfileval = pathmodule.basename(reslog.log.tailed_path); |
|
|
|
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("IOTindexfind "+JSON.stringify(indexfind)); |
|
|
|
console.log("IOTuser "+JSON.stringify(global.pipelines)); |
|
|
|