diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-11-26 21:04:34 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-12-01 20:09:25 -0500 |
commit | fea30f877110ddd671817f21fe4c6741fb5c73ac (patch) | |
tree | 2fd6d4a4ec9c696165f15fca5a69f8d918b4e106 | |
parent | 520273e5abfd9a3dd899f94b5df602669b655ec0 (diff) | |
download | kutter-fea30f877110ddd671817f21fe4c6741fb5c73ac.tar.gz kutter-fea30f877110ddd671817f21fe4c6741fb5c73ac.tar.xz kutter-fea30f877110ddd671817f21fe4c6741fb5c73ac.zip |
docs: Add a note on how to view the raw motan logs in Debugging.md
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | docs/Debugging.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/Debugging.md b/docs/Debugging.md index 6869fe03..792301a9 100644 --- a/docs/Debugging.md +++ b/docs/Debugging.md @@ -144,6 +144,11 @@ options - use the `--help` option to see a list. It may also be convenient to view/modify the [motan_graph.py](../scripts/motan/motan_graph.py) script itself. +The raw data logs produced by the `data_logger.py` tool follow the +format described in the [API Server](API_Server.md). It may be useful +to inspect the data with a Unix command like the following: +`gunzip < mylog.json.gz | tr '\03' '\n' | less` + ## Generating load graphs The Klippy log file (/tmp/klippy.log) stores statistics on bandwidth, |