shdsbilling/on-premise/main/rancher_v2.9.1/source/rancher-2.9.1/tests/v2prov/DEBUG.md

413 B

Interpreting Debug Data

General

The debug data is going to be printed out as json that is gzipped then base64'ed. You can

echo 'blob' | base64 --decode | gzip -d | jq -r

to get to something readable.

Pod Logs

Pod logs are again gzip and base64'ed, but they have literal "\n" rendered in. For consumable logs, try

echo 'podlogblob' | base64 --decode | gzip -d | sed -e 's/SnewlineG/\n/g'