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: about 1 year 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 (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-02-12T12:56:19.000Z (over 12 years ago)
- Last Synced: 2025-04-18T06:51:08.601Z (about 1 year ago)
- Language: Java
- Size: 198 KB
- Stars: 2
- Watchers: 6
- 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
```