tree: f2588dfe427713835bca4eefa8ac6ee00d368b49 [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. handshake_decoder.py
  10. message_types.py
  11. modified_utf8.py
  12. numeric_conversion.py
  13. read_values.py
  14. README.md
  15. server_message_decoder.py
  16. server_messages.py
  17. 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.