You don't tell us the network structure, the operating systems or the event sources, so it's hard to give you a pointer in the right direction.

If your operating systems are Windows, there is the WMI which allows you to remotely query the event logs. If your operating systems are unixish, there is the syslogd package, which allows you to forward all log events to remote machines.

If your programs log their events neither into the Win32 Event Log nor via syslogd, you will either have to write adapters from whatever logging mechanism your programs use into whatever logging mechanism you use to collect the messages (say, a named pipe instead of a file), or you will have to write your own collection mechanism. But as you don't tell us how your programs log, it's hard to give you specific pointers.

Please read How (Not) To Ask A Question.


In reply to Re: writing a tool to collect workstation events by Corion
in thread writing a tool to collect workstation events by greatshots

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.