Purge old and unused test stuff

This commit is contained in:
Jordan Sissel 2012-08-29 16:33:45 -07:00
parent f7a16a6be4
commit 5d6bc3c79e
10 changed files with 0 additions and 151 deletions

View file

@ -1,15 +0,0 @@
input {
amqp {
type => "foo"
host => "localhost"
exchange_type => "fanout"
name => "logstash"
#user => "guest"
#password => "guest"
}
}
output {
stdout { }
elasticsearch { }
}

View file

@ -1,12 +0,0 @@
input {
amqp {
type => "foo"
host => "localhost"
exchange_type => "fanout"
name => "logstash"
}
}
output {
stdout { }
}

View file

@ -1,31 +0,0 @@
#!/bin/sh
if [ -z "$1" ] ; then
echo "Usage: $0 <command>"
echo "Example: $0 java -jar logstash-1.0.12.jar"
exit 1
fi
output='
output {
amqp {
host => "localhost"
exchange_type => "fanout"
name => "logstash"
}
} '
input='
input {
amqp {
type => "amqpexample"
host => "localhost"
exchange_type => "fanout"
name => "logstash"
}
} '
"$@" agent -e "$output" -- agent -e "$input"
#"$@" agent -e "$output"
#"$@" agent -e "$input"

View file

@ -1,21 +0,0 @@
input {
stdin {
type => "stuff"
}
}
#filter {
#grok {
#type => "stuff"
#pattern => ["%{SYSLOG_SUDO}", "%{SYSLOG_KERNEL}", "%{SYSLOGLINE}"]
#}
#}
output {
#stdout { }
amqp {
host => "localhost"
exchange_type => "fanout"
name => "logstash"
}
}

View file

@ -1,10 +0,0 @@
input {
stdin {
type => "stuff"
}
}
output {
stdout { }
elasticsearch { }
}

View file

@ -1,11 +0,0 @@
#!/bin/sh
if [ -z "$1" ] ; then
echo "Usage: $0 <command>"
echo "Example: $0 java -jar logstash-1.0.12.jar"
exit 1
fi
output='output { elasticsearch { embedded => true } } '
"$@" agent -e "$output"

View file

@ -1,7 +0,0 @@
input {
syslog { type => "foo" port => 5544 }
}
output {
stdout { }
}

View file

@ -1,4 +0,0 @@
[ -z "$1" ] && set -- 3000
ulimit -c unlimited
(sleep 5; seq -f "Feb 21 19:38:11 snack foo: hello world %g" $1 ; sleep 10) \
| exec -a "logstash" jruby -J-server -J-Xmx20m -J-verbose:gc ../../bin/logstash -f simple.conf -v

View file

@ -1,16 +0,0 @@
input {
stdin {
type => "foo"
}
}
#filter {
#grok {
#type => "foo"
##pattern => "%{SYSLOGLINE}"
#}
#}
output {
stdout { debug => true }
}

View file

@ -1,24 +0,0 @@
elasticsearch-%.zip:
wget --no-check-certificate http://github.com/downloads/elasticsearch/elasticsearch/$@
elasticsearch-%:
$(MAKE) $@.zip
#unzip $@.zip
jar xf $@.xip
init-elasticsearch-%:
$(MAKE) elasticsearch-$*
cd elasticsearch-$*; bin/plugin install river-rabbitmq
run-elasticsearch-%:
$(MAKE) elasticsearch-$*
cd elasticsearch-$*; \
bin/elasticsearch -f $(ESFLAGS)
wipe-elasticsearch-%:
$(MAKE) elasticsearch-$*
rm -rf elasticsearch-$*/work elasticsearch-$*/data
remove-elasticsearch-%:
rm -rf elasticsearch-$* elasticsearch-$*.zip