--
Follow Security Onion on Twitter!
https://twitter.com/securityonion
---
You received this message because you are subscribed to the Google Groups "security-onion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to security-onio...@googlegroups.com.
To post to this group, send email to securit...@googlegroups.com.
Visit this group at https://groups.google.com/group/security-onion.
For more options, visit https://groups.google.com/d/optout.
Thanks for the Links!
Off the top of your head, do you know what commands I might need to run to pull from the queue faster or push out more? Since I'm not familiar with Redis, I'm not even sure how to get that information. Are the fields in the links suppose to go in the redis.conf file or set via redis-cli?
Thanks!
Ryan
--
Follow Security Onion on Twitter!
https://twitter.com/securityonion
---
You received this message because you are subscribed to the Google Groups "security-onion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to security-onio...@googlegroups.com.
To post to this group, send email to securit...@googlegroups.com.
Visit this group at https://groups.google.com/group/security-onion.
For more options, visit https://groups.google.com/d/optout.
I believe I found the config files:
- master: /etc/logstash/conf.d.redis.output/9999_output_redis.conf
- Storage: /etc/logstash/conf.d/0900_input_redis.conf
It looks like both files support Threads and Batch_count Options. Would these be the options you would change?
Do you have a recommendation on which one you would prefer to use over the other? Also, any guidance for how many threads or what Batch_count value would be appropriate to try?
Thanks so much!
Ryan
--
Follow Security Onion on Twitter!
https://twitter.com/securityonion
---
You received this message because you are subscribed to the Google Groups "security-onion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to security-onio...@googlegroups.com.
To post to this group, send email to securit...@googlegroups.com.
Visit this group at https://groups.google.com/group/security-onion.
For more options, visit https://groups.google.com/d/optout.
Hi Dan,
I have been playing with threads and batch_count on the storage nodes. I am currently up to 10 threads a piece for my 2 storage nodes and 250 batch count which I believe is double the default. This has definitely helped some but I'm still have problems during heaving load.
I also found out that when my storage nodes were on there own VM data store I didnt have nearly as many problems. So I might be having an I/O problem with my storage, which we are looking at as well.
Here is my /etc/logstash/conf.d/0900_input_redis.conf at the moment:
input {
redis {
host => '172.18.0.1'
data_type => 'list'
key => 'logstash:redis'
type => 'redis-input'
threads => 10
batch_count => 250
}
}
Hope this helps and good luck!
Ryan