首先感谢您的任何建议和时间。
我最近为刚刚开始工作的公司设置了一个Elk堆栈。 (这是我使用Logstash和Nxlog的第一次经历。)我想要做的是使用nxlog从同一个Web服务器发送IIS日志和EventLogs到logstash。
我只是不明白如何从一个源发送两种类型的日志,并让logstash.conf正确过滤这些数据。
这是我的nxlog.conf
## This is a sample configuration file. 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\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 iis_1>
Module im_file
File "F:\inetpub\logs\LogFiles\W3SVC1\u_ex*.log"
ReadFromLast True
SavePos True
Exec if $raw_event =~ /^#/ drop();
</Input>
<Input iis_2>
Module im_file
File "F:\inetpub\logs\LogFiles\W3SVC2\u_ex*.log"
ReadFromLast True
SavePos True
Exec if $raw_event =~ /^#/ drop();
</Input>
<Input iis_4>
Module im_file
File "F:\inetpub\logs\LogFiles\W3SVC4\u_ex*.log"
ReadFromLast True
SavePos True
Exec if $raw_event =~ /^#/ drop();
</Input>
<Input eventlog>
Module im_msvistalog
Exec $EventReceivedTime = integer($EventReceivedTime) / 1000000; to_json();
</Input>
<Output out_iis>
Module om_tcp
Host 10.191.132.86
Port 5555
OutputType LineBased
</Output>
<Route 1>
Path iis_1, iis_2, iis_4, eventlog=> out_iis
</Route>
My Current logstash.conf
input {
tcp {
type => "iis"
port => 5555
host => "10.191.132.86"
}
}
filter {
if [type] == "iis" {
grok {
match => ["@message", "%{TIMESTAMP_ISO8601:timestamp} %{IPORHOST:hostip} %{WORD:method} %{URIPATH:page} %{NOTSPACE:query} %{NUMBER:port} %{NOTSPACE:username} %{IPORHOST:clientip} %{NOTSPACE:useragent} %{NOTSPACE:referrer} %{NUMBER:response} %{NUMBER:subresponse} %{NUMBER:scstatus} %{NUMBER:timetaken}"]
}
}
}
output {
elasticsearch {
protocol => "http"
host => "10.191.132.86"
port => "9200"
}
}
看起来您可以通过设置类型来过滤不同的数据,并在其他类型中输入。但如果它们来自同一来源,我该如何指定不同类型?
:)谢谢!
答案 0 :(得分:1)
NXLog使用值 iis_1 , iis_2 等设置字段 SourceModuleName 。您可能希望使用此字段。
答案 1 :(得分:0)
执行此操作的方法是按每个日志中的已知记录条目进行过滤,而不会存在于另一个日志中,例如[cs_bytes etc]:
e.g。
if [iisfield] {
mark type as IIS
else
mark type as EventLog
}
我编写了一个IIS和事件日志代理,用于捕获Logit.io的日志,他们可能已经完成了您已经想要的所有事情