Book Image

Heroku Cookbook

By : Mike Coutermarsh
Book Image

Heroku Cookbook

By: Mike Coutermarsh

Overview of this book

Heroku is a Platform as a Service that enables developers to rapidly deploy and scale their web applications. Heroku is designed for developer happiness, freeing developers from doing system administrative tasks such as configuring servers and setting up load balancers. Developers are able to focus on what they do best, building web applications, while leaving the details of deployment and scaling to the experts at Heroku. This practical guide is packed with step-by-step solutions to problems faced by every production-level web application hosted on Heroku. You'll quickly get comfortable with managing your Heroku applications from the command line and then learn everything you need to know to deploy and administer production-level web applications.
Table of Contents (17 chapters)
Heroku Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Monitoring uptime with Pingdom


To monitor our application's general speed and uptime, we need to look no further than Pingdom. Pingdom is a third-party service that sends intermittent requests to our application and measures how quickly it responds. If our application stops responding, it will send us an alert. When picking an uptime monitoring service, it's critical to choose one that is independent of the platform you're monitoring. In this case, Pingdom is not run on Heroku; this makes it a good choice to monitor Heroku applications. If Heroku is having issues, the first place we'll get an alert from is usually Pingdom.

How to do it…

It's easy to get started with Pingdom, so let's open up a browser to begin:

  1. First, we'll need to sign up for an account. Let's navigate to https://www.pingdom.com/free/ to sign up for a free account. The free account is enough for us to try out monitoring one application; we'll need to upgrade it if we want to monitor more or have additional methods of notifications...