00:20:09 GMT question if anyone is around 00:20:18 GMT i want to push suricata events as json to redis 00:22:04 GMT are there any services that also scrape redis for suricata events, or is that pretty much just up to how i want to handle the json objects directly from scraping it? is there a maximum limit that #redis would advise to have for monitoring traffic of about 2-3000 servers 02:10:04 GMT Hello... I've setup a resp protocol creator and it works with other commands but when I run help it fails. 02:10:31 GMT Is there any particular reason why the server cannot do help but redis-cli can? 03:00:51 GMT or is there another way to get a command list of parsable data? 06:09:45 GMT hi guys, I want to run below command to find large size of data in keys 06:09:48 GMT redis-cli --bigkeys 06:10:08 GMT it didn' work for -h host -p port option 12:22:52 GMT Hi; we're having a recurring problem at work where our Ruby app seems to hit the cap at 20GB even though we have PAYG overage enabled. Can anybody suggest a way to figure out what's going on? 12:43:22 GMT D: i have no idea how many things you're throwing into the room there 15:05:41 GMT Hey Guys, anyone here familiar with Sentinel? Having an issue getting more than 1 sentinel client working with failover 15:08:46 GMT what happens is sentinel does failover to master/slaves no problem with 1 sentinel client.. however when adding >1 sentinel client using same config (even tried different ports on each client), Sentinel does not attempt to failover.. last thing in log that gets printed is: 1456:X 31 May 10:56:00.460 # +sdown master mymaster 192.168.56.52 6379 15:09:11 GMT ^^ running in VirtualBox as my test environment 15:18:46 GMT no takers? 15:33:52 GMT ^^ running in VirtualBox as my test environment 15:34:03 GMT Hey Guys, anyone here familiar with Sentinel? Having an issue getting more than 1 sentinel client working with failover 15:34:08 GMT what happens is sentinel does failover to master/slaves no problem with 1 sentinel client.. however when adding >1 sentinel client using same config (even tried different ports on each client), Sentinel does not attempt to failover.. last thing in log that gets printed is: 1456:X 31 May 10:56:00.460 # +sdown master mymaster 192.168.56.52 6379 15:34:15 GMT ^^ running in VirtualBox as my test environment 18:39:21 GMT Hi there :) 18:39:34 GMT I have a little question regarding pub/sub feature of redis 18:41:19 GMT I was wondering how to implements this feature with something like : a user can have many tags on his profile and when someone publish something it receives the data (but not twice in case the person has tagged many words) 18:42:05 GMT I am wondering especially the part where the user do not receive data twice because suubscribed to more than one tag 18:43:41 GMT 1. Do I need to create a channel for every tag existing ? 18:44:35 GMT 2. Should I subscribe a user to every single channel or I can "group" them and send a message to a group of channel 18:45:29 GMT thanks in advance 18:48:55 GMT pubsub requires a connected client; if you mean to do this for a website it's the wrong tool 18:49:14 GMT (unless websockets/SSE) 18:50:57 GMT Has anyone ever run into redis-py hanging during a publish? I'm getting max number of clients reached because the connections are already in use. 18:56:14 GMT maybe related: you can't use the same connection for anything else when using it for subscribing 19:04:42 GMT max clients is 10. I have 3 subscribes, but if I get a lot of requests at the same time, sometimes I get "max number of clients reached" and I can make a new connection. So it seems like something is holding onto them. 19:07:59 GMT thanks minus