Sha256: 07ccfc3570f6fda78d00371a54ca28d29ba1cc08b92811c8e448619094a16447

Contents?: true

Size: 1.25 KB

Versions: 11

Compression:

Stored size: 1.25 KB

Contents

--- 
# this is a sample logstash config (code is still highly in change, so
# this could change later)
#
#
inputs:
# Give a list of inputs. Tag them for easy query/filter later.
  linux-syslog: # this is the 'linux-syslog' type
  - /var/log/messages # watch /var/log/messages (uses eventmachine-tail)
  - /var/log/kern.log
  - /var/log/auth.log
  - /var/log/user.log
  apache-access: # similar, different type.
  - /var/log/apache2/access.log
  - /b/access
  apache-error:
  - /var/log/apache2/error.log
filters:
- grok:
    linux-syslog: # for logs of type 'linux-syslog'
      patterns:
      - %{SYSLOGLINE}
    apache-access: # for logs of type 'apache-error'
      patterns:
      - %{COMBINEDAPACHELOG}
- date:
    linux-syslog:  # for logs of type 'linux-syslog'
      # Look for a field 'timestamp' with this format, parse and it for the timestamp
      # This field comes from the SYSLOGLINE pattern
      timestamp: "%b %e %H:%M:%S"
      timestamp8601: ISO8601
    apache-access:
      timestamp: "%d/%b/%Y:%H:%M:%S %Z"
outputs:
- stdout:///
- elasticsearch://localhost:9200/logs/all
# But we could write to mongodb, too.
#  - mongodb://localhost/parsedlogs
# And also write to an AMQP topic
#  - amqp://localhost/topic/parsedlogs
# Write to stdout ... etc.
# - stdout:///

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
logstash-lite-0.2.20110505142231 etc/logstash-standalone.yaml
logstash-lite-0.2.20110422152244 etc/logstash-standalone.yaml
logstash-lite-0.2.20110405105201 etc/logstash-standalone.yaml
logstash-lite-0.2.20110331121236 etc/logstash-standalone.yaml
logstash-lite-0.2.20110329105411 etc/logstash-standalone.yaml
logstash-lite-0.2.20110206003603 etc/logstash-standalone.yaml
logstash-lite-0.2.20110203130400 etc/logstash-standalone.yaml
logstash-lite-0.2.20110122143801 etc/logstash-standalone.yaml
logstash-lite-0.2.20110112115019 etc/logstash-standalone.yaml
logstash-lite-0.2.20101222161646 etc/logstash-standalone.yaml
logstash-lite-0.2.20101208111718 etc/logstash-standalone.yaml