Are you looking for downloads, a tutorial, or the manifesto? </clippy>
Dendrite scrapes your existing logs and re-emits a unified log stream in modern, sensible, structured formats like JSON and StatsD over common protocols such as TCP, UDP, and file streams. SSL/TLS, RFC5424 Syslog, HTTP, etc., should be coming soon (Want to contribute?).
Once you have a unified log stream, it's easy to build and use tools that consume, forward, and analyze your logs in scalable and understandable ways.
All applications generate logs. Not all applications are instrumented for metrics.
There are too many disparate instrumentation libraries such as JMX, StatsD, Metrics, Ostrich, and others. (We might start polling them later, if people find this convenient.)
Files are easy to read. Extracting metrics and statistics out of log files can be much easier than instrumenting an entire application to emit metrics.
In today's open-source environment, it's common for, e.g., a Ruby on Rails app, to be served by HAProxy, Nginx, a Varnish server, a Rack server, and Rails itself. And then you'll want slow query logs from your database and your Redis server... and what about your work queue system...? The list goes on!
With Dendrite, it's easy to create and share useful configuration cookbooks for each of these services, drop them into your /etc/dendrite/conf.d
directory, reload Dendrite, and be off and running with real-time metrics.
Logs are more than lines of text. Dendrite understands dates, numbers, counters, timings, searchable strings, fields, and more.
Running the optimized agent on your servers typically consumes less than 5MB of RAM, and very little CPU.
Dendrite will load a config file at /etc/dendrite/conf.yaml
. This is overridable with the -f
flag. Dendrite will then load any YAML files it can find in a conf.d
directory below the main conf.yml
config file. The configurations in these files will be merged into the main config file. By convention, conf.d
config files should only contain one source or destination group each.
The primary YAML file follows a format looks like this:
global:
# Where we store pointers into the current position of files
offset_dir: /var/lib/dendrite
# Number of exiting bytes to consume when we observe a new file. Equivalent
# to tail -n, but with bytes instead of lines. -1 for unlimited.
max_backfill_bytes: 0
# more keys may be added in later dendrite versions
sources:
# ... (usually empty, delegated to the conf.d)
destinations:
# ... (usually empty, delegated to the conf.d)
A typical conf.d yaml file looks like:
sources:
# a key/name for the service
syslog:
# Astericks, etc are useful. Syntax is documented at
# http://golang.org/pkg/path/filepath/#Match
glob: /var/log/system.log
# The log lines are parsed with a RE2 regex
# (https://code.google.com/p/re2/wiki/Syntax). Named matching groups
# become columns in the structured output.
#
# This pattern parses my OS X syslog. Syslog isn't consistent,
# so this may not work on your system.
pattern: "(?P<date>.*?:[0-9]+) (?P<user>\\S+) (?P<prog>\\w+)\\[(?P<pid>\\d+)\\]: (?P<text>.*)"
# The output of the regexp can be post-processed. This allows you
# to specify type information, etc.
#
# Current field types are string, date, int, double and timestamp.
#
# There are "treatments," which include tokenized, as well as
# gauge, timing, and metric. The last few treatments are for
# specialized integers, and will be treated differently by statsd.
fields:
# tstamp is the field name in the output.
tstamp:
# date is the name of the regex match group.
name: date
type: timestamp
format: "Jan _2 15:04:05"
line:
# you can match numbered subgroups, in addition to named ones.
group: 0
tokens:
name: text
type: string
# this will create an array of the matched tokens.
treatment: tokenized
pattern: \S+\b
text:
# If there wasn't the tokens field above, this would be
# unneccessary. All named match groups are implicitly turned into
# string fields. However, since I used the "text" match group
# above, the implicit string match no longer exists.
type: string
pid:
type: int
Or for a destination conf.d
YAML file:
destinations:
# a key/url for the destination. Typically, the scheme portion of the url
# will be of the form transport+encoding. We currently support statsd and
# json encodings, as well as udp, tcp, and file transports.
#
# Also, the colon in urls always needs to be quoted, so as not to be
# confused with nested yaml.
stats: "udp+statsd://foo.bar.com:1234"
destinations:
# another example
tmp: "file+json:///tmp/json.log"
Look in the cookbook directory for more examples.
go get github.com/onemorecloud/dendrite/cmd/dendrite
.Join us in our Google Group or HipChat room to give feedback and chat about how you might be interested in using and/or contributing.
Ideas: