Sha256: 808a19fba6148a97372b192612f744cc9a860a0b59262f6cb8d118408b8e9705

Contents?: true

Size: 1.05 KB

Versions: 3

Compression:

Stored size: 1.05 KB

Contents

--- 
inputs:
  all:
  - amqp://activemq/topic/logstash-events
  linux-syslog:
  - /var/log/messages
  - /var/log/kern.log
  - /var/log/auth.log
  - /var/log/user.log
  apache-access:
  - /var/log/apache2/access.log
  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}
    nagios:
      patterns:
      - %{NAGIOSLOGLINE}
- 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"
    nagios:
      epochtime: %s
outputs:
- stdout:///
#- elasticsearch://localhost:9200/logstash/all
- "elasticsearch://localhost:9200/logstash/all_river?method=river&type=rabbitmq&host=activemq&user=guest&pass=guest&vhost=/&queue=es"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
logstash-lite-0.2.20101119183130 etc/prod.yaml
logstash-lite-0.2.20101118141920 etc/prod.yaml
logstash-lite-0.2.20101118134500 etc/prod.yaml