Varun
Varun

Reputation: 665

Getting Heroku logs for past few weeks

I'm trying to get the production logs for the past few weeks off of heroku but when I do heroku logs, it just returns a few lines showing the production log for today.

Any way to get heroku logs for the past few weeks?

Thanks.

Upvotes: 10

Views: 5657

Answers (3)

Joost Schuur
Joost Schuur

Reputation: 4482

(Correcting my own old response) Previously, Heroku only provided you with access to the last 100 lines. Now this limit apppears to have been raised.

There's also this pretty cool sounding logentries addon, with generous free offerings.

Upvotes: 5

rtfminc
rtfminc

Reputation: 6363

Any number up to 500 lines can now be retrieved using the -n flag.

heroku logs -n 420

As well you can also run:

heroku logs -t

And let that run for a while.

EDIT: And you can use third party tools like papertrail. See : papertrail link

Upvotes: 14

IEnumerator
IEnumerator

Reputation: 2972

Not sure about going back given their limitations - but going forward you can forward your logs to an external syslog server.

Syslog drains - Premium Add-on

Upvotes: 1

Related Questions