我在heroku上部署了一个应用程序,它将日志存储在本地文件中,是否可以从heroku检索/读取单个文件?
答案 0 :(得分:0)
我经常使用的一种方法是将每个日志存储在数据库表中。
然后,我做的是在Heroku上转储数据库,然后我可以在本地机器上加载。
请参阅https://devcenter.heroku.com/articles/heroku-postgres-import-export
将备份移动到本地计算机:
$ heroku pgbackups:capture
$ curl -o latest.dump `heroku pgbackups:url`
然后可以加载到本地数据库中。