Skip to content

Commit 9a7573c

Browse files
author
Matt Brown
committed
Finish up the writeup on logging aggregators
1 parent 7e6f73a commit 9a7573c

1 file changed

Lines changed: 13 additions & 8 deletions

File tree

source/content/pages/web-framework-logging.rst

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,29 +25,34 @@ log data to Sentry for aggregation. Sentry provides a clean web application
2525
interface for viewing the exceptions. Sentry can also be configured with a
2626
mail plugin to send emails when exceptions occur.
2727

28-
2928
-------------------
3029
Logging Aggregators
3130
-------------------
3231
When you are running your application on several servers, it is helpful
33-
to have a monitoring tool called a "logging aggregator." You can configure your
34-
application to forward your application and system logs to one place that
35-
allows you to view, search, and monitor logging events across all of your machinces.
32+
to have a monitoring tool called a "logging aggregator". You can configure your
33+
application to forward your system and application logs to one location that
34+
provides tools such as to viewing searching, and monitoring logging events across your cluster.
3635

37-
Another advantage of log aggregators tools is they allow you to set up custom alerts
38-
and alarms so you can get notified when error rates breach a certain threshold
36+
Another advantage of log aggregatortion tools is they allow you to set up custom alerts
37+
and alarms so you can get notified when error rates breach a certain threshold.
3938

4039
Log Aggregator Third Party Services
4140
-----------------------------------
4241
`loggly <https://www.loggly.com/>`_ Loggly is a third party cloud based application that
4342
aggregates logs. They have instructions for every major language, including python. It includes email
4443
alerting on custom searches.
44+
`papertrail <https://papertrailapp.com/>`_ Paper trail is similar to both loggly and splunk and provides
45+
integration with S3 for
4546
`splunk <http://www.splunk.com/>`_ Splunk offers third party cloud and self hosted solutions
46-
for event aggregation. It excells at searching and data mining any text based data.
47+
for event aggregation. It excells at searching and data mining any text based data.
4748

4849
Open Source Projects
4950
--------------------
50-
`Logstash <http://logstash.net/>`_
5151
`Graylog2 <http://graylog2.org/>`_ Provides a central server for log aggregation as well as a GUI for
5252
browsing and searching through log events. There are libraries for most major languages, including python.
5353
Saves data in elasicache.
54+
`Logstash <http://logstash.net/>`_ Similar to Graylog2, logstash offers features to programatically
55+
configure log data workflows.
56+
`Scribe <https://github.com/facebook/scribe>`_ A project written by facebook to aggregate logs. It's designed
57+
to run on multiple servers and scale with the rest of your cluster. Uses the Thrift messagaing format so it can
58+
be used with any language.

0 commit comments

Comments
 (0)