Denis
Denis

Reputation: 890

Logging to Redis for Rails applications

I run a Rails application on Heroku, and would like to log all log messages to Redis instead of (or in addition to) the standard logging to file/stdout, for purposes of auditing and analyzing the logs. Is there a straightforward way to accomplish this?

Upvotes: 1

Views: 1092

Answers (1)

Ger Hartnett
Ger Hartnett

Reputation: 11

You'll find ledis - a simple redis based logger at https://github.com/ahoward/ledis

Upvotes: 1

Related Questions