-
Notifications
You must be signed in to change notification settings - Fork 255
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
Issue/164-alternate - JSON functionality #380
Open
AthenaNetworks
wants to merge
9
commits into
schweikert:develop
Choose a base branch
from
AthenaNetworks:issue/164
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…_system_stats() and print_global_stats()
Add --json-pretty flag to enable formatted JSON output alongside the existing condensed format (--json). This enhances readability while maintaining the option for compact output when needed. Key changes: - Add --json-pretty flag that implies --json functionality - Implement configurable indentation (default 2 spaces) - Fix array formatting to eliminate extra newlines - Improve object formatting for better readability - Add spacing around key-value pairs - Make JSON output more consistent across all output types Technical details: - Add json_pretty_print global to control formatting - Modify print_json_end to handle final newlines correctly - Update array formatting to properly handle first/subsequent elements - Add spacing control in condensed vs pretty output - Refactor print_json_* functions for better consistency Example pretty output: { "hosts": [ { "host": "1.1.1.1", "count": [ "0.400", "0.565" ] } ] } Breaking changes: None. Default JSON output (--json) remains unchanged.
- Add test-16-json-output.pl with extensive JSON output tests - Fix JSON formatting issues in per-system stats output - Remove extra newlines in JSON output - Update json_end flag to maintain proper JSON structure
Credit original JSON implementation to Sebastian Wiesinger (gsnw-sebast) and note enhancements by AthenaNetworks. Include GPL license header to match project licensing.
- Update add_name() to output proper JSON when a host is invalid - Include error message in JSON output instead of stderr - Update test-16-json-output.pl to verify correct JSON structure - Ensure consistent error handling in JSON mode (-J flag) This change makes fping's JSON output more reliable for programmatic use by including error information in the structured JSON output rather than stderr. The JSON format for invalid hosts is now: {"host": "host.invalid", "error": "Name or service not known"}
- Modified json.c to consistently use stdout for all JSON output - Updated add_name in fping.c to use stdout for error JSON output - Simplified error JSON output in add_name to match other JSON output - All tests now pass with consistent stdout/stderr behavior
…r one coming 🚌 Sometimes DNS says 'Name or service not known' 🚌 Sometimes it says 'Temporary failure in name resolution' 🤷 Who are we to judge? Let's accept both! Also fixed the exit code because num_noaddress++ was playing hide and seek in the wrong place. It's now properly counted before we return.
…k in! 🤦♂️ Dear DNS errors, Could we maybe standardize on ONE message? Pretty please? No? Fine, have it your way... Added yet another special snowflake to our regex: 'nodename nor servname provided, or not known' At this point, I wouldn't be surprised if Windows comes along with 'Computer says no' 🙄 (Testing is fun, they said. It'll be easy, they said...)
Finally..... finally I got a working build. Tests are hard, man. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR implements comprehensive JSON output support for fping as requested in #164, adding both compact and pretty-printed formatting options. Based on the wonderful code in #379 by @gsnw-sebast 😊
New Features
JSON Output Format
-j/--json
flag for compact JSON output--json-pretty
flag for formatted, human-readable outputPretty Print Functionality
Technical Implementation
Added new source files:
src/json.c
: Core JSON formatting implementationsrc/json.h
: JSON interface definitionsKey Functions:
print_per_system_stats()
with JSON supportprint_global_stats()
with JSON supportExample Output
Pretty-printed format (
--json-pretty
):Compact format (--json):
Compatibility
Code Changes
src/fping.c
,src/json.c
, andsrc/json.h
Test Coverage Details
Added comprehensive test suite to verify JSON output functionality. The tests cover:
Basic JSON Output (
-J -c
)Pretty-Printed JSON (
--json-pretty
)Count-Based Statistics (
-J -C
)Multiple Host Support (
-J -g
)Each test case includes:
The test suite helps maintain JSON output reliability and should improve code coverage metrics.