diff options
author | tobik <tobik@FreeBSD.org> | 2017-06-22 00:26:30 +0800 |
---|---|---|
committer | tobik <tobik@FreeBSD.org> | 2017-06-22 00:26:30 +0800 |
commit | 8aafc4a4439973265e9f2a004ae1d0b4e10f8078 (patch) | |
tree | e01dba77c4a020bacf2f8d0b0747c878adacd007 /sysutils/Makefile | |
parent | 80b8aa1a88a64f485f1c32b882746de5bee287c8 (diff) | |
download | freebsd-ports-gnome-8aafc4a4439973265e9f2a004ae1d0b4e10f8078.tar.gz freebsd-ports-gnome-8aafc4a4439973265e9f2a004ae1d0b4e10f8078.tar.zst freebsd-ports-gnome-8aafc4a4439973265e9f2a004ae1d0b4e10f8078.zip |
New port: sysutils/flowgger
Flowgger is a fast, simple and lightweight data collector. It reads
log entries over a given protocol, extracts them, decodes them using a
given format, re-encodes them into a different format, and
asynchronously pushes the result into a remote data store.
Flowgger is designed to be:
- Paranoid: it carefully validates input data to prevent injection of
malformed/incomplete records down the chain.
- Safe: written in Rust, without any unsafe code.
- Fast: even though messages are systematically parsed and validated,
Flowgger is orders of magnitude faster than Logstash and Fluentd.
- Standalone: it comes as a single executable file, and doesn't require a JVM.
Flowgger supports common input types: stdin, UDP, TCP, TLS and Redis,
as well as multiple input formats: JSON (GELF), LTSV, Cap'n Proto and
RFC5424. Normalized messages can be sent to Kafka, Graylog, to
downstream Flowgger servers, or to other log collectors for further
processing.
WWW: https://github.com/jedisct1/flowgger
Approved by: mat (mentor)
Differential Revision: https://reviews.freebsd.org/D11162
Diffstat (limited to 'sysutils/Makefile')
-rw-r--r-- | sysutils/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index c0f7ba48aef8..10d0f480cdae 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -312,6 +312,7 @@ SUBDIR += flexbackup SUBDIR += flock SUBDIR += flog + SUBIDR += flowgger SUBDIR += fluent-bit SUBDIR += flyback SUBDIR += fonteditfs |