Heroku获取特定日期的日志

时间:2018-03-13 04:23:02

标签: heroku heroku-toolbelt heroku-postgres heroku-cli heroku-api

我正在使用Heroku,现在我需要按日期查看旧日志。我用谷歌搜索但我没有任何解决方案。任何人都知道如何获取特定日期的日志?

heroku logs --app myproject -n 200000 

也是我试过的尾部命令

heroku logs --source app --tail

但是上面的命令只返回最多1500行,即使我增加然后我只得到2k行。

即使我读了文件 https://devcenter.heroku.com/articles/logging

2 个答案:

答案 0 :(得分:2)

Heroku Logplex仅存储应用程序dynos和附加组件中的最后1500个日志行。要长期存储和搜索日志,您需要将日志流式传输到外部服务提供商。 Heroku提供了许多日志记录加载项:https://elements.heroku.com/addons,或者您可以通过设置日志耗尽来使用自己的服务:https://devcenter.heroku.com/articles/log-drains

答案 1 :(得分:0)

我使用了Papertrail Addon

https://elements.heroku.com/addons/papertrail

这个插件作为搜索日志功能我们也可以根据日期下载日志档案

enter image description here

enter image description here