Tail your log, extract the data, and send it to Fluentd
Project description
Flosculus is a work-in-progress script to tail rotated log file, parse each line, and send it to Fluentd. It is intended to replace a subset of Fluentd in_tail features.
Crash Course
First things first, install Flosculus into your Python path.
$ git clone git://github.com/iromli/flosculus.git
$ cd flosculus
$ python setup.py install
Afterwards you need to create a configuration file to run the flosculusd event loop. The convenient way to do this boring thing is by invoking the flosculusd --init > flosculus.ini command. Here’s an example of flosculus.ini (you can call it whatever you like):
[flosculus]
; the IP address (or host name) of the remote server
remote_host = 127.0.0.1
; the TCP port of the remote server
remote_port = 24224
; Each section with `path:/path/to/log` is a valid config
[log:/var/log/nginx/access.log]
; the label
tag = example.api.access
; format to use, either use 'nginx' or custom regex
format = nginx
By default, the format option is matched against nginx default access log format. You may change the format as long as using a valid Python regex.
[log:/var/log/nginx/access.log]
format = (?P<remote>[^ ]*) (?P<host>[^ ]*) (?P<user>[^ ]*) \[(?P<time>[^\]]*)\] "(?P<method>\S+)(?: +(?P<path>[^\"]*) +\S*)?" (?P<code>[^ ]*) (?P<size>[^ ]*)(?: "(?P<referer>[^\"]*)" "(?P<agent>[^\"]*)")(?: (?P<request_time>[^ ]*) (?P<upstream_time>[^ ]*) (?P<pipe>[\.|p]))?
And did I already mentioned that you can have multiple log files? Simply copy the whole log section.
; Each section with `path:/path/to/log` is a valid config
[log:/var/log/nginx/access.log]
; the label
tag = example.api.access
; format to use, either use 'nginx' or custom regex
format = nginx
; Each section with `path:/path/to/log` is a valid config
[log:/var/log/nginx/timed-combined.access.log]
; the label
tag = test.api.access
; format to use, either use 'nginx' or custom regex
format = (?P<remote>[^ ]*) (?P<host>[^ ]*) (?P<user>[^ ]*) \[(?P<time>[^\]]*)\] "(?P<method>\S+)(?: +(?P<path>[^\"]*) +\S*)?" (?P<code>[^ ]*) (?P<size>[^ ]*)(?: "(?P<referer>[^\"]*)" "(?P<agent>[^\"]*)")(?: (?P<request_time>[^ ]*) (?P<upstream_time>[^ ]*) (?P<pipe>[\.|p]))?
; the IP address (or host name) of the remote server
; use another Fluentd remote host
remote_host = 10.0.0.1
; the TCP port of the remote server
; use another Fluentd remote port
remote_port = 24225
Assuming the configuration is written properly, run the event loop to see its magic (well, not really):
$ flosculusd -c flosculus.ini
Credits
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file flosculus-0.3.0.tar.gz
.
File metadata
- Download URL: flosculus-0.3.0.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0e29b59383b1e327d122f301509554d6d824dedbd4f41b53091370dcf71b4ef |
|
MD5 | 938609625728335e0057911d437a2dd9 |
|
BLAKE2b-256 | d19ae98b69e1d7b204610458a1d334b98b28b93267715570d3ebfe7fbeb05d32 |