1.0.4 • Published 6 years ago

@nearform/trace-events-parser v1.0.4

Weekly downloads
5,248
License
Apache-2.0
Repository
github
Last release
6 years ago

@nearform/trace-event-parser

Fast streaming parser for Node.js trace events.

npm install @nearform/trace-event-parser

Usage

const parser = require('@nearform/trace-events-parser')
const fs = require('fs')

fs.createReadStream('node_trace.log')
  .pipe(parser())
  .on('data', function (data) {
    console.log('traceEvent:', data)
  })

You can also use JSONStream to parse trace events, but this uses a specialised parser to achive a much higher throughput.

License

Apache-2.0