-
Notifications
You must be signed in to change notification settings - Fork 35
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
Elastic 7.1 elapsed_end_without_start but works in 6.8.1 (same config) #39
Comments
Hi, I'm facing the same problem, did you succeed to get over it? |
Yes. Kind of. You can see more discussion here: https://discuss.elastic.co/t/elpased-filter-works-differently-6-8-1-vs-7-1-possible-bug/187400 |
@herrkutt Any ideas why? Maybe you have full logstash.config files with the elapsed filter that I can review and understand where my problem is? Thanks in advance |
Did anyone succeed to solve this? I see the same problem. Did you consider that per default Logstash uses 1 pipeline worker per CPU thread? That would work like different instances and so the events might not reach the same filter. |
For all general issues, please provide the following details for fast resolution:
I run the configs with the following command line parameters for 6.8.1:
/logstash-6.8.1/bin# ./logstash -f /etc/logstash/conf.d/performance_log/v2/performance.log.conf -w 1 -r
and for my 7.1 installation:
/usr/share/logstash/bin# ./logstash -f /etc/logstash/conf.d/performance_log/v2/performance.log.conf -w 1 -r
However, I get different results!
The 6.8.1 correctly identifies the CheckPatientForCompletenessStart tag as the start and the CheckPatientForCompletenessEnd tag as the ending parameter.
However the 7.1 installation does not do this correctly and constantly displays "elapsed_end_without_start" tag.
The only thing that has changed between these two runs is the version of logstash.
This smells like a bug, but I'm not sure where. Maybe 7.1 is not properly interpreting the -w 1 flag correctly?
7.1 Example (notice how it seems to process the end but completely ignores the start):
6.8.1 Example (Correct)
The text was updated successfully, but these errors were encountered: