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

Fix PANW bad mapping of client/source and server/dest packets and bytes #18525

Merged
merged 1 commit into from
May 14, 2020

Commits on May 14, 2020

  1. Fix PANW bad mapping of client/source and server/dest packets and bytes

    PANW pipeline was mapping:
    
    Bytes sent to client/destination bytes.
    Bytes received to server/source bytes.
    Packets sent to server/destination packets.
    Packets received to client/source packets.
    
    All of these mappings are wrong.
    
    The correct is:
    Bytes sent to client/source bytes.
    Bytes received to server/destination bytes.
    Packets sent to client/source packets.
    Packets received to server/destination packets.
    
    Also adding some missing ECS mappings in the process.
    
    Fixes elastic#18522
    adriansr committed May 14, 2020
    Configuration menu
    Copy the full SHA
    dafe54c View commit details
    Browse the repository at this point in the history