How to access redis logs on AWS ElastiCache

Question:

We have been facing latency issues with our redis lately.

We are trying to debug what’s going on, I came across this post and it mentioned going over the redis logs to investigate how often the db is saved in the background (ie using bgsave)

I did some research on how to access the redis logs file but couldn’t find anything on how to find it on AWS ElastiCache. I also tried running the monitor command from the redis cli but it’s not giving me information about stuff like backing up the database etc.

How can I access such logs?

Answer:

Apparently, there is no way to access to the Redis server-side logs (‘yet’).

src: https://forums.aws.amazon.com/thread.jspa?threadID=219210

Leave a Reply