Software to send windows notification eventlogs to linux syslog server and encode to utf8

6,031

Solution 1

I use Snare.

Snare for Windows is a Windows NT, Windows 2000, Windows XP, and Windows 2003 compatible service that interacts with the underlying Windows Eventlog subsystem to facilitate remote, real-time transfer of event log information. Snare for Windows also support 64 bit versions of Windows (X64 and IA64).

Snare for Windows Vista is a Windows 2008, Vista and Windows 7 compatible service that interacts with the underlying "Crimson" Eventlog subsystem to facilitate remote, real-time transfer of event log information. Snare for Windows Vista also support 64 bit versions of Windows (X64).

Snare for Windows and Windows Vista are free software (freeware), released under the terms of the GNU Public Licence (GPL).

Solution 2

nxlog is an open-source solution which can do what you need using the im_mseventlog or im_msvistalog modules. There is charset conversion support so you can forward in utf-8 or another codepage.

Share:
6,031

Related videos on Youtube

aseques
Author by

aseques

Updated on September 17, 2022

Comments

  • aseques
    aseques over 1 year

    I am trying to setup a windows 2008 server so it's able to send the eventlog messages to an syslog-ng server running linux. I'd prefer something native but I guess it won't be possible.

    UPDATE The first answer recommended to use snare, so far it's the best solution I found, totally painless to setup, and in less than five minutes I've logs to my syslog-ng server. The only drawaback (not snare fault) was that the logs are sent in windows-1252 charset encoding. So I was not able to tail -f them unless I change the charset somehow. If you are using syslog-ng this can be easily solved by creating a new source, in my case:

    source src_win {
            udp(
                    ip("192.168.1.200")
                    port(514)
                    encoding("WINDOWS-1252"));
    };
    

    After this (and assigning the new source to the right place) you will able to see your windows logs properly.

    Old content

    Looking around I've found a couple of solutions pointed by this page: http://www.itbuzzer.net/corner/2008/10/how-to-send-windows-events-to-syslog.asp

    Does anyone have experience with any of those or something else?

  • sebthebert
    sebthebert over 13 years
    +1 I use Snare too.
  • raja
    raja over 13 years
    In scanning the snare docs it looks like all of the supported types are text files (eg IIs logs) can you get it to also send event logs to syslog?
  • alvosu
    alvosu over 13 years
  • aseques
    aseques over 13 years
    I just installed snare on the server I was interested and it's great. Easy to configure and it just works out of the box. One issue tough, the charset used for the logs is not utf, probably is widnows-1252. Haven't look at it yet, but is that configurable?
  • alvosu
    alvosu over 13 years
    What problem?... #pragma code_page(65001) and recompile. It's open source)
  • aseques
    aseques over 13 years
    Updated the main post with a proper solution to fix the encoding in syslog-ng
  • aseques
    aseques over 13 years
    I did a quick test of eventlog-to-sysog, prior posting to serverfault. On my brief testing I wasn't able to properly configure the service. After that I just installed snare and I've seen that it's a great tool and so easy to setup (thanks to the web interface).
  • aseques
    aseques over 12 years
    It seems a nice solution, I've my setup working nicely at the moment, but I'll have an eye on this tool for the next time I need an alternative.