#!/usr/bin/perl use strict; use DBI; use DBD::mysql; sub SendMail($$$); my @monthnames = (qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec)) +; my @msg; my @datetime; my ($rin, $nfound, $rout, $what, $dbh, $logtime, $logtable, $month); my $strSQL = ''; my $category = ''; my $catflag = ''; $dbh = DBI->connect("DBI:mysql:database=logger;host=localhost", "username", "password", {'RaiseError' => 1}); $rin=""; vec($rin,fileno(STDIN),1)=1; open (TTY, "> /dev/tty1"); while (1) { sleep 1; $nfound=select($rout=$rin,"","",1); $what = ($nfound) ? <> : ""; if ($what ne "") { $what = substr($what, index ($what, "MSWinEventLog")); @msg = split(/\t/, $what); @datetime = split(/ /, $msg[4]); for(0..11) { if ($monthnames[$_] eq $datetime[1]) {$month=++$_;} } $logtime = "$datetime[4]-$month-$datetime[2] $datetime[3]"; if ($msg[9] =~ "Error") { $logtable = 'error'; SendMail($msg[10], $msg[5], $msg[13]); }elsif ($msg[9] =~ "Warning") { $logtable = 'warning'; }else { $logtable = 'other'; $category = "\'$msg[9]\',"; $catflag='category, '; } $strSQL = "INSERT INTO $logtable ($catflag"."logtime, host, logt +ype, event_id," . " source, message) VALUES ($category \'$logtime\', \'$ +msg[10]\', " . "\'$msg[2]\', $msg[5], \'$msg[6]\', \'$msg[13]\')"; $dbh->do($strSQL); $category = $catflag = ''; } } #----------------- Send an email notification --------------------- sub SendMail($$$) { my ($host, $evnum, $msg) = @_; my $smtp = Net::SMTP->new(Host => 'smtp', Timeout => 30, Debug => 0); #Set to 0 in production ver +sion $smtp->mail('Windows System Event'); $smtp->to('admin'); $smtp->data(); $smtp->datasend("To: System Support\n"); $smtp->datasend("Subject: Error event $evnum on $host\n"); $smtp->datasend("\n"); $smtp->datasend("$msg\n"); $smtp->dataend(); $smtp->quit; } #-----------------------------------------------------------------

In reply to Win/Snare syslog message parser by bofh_of_oz

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.