A Logstash shipper for Circus
Project description
# Circus-Logstash
A logger to be used in Circus that ships logs via a Redis queue to Logstash. If there is interest in other brokers they should be able to be added to this project
# Installation
```
pip install circus-logstash
```
# Usage
In your Circus config add the stream class and some info
```
stdout_stream.class = circus_logstash.circus_logstash.LogstashRedisLogger
stdout_stream.refresh_time = 0.3
stdout_stream.urls = redis://localhost:6379/0
stdout_stream.service = service_name
stdout_stream.redis_namespace = logstash:app:production
stdout_stream.subclass = FileStream
stdout_stream.subclass_filename = '/var/log/...'
stdout_stream.field_extra_field = 'field_value'
```
`urls` is a comma separated list of Redis urls to connect to. These are done in round robin if there are any failures connection/writing.
`service` Used throughout for namespacing the log lines
`redis_namespace` The list to write logs to
`subclass` A class to use as well (like writing files still)
Any options prefixed with `subclass_` will be passed to the init of the subclass
Any options prefixed with `field_` can be used to include extra field:value pairs in the Logstash events. This is useful to include extra metadata about this process.
A logger to be used in Circus that ships logs via a Redis queue to Logstash. If there is interest in other brokers they should be able to be added to this project
# Installation
```
pip install circus-logstash
```
# Usage
In your Circus config add the stream class and some info
```
stdout_stream.class = circus_logstash.circus_logstash.LogstashRedisLogger
stdout_stream.refresh_time = 0.3
stdout_stream.urls = redis://localhost:6379/0
stdout_stream.service = service_name
stdout_stream.redis_namespace = logstash:app:production
stdout_stream.subclass = FileStream
stdout_stream.subclass_filename = '/var/log/...'
stdout_stream.field_extra_field = 'field_value'
```
`urls` is a comma separated list of Redis urls to connect to. These are done in round robin if there are any failures connection/writing.
`service` Used throughout for namespacing the log lines
`redis_namespace` The list to write logs to
`subclass` A class to use as well (like writing files still)
Any options prefixed with `subclass_` will be passed to the init of the subclass
Any options prefixed with `field_` can be used to include extra field:value pairs in the Logstash events. This is useful to include extra metadata about this process.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
circus-logstash-0.0.5.tar.gz
(3.1 kB
view details)
File details
Details for the file circus-logstash-0.0.5.tar.gz
.
File metadata
- Download URL: circus-logstash-0.0.5.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7bbd8236c56b1803c4ae4f8982349d776cdd917d682d62e15e4c567df3d8cb6 |
|
MD5 | 60013537f0c3c7a02af4da3afab2cc0c |
|
BLAKE2b-256 | c29f3d4c6faf85120e4daa9d3c3b89c861d49f2918a2d2db805946f408e69dc9 |