GithubHelp home page GithubHelp logo

logtocsv's Introduction

LogToCSV Perl Script By Bryan Tsai

NAME

LogToCSV - Convert a Log to a CSV format

SYNOPSIS

LogToCSV.pl [FORMAT] [FILE]...

DESCRIPTION

Convert each FILE according to the format given in the FORMAT file
assuming that each line in FILE maps to each row in the resulting CSV.
FORMAT files must be formatted as a CSV wherein the first row provides
a list of column names, and the second row provides regular expressions
that capture input to be placed under each corresponding column.
Any uncaptured or unmatching input will be placed under an extra column 
so no loss of information occurs.

EXAMPLE

LogToCSV.pl format log

format:
****
timestamp, pid, type, message
[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}, [0-9]{4}, \[\w*\], .*$
****

log:
****
2017-10-09 23:22:16 3443 [Note] /rdsdbbin/mysql/bin/mysqld: ready for connections.
****

yields log.csv:
****
timestamp, pid, type, message, unmatched
2017-10-09 23:22:16,3443,[Note],/rdsdbbin/mysql/bin/mysqld: ready for connections.,
****

UNCAUGHT EDGE CASES AND NOTES

May not handle regexes in the format file that contain ,'s (commas) properly.

Not CSV RFC4180 compliant. May not handle FORMAT file CSV whose elements
contain commans, double quotes, CRLF properly.

logtocsv's People

Contributors

brtsai avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.