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

Checking Heroku's status


Occasionally, there will be issues with Heroku itself. The first place to look when experiencing strange issues is Heroku's status page. It keeps track of all the ongoing issues and frequently updates us with information on when we can expect them to be resolved. If we're having trouble deploying our application, seeing downtime, or just general performance issues, Heroku's status is a good place to check.

How to do it…

We can quickly check Heroku's status from the command line. Let's open up a terminal to try it out by performing the following steps:

  1. We can run the following command at any time to get a quick look at Heroku's status:

    $ heroku status
    === Heroku Status
    Development: No known issues at this time.
    Production:  No known issues at this time. 
    
  2. For more detailed information, we can take a look at Heroku's status page (https://status.heroku.com/). It shows all the current and past service interruptions:

Any issues with Heroku will most likely affect our application...