tree: 3836c9ded75f61b2a0a7777194bd7567cab519b7 [path history] [tgz]
  1. chunked_message_decoder.py
  2. client_message_decoder.py
  3. client_messages.py
  4. command_line.py
  5. connection_types.py
  6. decoder_base.py
  7. ds_codes.py
  8. gnmsg.py
  9. gnmsg_globals.py
  10. handshake_decoder.py
  11. message_types.py
  12. modified_utf8.py
  13. numeric_conversion.py
  14. protocol_state.py
  15. read_values.py
  16. README.md
  17. server_message_decoder.py
  18. server_messages.py
  19. textfiles.py
tools/gnmsg/README.md

Message parsing tool for geode-native (gnmsg)

Given a debug-level log file from a geode-native application, this script will decode all of the Geode protocol messages it can between client and server, and print them out as a list of JSON objects.

usage: gnmsg.py [-h] [--file [F]] [--handshake] [--messages]

Parse a Gemfire NativeClient log file.

optional arguments:
  -h, --help   show this help message and exit
  --file [F]   Data file path/name
  --handshake  (optionally) print out handshake message details
  --messages   (optionally) print out regular message details

The handshake argument should be considered experimental at the time of this writing, since there doesn't yet exist a public version of geode-native that actually logs the handshake bytes to parse.