Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/everythingme/logstash-scribeinput
A logstash input plugin which receives scribe log entries via thrift
https://github.com/everythingme/logstash-scribeinput
Last synced: 4 days ago
JSON representation
A logstash input plugin which receives scribe log entries via thrift
- Host: GitHub
- URL: https://github.com/everythingme/logstash-scribeinput
- Owner: EverythingMe
- Created: 2013-10-22T11:09:30.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-12T12:56:19.000Z (over 10 years ago)
- Last Synced: 2023-03-22T17:13:14.949Z (over 1 year ago)
- Language: Java
- Size: 198 KB
- Stars: 2
- Watchers: 7
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
logstash-scribeinput
====================A logstash input plugin which receives scribe log entries via thrift
# Building
To create a bundle-jar with all the dependencies
```
mvn clean compile assembly:single
```# Logstash configuration
```
input {
scribe {
host => "localhost"
port => 8000
}
}
```# Invoking logstash
This is just a rough example showing how to treat the CLASSPATH and plugin-path of logstash
you shouldn't use this exact command, but rather learn the important key parts from it```
java -Xmx400M -server \
-cp scribe_server.jar:logstash-1.2.1-flatjar.jar \
logstash.runner agent \
-p /where/did/i/put/this/downloaded/plugin? \
-f logstash.conf \
-vv
```