vqlog is a tool for analyzing VQLOGs from FANUC Visual Line Tracking applications.
var vqlog = require("vqlog");
var myLog = vqlog.fromPath('./vqlog.txt');
console.log('Duration: ' + myLog.duration());
console.log('Entries: ' + myLog.entries);
// filter by event type
console.log('Acks: ' + myLog.entriesByEventType('Acknowledgement'));
There are a couple examples in the /examples
directory. Use the
http-server node package
to serve the examples:
> npm install -g http-server
> http-server examples
Open http://localhost:8080
in your browser.