#!/bin/sh

# Watch the NL pipeline in action

# Pick up definition of ${log_file} and ${parser_output}
. ./etc/nl_shared.conf

wc -l ${log_file}
wc -l ${parser_output}*

events=`sqlite3 ${sqlite_db} "select count(*) from event;"`
echo "sqlite events: $events"
