Skip to content
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

Event 11 Looking for OriginalFileName #110

Open
craigsmooth opened this issue Feb 17, 2023 · 0 comments
Open

Event 11 Looking for OriginalFileName #110

craigsmooth opened this issue Feb 17, 2023 · 0 comments

Comments

@craigsmooth
Copy link

craigsmooth commented Feb 17, 2023

It looks like the props.conf is trying to transform OriginalFileName into file_name for all events. The issue I am seeing is with File Create events (event 11). Those events don't have a "OriginalFileName" field. They only have a "TargetFileName" field. So in the search looking for new file creates, the query uses "file_name" which is not found in event id 11. If I am not understanding this correctly, let me know. Just now starting to get familiar with the app. Thank you.

FYI, this seems to have fixed the issue for me. Not sure if this is the best solution:
Replacing
EVAL-file_name = coalesce(file_name,OriginalFileName)
With
EVAL-file_name = case(EventCode=="11",TargetFilename,EventCode!="11",coalesce(file_name,OriginalFileName))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant