项目作者: korovkin

项目描述 :
lines collector
高级语言: Go
项目地址: git://github.com/korovkin/linesd.git
创建时间: 2018-01-24T23:11:41Z
项目社区:https://github.com/korovkin/linesd

开源协议:MIT License

下载


linesd

builds

Build Status

data aggregation

seemlesly collect and uppload batches of data (lines) to AWS S3 for long term storage
and / or Elastic Search cluster for indexing and searching.

example

the following example will consume lines from stdin and push batches of 60 lines / 60 seconds worth of data to S3 bucket and/or Elastic Search cluster of your choice.

  1. while [ yes ] ; do date; sleep 1; done | \
  2. go run cmd/linesd/main.go --config config.json \
  3. --batch_size_seconds 60 \
  4. --batch_size_lines 60

batches of data are accumulated in memory before being uploaded.
https://github.com/prometheus is used for monitoring health and perf of the running process.

references

  1. see: scribed - https://github.com/facebookarchive/scribe
  2. see: splunk - https://www.splunk.com/

coming soon:

  1. binary releases
  2. tests