-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Truncated alerts #473
Comments
@calve Nothing other time no one has picked up the work and done it. Please do so it should be a simple pull request and would be accepted quickly (my guess). If you need a hand with anything let us know. |
See #455 for another possible solution. Raising the limit is not ideal because to what limit should we raise it and is this sufficient in the future? The mail alert should only give a first overview from where the admin can start digging into the log files. |
We are considering to use the following command netstat -46ln | awk '{print substr($0,0,6), substr($0,20,48)}' | gzip -n -9 | base64 |
Quoting http://marc.info/?l=ossec-dev&m=134550679026814&w=2
But it looks like syslog output is done in |
Hi.
I have some alerts witch gets truncated like so :
Witch count for 1236 char.
So
Previous output
sections gets truncated by an hard-coded limit insrc/analysisd/alerts/log.c
at line 196What prevent us to apply this patch and rise the
1256
limit of the printf ?The text was updated successfully, but these errors were encountered: