We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
On a deb/rpm installation try:
packetbeat -e -d "*"
You will get errors because the wildcard is resolved by the shell before is passed to the program:
# packetbeat -e -d '*' Error: unknown command "index.html.1" for "packetbeat" Run 'packetbeat --help' for usage.
A workaround seems to be using: packetbeat -e -d ",*"
packetbeat -e -d ",*"
The text was updated successfully, but these errors were encountered:
Fix /usr/bin/beatname script to accept -d "*"
c5ebab8
Fixes elastic#5040. Credit to @exekias for finding the solution.
Fix /usr/bin/beatname script to accept -d "*" (#5043)
df0f7ff
Fixes #5040. Credit to @exekias for finding the solution.
Fix /usr/bin/beatname script to accept -d "*" (elastic#5043)
ee5de9e
Fixes elastic#5040. Credit to @exekias for finding the solution. (cherry picked from commit df0f7ff)
Fix /usr/bin/beatname script to accept -d "*" (#5043) (#5046)
b1d5fe1
Fixes #5040. Credit to @exekias for finding the solution. (cherry picked from commit df0f7ff)
Fix /usr/bin/beatname script to accept -d "*" (elastic#5043) (elastic…
71bd434
…#5046) Fixes elastic#5040. Credit to @exekias for finding the solution. (cherry picked from commit 6749499)
No branches or pull requests
On a deb/rpm installation try:
packetbeat -e -d "*"
You will get errors because the wildcard is resolved by the shell before is passed to the program:
A workaround seems to be using:
packetbeat -e -d ",*"
The text was updated successfully, but these errors were encountered: