blotus
blotus
Hello, We still need to update the documentation, but we added a new `lapi.StoreLAPICscliCredentialsInSecret` (disabled by default) option in the latest helm chart release which should address this. If enabled,...
Hello, Could you also provide logs from the log processor? Do you know how many alerts per second were being generated? Looking at the code, I think the allowlist error...
Hello, You can get a dump of the existing goroutines by querying `:6060/debug/pprof/goroutine` with curl: ``` curl :6060/debug/pprof/goroutine -O goroutines.gz ``` Can you get a dump a few minutes after...
It looks like almost all your goroutines in the 100k file are from leaky buckets: after a log line has been parsed, crowdsec will pass it to each scenario, and...
The issue is because of the `24h` leakspeed: if an IP makes less than four requests to the same IP/port, the bucket will never overflow, and will stay in memory...
This is actually something we have started to look at (in the context of being able to share buckets between multiple servers), but: - we are very unsure of the...