Skip to content

Commit d1e0263

Browse files
committed
updating monitoring resources
1 parent c713b16 commit d1e0263

File tree

3 files changed

+88
-47
lines changed

3 files changed

+88
-47
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-04-10T06:55:51Z</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-04-11T09:50:51Z</updated></feed>

monitoring.html

Lines changed: 54 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -102,38 +102,76 @@ <h2>Monitoring layers</h2>
102102
<li>Database querying performance</li>
103103
</ol>
104104
<h2>Monitoring Third Party Services</h2>
105+
<ul>
106+
<li>
105107
<p><a href="http://newrelic.com/">New Relic</a>. Application and database monitoring as
106-
well as plug ins for capturing and analyzing additional data about tools in
107-
your stack.</p>
108+
well as plug ins for capturing and analyzing additional data about tools in
109+
your stack.</p>
110+
</li>
111+
<li>
108112
<p><a href="http://copperegg.com/">CopperEgg</a> is lower-level monitoring on server and
109-
infrastructure. It's popular with DevOps shops that are making changes to
110-
their production environments and want immediate feedback on the results
111-
of those modifications.</p>
113+
infrastructure. It's popular with DevOps shops that are making changes to
114+
their production environments and want immediate feedback on the results
115+
of those modifications.</p>
116+
</li>
117+
<li>
112118
<p><a href="http://status.io/">Status.io</a> focuses on uptime and response metrics
113-
transparency for your users.</p>
119+
transparency for your users.</p>
120+
</li>
121+
<li>
114122
<p><a href="http://www.pagerduty.com/">PagerDuty</a> alerts a designated person or group
115-
if there are stability, performance, or uptime issues with an application.</p>
123+
if there are stability, performance, or uptime issues with an application.</p>
124+
</li>
125+
</ul>
116126
<h2>Open Source Monitoring Projects</h2>
127+
<ul>
128+
<li>
117129
<p><a href="https://github.com/etsy/statsd/">statsd</a> is a node.js network daemon that
118-
listens for metrics and aggregates them for transfer into another service
119-
such as Graphite.</p>
130+
listens for metrics and aggregates them for transfer into another service
131+
such as Graphite.</p>
132+
</li>
133+
<li>
120134
<p><a href="https://graphite.readthedocs.org/en/latest/overview.html">Graphite</a> stores
121-
time-series data and displays them in graphs through a Django web application.</p>
135+
time-series data and displays them in graphs through a Django web application.</p>
136+
</li>
137+
<li>
122138
<p><a href="http://github.hubspot.com/bucky/">Bucky</a> measures the performance of a
123-
web application from end user's browsers and sends that data back to the
124-
server for collection.</p>
139+
web application from end user's browsers and sends that data back to the
140+
server for collection.</p>
141+
</li>
142+
<li>
125143
<p><a href="http://sensuapp.org/">Sensu</a> is an open source monitoring framework
126-
written in Ruby but applicable to any programming language web application.</p>
144+
written in Ruby but applicable to any programming language web application.</p>
145+
</li>
146+
<li>
127147
<p><a href="http://vimeo.github.io/graph-explorer/">Graph Explorer</a> by Vimeo is a
128-
Graphite-based dashboard with added features and a slick design.</p>
148+
Graphite-based dashboard with added features and a slick design.</p>
149+
</li>
150+
</ul>
129151
<h2>Monitoring Resources</h2>
152+
<ul>
153+
<li>
130154
<p><a href="http://www.paperplanes.de/2011/1/5/the_virtues_of_monitoring.html">The Virtues of Monitoring</a></p>
155+
</li>
156+
<li>
131157
<p><a href="http://blog.docker.io/2013/07/effortless-monitoring-with-collectd-graphite-and-docker/">Effortless Monitoring with collectd, Graphite, and Docker</a></p>
158+
</li>
159+
<li>
160+
<p><a href="http://matt.aimonetti.net/posts/2013/06/26/practical-guide-to-graphite-monitoring/">Practical Guide to StatsD/Graphite Monitoring</a>
161+
is a detailed guide with code examples for monitoring infrastructure.</p>
162+
</li>
163+
<li>
132164
<p>Bit.ly describes the
133-
"<a href="http://word.bitly.com/post/74839060954/ten-things-to-monitor">10 Things They Forgot to Monitor</a>"
134-
beyond the standard metrics such as disk &amp; memory usage.</p>
165+
"<a href="http://word.bitly.com/post/74839060954/ten-things-to-monitor">10 Things They Forgot to Monitor</a>"
166+
beyond the standard metrics such as disk &amp; memory usage.</p>
167+
</li>
168+
<li>
135169
<p><a href="http://aarvik.dk/four-linux-server-monitoring-and-management-tools/">Four Linux server monitoring tools</a></p>
170+
</li>
171+
<li>
136172
<p><a href="https://blog.serverdensity.com/how-to-design-useful-monitoring-graphs-and-visualizations/">How to design useful monitoring and graphing visualizations</a></p>
173+
</li>
174+
</ul>
137175
<br/>
138176
Next read the
139177
<a href="/configuration-management.html">configuration management</a> section.

source/content/pages/20-monitoring/2001-monitoring.markdown

Lines changed: 33 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -37,52 +37,55 @@ application is read-heavy, write-heavy, or subject to rapid swings in traffic.
3737

3838

3939
## Monitoring Third Party Services
40-
[New Relic](http://newrelic.com/). Application and database monitoring as
41-
well as plug ins for capturing and analyzing additional data about tools in
42-
your stack.
40+
* [New Relic](http://newrelic.com/). Application and database monitoring as
41+
well as plug ins for capturing and analyzing additional data about tools in
42+
your stack.
4343

44-
[CopperEgg](http://copperegg.com/) is lower-level monitoring on server and
45-
infrastructure. It's popular with DevOps shops that are making changes to
46-
their production environments and want immediate feedback on the results
47-
of those modifications.
44+
* [CopperEgg](http://copperegg.com/) is lower-level monitoring on server and
45+
infrastructure. It's popular with DevOps shops that are making changes to
46+
their production environments and want immediate feedback on the results
47+
of those modifications.
4848

49-
[Status.io](http://status.io/) focuses on uptime and response metrics
50-
transparency for your users.
49+
* [Status.io](http://status.io/) focuses on uptime and response metrics
50+
transparency for your users.
5151

52-
[PagerDuty](http://www.pagerduty.com/) alerts a designated person or group
53-
if there are stability, performance, or uptime issues with an application.
52+
* [PagerDuty](http://www.pagerduty.com/) alerts a designated person or group
53+
if there are stability, performance, or uptime issues with an application.
5454

5555

5656
## Open Source Monitoring Projects
57-
[statsd](https://github.com/etsy/statsd/) is a node.js network daemon that
58-
listens for metrics and aggregates them for transfer into another service
59-
such as Graphite.
57+
* [statsd](https://github.com/etsy/statsd/) is a node.js network daemon that
58+
listens for metrics and aggregates them for transfer into another service
59+
such as Graphite.
6060

61-
[Graphite](https://graphite.readthedocs.org/en/latest/overview.html) stores
62-
time-series data and displays them in graphs through a Django web application.
61+
* [Graphite](https://graphite.readthedocs.org/en/latest/overview.html) stores
62+
time-series data and displays them in graphs through a Django web application.
6363

64-
[Bucky](http://github.hubspot.com/bucky/) measures the performance of a
65-
web application from end user's browsers and sends that data back to the
66-
server for collection.
64+
* [Bucky](http://github.hubspot.com/bucky/) measures the performance of a
65+
web application from end user's browsers and sends that data back to the
66+
server for collection.
6767

68-
[Sensu](http://sensuapp.org/) is an open source monitoring framework
69-
written in Ruby but applicable to any programming language web application.
68+
* [Sensu](http://sensuapp.org/) is an open source monitoring framework
69+
written in Ruby but applicable to any programming language web application.
7070

71-
[Graph Explorer](http://vimeo.github.io/graph-explorer/) by Vimeo is a
72-
Graphite-based dashboard with added features and a slick design.
71+
* [Graph Explorer](http://vimeo.github.io/graph-explorer/) by Vimeo is a
72+
Graphite-based dashboard with added features and a slick design.
7373

7474

7575
## Monitoring Resources
76-
[The Virtues of Monitoring](http://www.paperplanes.de/2011/1/5/the_virtues_of_monitoring.html)
76+
* [The Virtues of Monitoring](http://www.paperplanes.de/2011/1/5/the_virtues_of_monitoring.html)
7777

78-
[Effortless Monitoring with collectd, Graphite, and Docker](http://blog.docker.io/2013/07/effortless-monitoring-with-collectd-graphite-and-docker/)
78+
* [Effortless Monitoring with collectd, Graphite, and Docker](http://blog.docker.io/2013/07/effortless-monitoring-with-collectd-graphite-and-docker/)
7979

80-
Bit.ly describes the
81-
"[10 Things They Forgot to Monitor](http://word.bitly.com/post/74839060954/ten-things-to-monitor)"
82-
beyond the standard metrics such as disk & memory usage.
80+
* [Practical Guide to StatsD/Graphite Monitoring](http://matt.aimonetti.net/posts/2013/06/26/practical-guide-to-graphite-monitoring/)
81+
is a detailed guide with code examples for monitoring infrastructure.
8382

84-
[Four Linux server monitoring tools](http://aarvik.dk/four-linux-server-monitoring-and-management-tools/)
83+
* Bit.ly describes the
84+
"[10 Things They Forgot to Monitor](http://word.bitly.com/post/74839060954/ten-things-to-monitor)"
85+
beyond the standard metrics such as disk & memory usage.
8586

86-
[How to design useful monitoring and graphing visualizations](https://blog.serverdensity.com/how-to-design-useful-monitoring-graphs-and-visualizations/)
87+
* [Four Linux server monitoring tools](http://aarvik.dk/four-linux-server-monitoring-and-management-tools/)
88+
89+
* [How to design useful monitoring and graphing visualizations](https://blog.serverdensity.com/how-to-design-useful-monitoring-graphs-and-visualizations/)
8790

8891

0 commit comments

Comments
 (0)