tree: 763c7fe9ab88ae9443359766f37076dae34f3eff [path history] [tgz]
  1. client_message_decoder.py
  2. client_messages.py
  3. command_line.py
  4. connection_types.py
  5. decoder_base.py
  6. ds_codes.py
  7. gnmsg.py
  8. handshake_decoder.py
  9. message_types.py
  10. modified_utf8.py
  11. numeric_conversion.py
  12. read_values.py
  13. README.md
  14. server_message_decoder.py
  15. server_messages.py
  16. 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.