As a guy who develops, deploys and maintains webapps, I had to login to my servers and tail the logs to see issues too many times. It’s a real pain, And anybody who maintains any servers knows this.
I’ve recently found a bunch of very good apps, which make this job very pleasant: PaperTrail is an awesome app which makes it very simple to setup a logging daemon and view all your logs (from all your servers) on their website, It’s a very neat implementation. But, you might not want to send your logs to other apps as they usually have sensitive information.
logstash is another awesome open source implementation for log management. With logstash, you can setup a small central server which collects all your logs and allows you to access them through a variety of interfaces. Another advantage of logstash is that the logs stay on your server under your control, plus it’s open source. The only downside is the one time setup, which, is not that hard. It is very versatile in ways it allows you access to your logs.
If none of them seem to be your thing, here is a small script which I use to tail
remote log files. It runs tail -f
over an ssh connection.
It’s very simple to setup and use. Once you set it up, you can just cd
into
your application directory and run rt
and it will start tailing your log files
instantly. If you have any improvements you can fork this gist and update it.
1 |
|