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
When using quiet mode together with JSON output format the beginning [ is not printed.
[
As far as I can tell it is caused by the json_prolog function not being called in quiet mode:
json_prolog
nfdump/bin/output_json.c
Lines 79 to 83 in 1f61277
nfdump/bin/nfdump.c
Lines 1129 to 1131 in 1f61277
The recordCount and memset lines not being called might also cause issues with unitialized variables.
recordCount
memset
The text was updated successfully, but these errors were encountered:
Fix issue #296 - broken json format with option -q
5850f57
Thanks for the report. Fix in commit 5850f57.
Sorry, something went wrong.
No branches or pull requests
When using quiet mode together with JSON output format the beginning
[
is not printed.As far as I can tell it is caused by the
json_prolog
function not being called in quiet mode:nfdump/bin/output_json.c
Lines 79 to 83 in 1f61277
nfdump/bin/nfdump.c
Lines 1129 to 1131 in 1f61277
The
recordCount
andmemset
lines not being called might also cause issues with unitialized variables.The text was updated successfully, but these errors were encountered: