Search found 105 matches

by pccwglobalit
Mon Aug 07, 2017 11:45 pm
Forum: Nagios Log Server
Topic: haproxy
Replies: 1
Views: 265

haproxy

we want to filtering haproxy tcp log, can we use the below filter? if [program] == 'haproxy' { grok { match => [ 'message', '%{HAPROXY} ] } date { match => [ 'timestamp', 'dd/MMM/yyyy:HH:mm:ss Z' ] } geoip { source => 'client_ip' } } will above filter ok? thanks.
by pccwglobalit
Sun Jul 23, 2017 9:11 pm
Forum: Nagios Log Server
Topic: how to drop nxlog connection message
Replies: 3
Views: 562

how to drop nxlog connection message

There are a lot of nxlog permit connection message. Can i set filter in nxlog or logstash to drop such messages ? The Windows Filtering Platform has permitted a connection. Application Information: Process ID: 1788 Application Name: \device\harddiskvolume2\program files (x86)\nxlog\nxlog.exe Network...
by pccwglobalit
Wed Nov 23, 2016 10:13 pm
Forum: Nagios Log Server
Topic: how to install beats plugin
Replies: 1
Views: 287

how to install beats plugin

how to install beats plugin on nagios log server?
do we need to install on all nodes?
by pccwglobalit
Thu Oct 06, 2016 10:44 am
Forum: Nagios Log Server
Topic: topbeat,packetbeat and filebeat
Replies: 1
Views: 779

topbeat,packetbeat and filebeat

does NLS support topbeat,packetbeat and filebeat?
how to create the indexes?
by pccwglobalit
Thu Jul 14, 2016 9:15 pm
Forum: Nagios XI
Topic: mssql replication
Replies: 1
Views: 389

mssql replication

How to use nagios xi to check mssql 2012 replication status? can we do that? thanks
by pccwglobalit
Tue Jul 05, 2016 1:38 am
Forum: Nagios XI
Topic: how to monitor linux disk IO and bandwidth
Replies: 1
Views: 377

how to monitor linux disk IO and bandwidth

How to monitor linux disk IO and bandwidth? can monitor through snmp?
by pccwglobalit
Thu Jun 30, 2016 3:35 am
Forum: Nagios Log Server
Topic: collectd
Replies: 3
Views: 429

Re: collectd

thanks. nagios log server will have collectd codec like the below input? input { udp { port => 25826 # 25826 matches port specified in collectd.conf buffer_size => 1452 # 1452 is the default buffer size for Collectd codec => collectd { } # specific Collectd codec to invoke type => collectd } }
by pccwglobalit
Wed Jun 29, 2016 8:35 am
Forum: Nagios Log Server
Topic: collectd
Replies: 3
Views: 429

collectd

does NLS support collected input?
by pccwglobalit
Thu Jun 16, 2016 3:10 am
Forum: Nagios Log Server
Topic: apache log combined log
Replies: 5
Views: 569

Re: apache log combined log

yes, i want show host and x-forward-for
by pccwglobalit
Mon Jun 13, 2016 10:38 pm
Forum: Nagios Log Server
Topic: apache log combined log
Replies: 5
Views: 569

Re: apache log combined log

if [program] == 'apache_access' { grok { match => [ 'message', '%{COMBINEDAPACHELOG} %{INT:responseTime}'] } date { match => [ 'timestamp', 'dd/MMM/yyyy:HH:mm:ss Z' ] } mutate { replace => [ 'type', 'apache_access' ] convert => [ 'bytes', 'integer' ] convert => [ 'response', 'integer' ] } } if [prog...