Skip to content

Commit

Permalink
- move stuff around
Browse files Browse the repository at this point in the history
  • Loading branch information
jordansissel committed Apr 9, 2011
1 parent 17575b4 commit ffc0d6b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions etc/examples/indexer.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
input {
amqp {
host => "127.0.0.1"
user => "guest"
pass => "guest"
exchange_type => "topic"
name => "testing"
type => "all"
}

tcp {
port => 1234
type => "linux-syslog"
}
}

filter {
grok {
type => "linux-syslog"
pattern => ["%{SYSLOG_SUDO}", "%{SYSLOG_KERNEL}", "%{SYSLOGLINE}"]
add_tag => "grok"
add_field => ["test_key", "the pid is %{pid}"]
}
}

output {
stdout {
debug => true
}
}

0 comments on commit ffc0d6b

Please sign in to comment.