apachelog-stream

This takes a apache log, parses it and returns it as buffer

Usage no npm install needed!

<script type="module">
  import apachelogStream from 'https://cdn.skypack.dev/apachelog-stream';
</script>

README

apachelog-stream

This is an apache parser that takes a line of an apache log and returns it in json line by line through the stream.

Code Climate

To install

npm install --save apachelog-stream

Example

  // read a file
  var fs = require('fs')
  // liner stream
  // apachelog-stream
  var ApacheStream = require('apachelog-stream')
  var logStream = new ApacheStream()
  var input  = fs.createReadStream('/some_random_log.log')  // can be from a stream such as knox or request
  var output = input.pipe(logStream)

  output.on('data', function(chunk){
    console.log(chunk.toString())
  })

Options

logType

combined or common

format

Takes an array for strings of what you want it to output. Ex: ['ipAddress', 'host']. This needs to be in the same order of the log that it is parsing. THIS WILL OVERRIDE LOGTYPE! So include all the fields that you are wanting.