web-dev-qa-db-ja.com

nxlogを使用してイベントログから特定のログをクエリする

以下は私のnxlog設定です

define ROOT C:\Program Files (x86)\nxlog
Moduledir %ROOT%\modules
CacheDir %ROOT%\data
Pidfile %ROOT%\data\nxlog.pid
SpoolDir %ROOT%\data
LogFile %ROOT%\data\nxlog.log
<Extension json>
    Module      xm_json
</Extension>
<Input internal>
        Module      im_internal
</Input>
<Input eventlog>
    Module  im_msvistalog
    Query   <QueryList>\
            <Query Id="0">\
            <Select Path="Security">*</Select>\
            </Query>\
            </QueryList>
    </Input>
<Output out>
    Module  om_tcp
    Host    localhost
    Port    3515
    Exec    $EventReceivedTime = integer($EventReceivedTime) / 1000000; \
            to_json();
</Output>
<Route 1>
    Path    eventlog, internal => out
</Route>

<Select Path="Security">*</Select>\-> *はセキュリティログからすべてを取得しますが、私の要件は、EventId-4663で始まる特定のログを取得することです。これを行うにはどうすればよいですか?助けてください。ありがとう。

3
user170899

$ raw_eventで正規表現一致を実行することは、少し醜く、非効率的です。

次のフォームを使用することをお勧めします。

Exec if string($EventID) !~ /^42/ drop()

別の方法は、XMLイベント選択を使用することです。

Query <QueryList> \
           <Query Id="0">\
              <Select Path="Security">*[System[(EventID='4663')]]</Select>\
           </Query>\
      </QueryList>

ここでは、starts-withマッチが機能しないようですが、

XPath 1.0の制限:

Windowsイベントログは、XPath 1.0のサブセットをサポートしています。クエリで機能する関数には制限があります。たとえば、クエリ内で「position」、「Band」、および「timediff」関数を使用できますただし、「starts-with」などの他の関数および「contains」現在は使用できませんサポートされています

3
b0ti

あなたのイベントがINFO | WARNING | ERRORかどうかはわかりませんが、ここでは...

Exec    if $raw_event !~ /INFO\s+4663/ drop();

Quick、 $ reg_eventが「2013-11-18 15:23:02に等しい場合に正規表現を使用... INFO 2013-12-18 15:23:01 ahost.adomain.local INFO 62464 UVD Information "以下を使用してイベントを削除します。

Exec    if $raw_event =~ /INFO\s+62464/ drop();

短い例、 $ raw_event変数にアクセスするときに必要なものを正確に見つけるには、RegExを使用する必要があります。テスト後に「log_info」を削除/調整してください。

Exec if ($raw_event =~ /INFO\s+62464/) \
    { \
        log_info('Found amdkmdag EventID 62464, dropping it.'); \
        drop(); \
    }

完全な例、ここで、GELF形式のDebian/Graylog SysLogサーバーに対してnxlog-ce(Windows)を使用しています。

## This is a basic configuration file for Windows Server 2008 * 2012 
## to GrayLog2 with GELF support and filtering.
## See the nxlog reference manual about the configuration options. 
## It should be installed locally and is also available
## online at http://nxlog.org/nxlog-docs/en/nxlog-reference-manual.html

## Please set the ROOT to the folder your nxlog was installed into,
## otherwise it will not start.

define ROOT C:\Program Files (x86)\nxlog
# define ROOT C:\Program Files\nxlog

Moduledir %ROOT%\modules
CacheDir %ROOT%\data
Pidfile %ROOT%\data\nxlog.pid
SpoolDir %ROOT%\data
LogFile %ROOT%\data\nxlog.log

<Extension gelf>
    Module xm_gelf
</Extension>

<Input pr_mseventlog>
    Module      im_msvistalog
    ReadFromLast    True
    # http://msdn.Microsoft.com/en-us/library/aa385231.aspx
    # http://msdn.Microsoft.com/en-us/library/ff604025(v=office.14).aspx
    # Level 1 (ID=30  Critical)     severity level events
    # Level 2 (ID=40  Error)        severity level events
    # Level 3 (ID=50  Warning)      severity level events
    # Level 4 (ID=80  Information)  severity level events
    # Level 5 (ID=100 Verbose)      severity level events
    # All channels are included by default which are listed in the registry under these:
    # HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels 
    # HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\eventlog\System
    #
    # <Select Path='Key Management Service'>*</Select></Query>\
    # <Select Path='Internet Explorer'>*</Select></Query>\
    # <Select Path='HardwareEvents'>*</Select></Query>\
    #
    Query   <QueryList>\
        <Query Id="0">\
            <Select Path="Security">*</Select>\
            <Select Path="System">*[System/Level=4]</Select>\
            <Select Path="Application">*[Application/Level=2]</Select>\
            <Select Path="Setup">*[System/Level=3]</Select>\
            <Select Path='Windows PowerShell'>*</Select>\
        </Query>\
    </QueryList>

    # REGEX EXAMPLES:
    # "\s" equals one white space character, and ".*" equals any one char 
    # Line Contains both "bubble" and "gum"
    #   Search pattern: ^(?=.*?\bbubble\b)(?=.*?\bgum\b).*
    # Line does Not Contain "boy"
    #   Search pattern: ^(?!.*boy).*
    # Line Contains "bubble" but Neither "gum" Nor "bath"
    #   Search pattern: ^(?=.*bubble)(?!.*gum)(?!.*bath).*

    # Uncomment next line to view all logs, we can view output to help 
    # create the regex, next line shows my $raw_event data to parse:
    # 2013-11-18 15:23:02 INFO 2013-12-18 15:23:01 ahost.adomain.local INFO 62464 UVD Information
    # Exec   log_info($raw_event) ;
    Exec if ($raw_event =~ /INFO\s+62464/) drop();

</Input>

<Output out>
    Module      om_udp
    Host        10.247.x.x
    Port        12201
    OutputType  GELF
</Output>

<Route 1>
    Path    pr_mseventlog  => out
</Route>
1
Logman

あなたはおそらくここであなたの質問に対する答えを見つけるでしょう:

http://www.mail-archive.com/[email protected]/msg00082.html

0