Skip to content

Instantly share code, notes, and snippets.

@slemiere
Created December 17, 2014 20:17
Show Gist options
  • Save slemiere/7abd9475874e77010b50 to your computer and use it in GitHub Desktop.
Save slemiere/7abd9475874e77010b50 to your computer and use it in GitHub Desktop.
redis nice slow log
r = Redis.new(url: 'redis://foo:bar@foo.com:123')
queries = r.slowlog('get', 1000)
puts queries.map{|q| "#{Time.at(q[1])} - #{q[2]/1000}ms - #{q[4].first} : #{q[4][1..-1]}"}.join("\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment