mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 22:57:16 -04:00
Purge old and unused test stuff
This commit is contained in:
parent
f7a16a6be4
commit
5d6bc3c79e
10 changed files with 0 additions and 151 deletions
|
@ -1,15 +0,0 @@
|
|||
input {
|
||||
amqp {
|
||||
type => "foo"
|
||||
host => "localhost"
|
||||
exchange_type => "fanout"
|
||||
name => "logstash"
|
||||
#user => "guest"
|
||||
#password => "guest"
|
||||
}
|
||||
}
|
||||
|
||||
output {
|
||||
stdout { }
|
||||
elasticsearch { }
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
input {
|
||||
amqp {
|
||||
type => "foo"
|
||||
host => "localhost"
|
||||
exchange_type => "fanout"
|
||||
name => "logstash"
|
||||
}
|
||||
}
|
||||
|
||||
output {
|
||||
stdout { }
|
||||
}
|
|
@ -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"
|
|
@ -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"
|
||||
}
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
input {
|
||||
stdin {
|
||||
type => "stuff"
|
||||
}
|
||||
}
|
||||
|
||||
output {
|
||||
stdout { }
|
||||
elasticsearch { }
|
||||
}
|
|
@ -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"
|
|
@ -1,7 +0,0 @@
|
|||
input {
|
||||
syslog { type => "foo" port => 5544 }
|
||||
}
|
||||
|
||||
output {
|
||||
stdout { }
|
||||
}
|
|
@ -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
|
|
@ -1,16 +0,0 @@
|
|||
input {
|
||||
stdin {
|
||||
type => "foo"
|
||||
}
|
||||
}
|
||||
|
||||
#filter {
|
||||
#grok {
|
||||
#type => "foo"
|
||||
##pattern => "%{SYSLOGLINE}"
|
||||
#}
|
||||
#}
|
||||
|
||||
output {
|
||||
stdout { debug => true }
|
||||
}
|
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue