Skip to content

Commit b11deff

Browse files
committed
cleaning up logging page further. adding new hosted service
1 parent c401842 commit b11deff

File tree

3 files changed

+45
-38
lines changed

3 files changed

+45
-38
lines changed

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-06-01T08:51:45Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-06-01T09:42:21Z</updated></feed>

logging.html

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -65,27 +65,6 @@ <h2>Logging Aggregators</h2>
6565
<p>Another advantage of log aggregatortion tools is they allow you to set up
6666
custom alerts and alarms so you can get notified when error rates breach a
6767
certain threshold.</p>
68-
<h3>Log Aggregator Third Party Services</h3>
69-
<ul>
70-
<li>
71-
<p><a href="https://www.loggly.com/">loggly</a> Loggly is a third party cloud based
72-
application that aggregates logs. They have instructions for every major
73-
language, including python. It includes email alerting on custom searches. </p>
74-
</li>
75-
<li>
76-
<p><a href="https://papertrailapp.com/">papertrail</a> Paper trail is similar to both
77-
loggly and splunk and provides integration with S3 for long term storage.</p>
78-
</li>
79-
<li>
80-
<p><a href="http://www.splunk.com/">splunk</a> Splunk offers third party cloud and self
81-
hosted solutions for event aggregation. It excells at searching and data
82-
mining any text based data. </p>
83-
</li>
84-
<li>
85-
<p><a href="http://raygun.io/">Raygun</a> logs errors and provides immediate notification
86-
when issues arise.</p>
87-
</li>
88-
</ul>
8968
<h3>Open Source Log Aggregators</h3>
9069
<ul>
9170
<li>
@@ -112,6 +91,31 @@ <h3>Open Source Log Aggregators</h3>
11291
used with any language. </p>
11392
</li>
11493
</ul>
94+
<h3>Hosted Log Aggregator Services</h3>
95+
<ul>
96+
<li>
97+
<p><a href="https://www.loggly.com/">Loggly</a> Loggly is a third party cloud based
98+
application that aggregates logs. They have instructions for every major
99+
language, including python. It includes email alerting on custom searches. </p>
100+
</li>
101+
<li>
102+
<p><a href="https://papertrailapp.com/">Papertrail</a> Paper trail is similar to both
103+
loggly and splunk and provides integration with S3 for long term storage.</p>
104+
</li>
105+
<li>
106+
<p><a href="http://www.splunk.com/">Splunk</a> Splunk offers third party cloud and self
107+
hosted solutions for event aggregation. It excells at searching and data
108+
mining any text based data. </p>
109+
</li>
110+
<li>
111+
<p><a href="http://raygun.io/">Raygun</a> logs errors and provides immediate notification
112+
when issues arise.</p>
113+
</li>
114+
<li>
115+
<p><a href="https://www.scalyr.com/">Scalyr</a> provides log aggregation, dashboards,
116+
alerts and search in a user interface on top of standard logs.</p>
117+
</li>
118+
</ul>
115119
<h2>Logging resources</h2>
116120
<ul>
117121
<li>

source/content/pages/08-monitoring-analytics/0801-logging.markdown

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -52,22 +52,6 @@ custom alerts and alarms so you can get notified when error rates breach a
5252
certain threshold.
5353

5454

55-
### Log Aggregator Third Party Services
56-
* [loggly](https://www.loggly.com/) Loggly is a third party cloud based
57-
application that aggregates logs. They have instructions for every major
58-
language, including python. It includes email alerting on custom searches.
59-
60-
* [papertrail](https://papertrailapp.com/) Paper trail is similar to both
61-
loggly and splunk and provides integration with S3 for long term storage.
62-
63-
* [splunk](http://www.splunk.com/) Splunk offers third party cloud and self
64-
hosted solutions for event aggregation. It excells at searching and data
65-
mining any text based data.
66-
67-
* [Raygun](http://raygun.io/) logs errors and provides immediate notification
68-
when issues arise.
69-
70-
7155
### Open Source Log Aggregators
7256
* [Raven](http://raven.readthedocs.org/en/latest/) is a Python client for the
7357
[Sentry](https://github.com/getsentry/sentry) exception logging and
@@ -89,6 +73,25 @@ certain threshold.
8973
used with any language.
9074

9175

76+
### Hosted Log Aggregator Services
77+
* [Loggly](https://www.loggly.com/) Loggly is a third party cloud based
78+
application that aggregates logs. They have instructions for every major
79+
language, including python. It includes email alerting on custom searches.
80+
81+
* [Papertrail](https://papertrailapp.com/) Paper trail is similar to both
82+
loggly and splunk and provides integration with S3 for long term storage.
83+
84+
* [Splunk](http://www.splunk.com/) Splunk offers third party cloud and self
85+
hosted solutions for event aggregation. It excells at searching and data
86+
mining any text based data.
87+
88+
* [Raygun](http://raygun.io/) logs errors and provides immediate notification
89+
when issues arise.
90+
91+
* [Scalyr](https://www.scalyr.com/) provides log aggregation, dashboards,
92+
alerts and search in a user interface on top of standard logs.
93+
94+
9295
## Logging resources
9396
* This
9497
[intro to logging](http://www.blog.pythonlibrary.org/2012/08/02/python-101-an-intro-to-logging/)

0 commit comments

Comments
 (0)