From 493917ba0c27f2fd5d5ed7428fc590a1f03ba5d7 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Thu, 8 Aug 2019 15:22:02 -0400 Subject: [PATCH] ctf: make src.ctf.fs group inputs by UUID in `babeltrace.support-info` query When replying to the `babeltrace.support-info` query, the src.ctf.fs component class currently groups all recognized CTF inputs in a single `ctf` group. It then internally groups traces with the same UUID together to process them as a single trace (to support LTTng's session rotation feature). This commit makes it group the inputs by UUID, which will naturally assign all inputs beloning to one logical trace to one instance of src.ctf.fs. Input traces without UUID are not placed in a group, meaning that they will have their own src.ctf.fs component. This paves the way to simplifying src.ctf.fs to support only a single (logical) trace. I added a test CTF trace for this, `session-rotation`, which consists of two traces with three rotation chunks each. We therefore expect to have two groups with three inputs each. The new Python test checks the `babeltrace.support-info` query directly. I also added a new .expect file for this new test trace, it will at least verify that we have the right number of streams (which will be off if the grouping doesn't work as intended). Change-Id: I13374fff9bafa94c5d8f4b6bac1c64afadef7a46 Signed-off-by: Simon Marchi Reviewed-on: https://review.lttng.org/c/babeltrace/+/1844 Reviewed-by: Philippe Proulx Reviewed-by: Francis Deslauriers Tested-by: jenkins --- src/plugins/ctf/fs-src/query.c | 91 +- tests/Makefile.am | 1 + .../hello-ust-10352-20190826-155748/chan_0 | Bin 0 -> 4096 bytes .../hello-ust-10352-20190826-155748/chan_1 | Bin 0 -> 4096 bytes .../hello-ust-10352-20190826-155748/chan_2 | Bin 0 -> 4096 bytes .../hello-ust-10352-20190826-155748/chan_3 | Bin 0 -> 8192 bytes .../index/chan_0.idx | Bin 0 -> 88 bytes .../index/chan_1.idx | Bin 0 -> 88 bytes .../index/chan_2.idx | Bin 0 -> 88 bytes .../index/chan_3.idx | Bin 0 -> 88 bytes .../hello-ust-10352-20190826-155748/metadata | Bin 0 -> 20480 bytes .../hello-ust-10353-20190826-155748/chan_0 | Bin 0 -> 4096 bytes .../hello-ust-10353-20190826-155748/chan_1 | Bin 0 -> 12288 bytes .../hello-ust-10353-20190826-155748/chan_2 | Bin 0 -> 4096 bytes .../hello-ust-10353-20190826-155748/chan_3 | Bin 0 -> 4096 bytes .../index/chan_0.idx | Bin 0 -> 88 bytes .../index/chan_1.idx | Bin 0 -> 88 bytes .../index/chan_2.idx | Bin 0 -> 88 bytes .../index/chan_3.idx | Bin 0 -> 88 bytes .../hello-ust-10353-20190826-155748/metadata | Bin 0 -> 20480 bytes .../hello-ust-10352-20190826-155748/chan_0 | Bin 0 -> 4096 bytes .../hello-ust-10352-20190826-155748/chan_1 | Bin 0 -> 4096 bytes .../hello-ust-10352-20190826-155748/chan_2 | Bin 0 -> 4096 bytes .../hello-ust-10352-20190826-155748/chan_3 | Bin 0 -> 4096 bytes .../index/chan_0.idx | Bin 0 -> 88 bytes .../index/chan_1.idx | Bin 0 -> 88 bytes .../index/chan_2.idx | Bin 0 -> 88 bytes .../index/chan_3.idx | Bin 0 -> 88 bytes .../hello-ust-10352-20190826-155748/metadata | Bin 0 -> 16384 bytes .../hello-ust-10353-20190826-155748/chan_0 | Bin 0 -> 4096 bytes .../hello-ust-10353-20190826-155748/chan_1 | Bin 0 -> 4096 bytes .../hello-ust-10353-20190826-155748/chan_2 | Bin 0 -> 8192 bytes .../hello-ust-10353-20190826-155748/chan_3 | Bin 0 -> 4096 bytes .../index/chan_0.idx | Bin 0 -> 88 bytes .../index/chan_1.idx | Bin 0 -> 88 bytes .../index/chan_2.idx | Bin 0 -> 88 bytes .../index/chan_3.idx | Bin 0 -> 88 bytes .../hello-ust-10353-20190826-155748/metadata | Bin 0 -> 16384 bytes .../hello-ust-10352-20190826-155748/chan_0 | Bin 0 -> 4096 bytes .../hello-ust-10352-20190826-155748/chan_1 | Bin 0 -> 4096 bytes .../hello-ust-10352-20190826-155748/chan_2 | 0 .../hello-ust-10352-20190826-155748/chan_3 | Bin 0 -> 4096 bytes .../index/chan_0.idx | Bin 0 -> 88 bytes .../index/chan_1.idx | Bin 0 -> 88 bytes .../index/chan_2.idx | Bin 0 -> 16 bytes .../index/chan_3.idx | Bin 0 -> 88 bytes .../hello-ust-10352-20190826-155748/metadata | Bin 0 -> 16384 bytes .../hello-ust-10353-20190826-155748/chan_0 | Bin 0 -> 8192 bytes .../hello-ust-10353-20190826-155748/chan_1 | 0 .../hello-ust-10353-20190826-155748/chan_2 | Bin 0 -> 4096 bytes .../hello-ust-10353-20190826-155748/chan_3 | 0 .../index/chan_0.idx | Bin 0 -> 88 bytes .../index/chan_1.idx | Bin 0 -> 16 bytes .../index/chan_2.idx | Bin 0 -> 88 bytes .../index/chan_3.idx | Bin 0 -> 16 bytes .../hello-ust-10353-20190826-155748/metadata | Bin 0 -> 16384 bytes .../succeed/trace-session-rotation.expect | 12739 ++++++++++++++++ tests/plugins/src.ctf.fs/Makefile.am | 2 + .../src.ctf.fs/query/test_query_support_info | 28 + .../query/test_query_support_info.py | 99 + tests/plugins/src.ctf.fs/succeed/test_succeed | 3 +- 61 files changed, 12939 insertions(+), 24 deletions(-) create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10352-20190826-155748/chan_0 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10352-20190826-155748/chan_1 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10352-20190826-155748/chan_2 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10352-20190826-155748/chan_3 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10352-20190826-155748/index/chan_0.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10352-20190826-155748/index/chan_1.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10352-20190826-155748/index/chan_2.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10352-20190826-155748/index/chan_3.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10352-20190826-155748/metadata create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/chan_0 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/chan_1 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/chan_2 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/chan_3 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/index/chan_0.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/index/chan_1.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/index/chan_2.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/index/chan_3.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/metadata create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/chan_0 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/chan_1 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/chan_2 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/chan_3 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/index/chan_0.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/index/chan_1.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/index/chan_2.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/index/chan_3.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/metadata create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/chan_0 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/chan_1 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/chan_2 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/chan_3 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/index/chan_0.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/index/chan_1.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/index/chan_2.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/index/chan_3.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/metadata create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10352-20190826-155748/chan_0 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10352-20190826-155748/chan_1 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10352-20190826-155748/chan_2 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10352-20190826-155748/chan_3 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10352-20190826-155748/index/chan_0.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10352-20190826-155748/index/chan_1.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10352-20190826-155748/index/chan_2.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10352-20190826-155748/index/chan_3.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10352-20190826-155748/metadata create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10353-20190826-155748/chan_0 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10353-20190826-155748/chan_1 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10353-20190826-155748/chan_2 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10353-20190826-155748/chan_3 create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10353-20190826-155748/index/chan_0.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10353-20190826-155748/index/chan_1.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10353-20190826-155748/index/chan_2.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10353-20190826-155748/index/chan_3.idx create mode 100644 tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10353-20190826-155748/metadata create mode 100644 tests/data/plugins/src.ctf.fs/succeed/trace-session-rotation.expect create mode 100755 tests/plugins/src.ctf.fs/query/test_query_support_info create mode 100644 tests/plugins/src.ctf.fs/query/test_query_support_info.py diff --git a/src/plugins/ctf/fs-src/query.c b/src/plugins/ctf/fs-src/query.c index 62a3f8b6..34f168e0 100644 --- a/src/plugins/ctf/fs-src/query.c +++ b/src/plugins/ctf/fs-src/query.c @@ -30,6 +30,11 @@ #include "query.h" #include +#include +#include +#include +#include +#include #include "common/assert.h" #include "metadata.h" #include "../common/metadata/decoder.h" @@ -440,59 +445,98 @@ bt_component_class_query_method_status support_info_query( const bt_value *input_type_value; const char *input_type; bt_component_class_query_method_status status; + bt_value_map_insert_entry_status insert_entry_status; double weight = 0; gchar *metadata_path = NULL; bt_value *result = NULL; + struct ctf_metadata_decoder *metadata_decoder = NULL; + FILE *metadata_file = NULL; + char uuid_str[BT_UUID_STR_LEN + 1]; + bool has_uuid = false; + const bt_value *input_value; + const char *input; input_type_value = bt_value_map_borrow_entry_value_const(params, "type"); BT_ASSERT(input_type_value); BT_ASSERT(bt_value_get_type(input_type_value) == BT_VALUE_TYPE_STRING); input_type = bt_value_string_get(input_type_value); - result = bt_value_map_create(); - if (!result) { + if (strcmp(input_type, "directory") != 0) { + goto create_result; + } + + input_value = bt_value_map_borrow_entry_value_const(params, "input"); + BT_ASSERT(input_value); + BT_ASSERT(bt_value_get_type(input_value) == BT_VALUE_TYPE_STRING); + input = bt_value_string_get(input_value); + + metadata_path = g_build_filename(input, CTF_FS_METADATA_FILENAME, NULL); + if (!metadata_path) { status = BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR; goto end; } - if (strcmp(input_type, "directory") == 0) { - const bt_value *input_value; - const char *path; + metadata_file = g_fopen(metadata_path, "r"); + if (metadata_file) { + struct ctf_metadata_decoder_config metadata_decoder_config = { 0 }; + enum ctf_metadata_decoder_status decoder_status; + bt_uuid_t uuid; - input_value = bt_value_map_borrow_entry_value_const(params, "input"); - BT_ASSERT(input_value); - BT_ASSERT(bt_value_get_type(input_value) == BT_VALUE_TYPE_STRING); - path = bt_value_string_get(input_value); + metadata_decoder_config.log_level = log_level; - metadata_path = g_build_filename(path, CTF_FS_METADATA_FILENAME, NULL); - if (!metadata_path) { - status = BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR; + metadata_decoder = ctf_metadata_decoder_create( + &metadata_decoder_config); + if (!metadata_decoder) { + status = BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR; + goto end; + } + + decoder_status = ctf_metadata_decoder_append_content( + metadata_decoder, metadata_file); + if (decoder_status != CTF_METADATA_DECODER_STATUS_OK) { + BT_LOGW("cannot append metadata content: metadata-decoder-status=%d", + decoder_status); + status = BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR; goto end; } /* - * If the metadata file exists in this directory, consider it to - * be a CTF trace. + * We were able to parse the metadata file, so we are + * confident it's a CTF trace. */ - if (g_file_test(metadata_path, G_FILE_TEST_EXISTS)) { - weight = 0.5; + weight = 0.75; + + /* If the trace has a UUID, return the stringified UUID as the group. */ + if (ctf_metadata_decoder_get_trace_class_uuid(metadata_decoder, uuid) == 0) { + bt_uuid_to_str(uuid, uuid_str); + has_uuid = true; } } - if (bt_value_map_insert_real_entry(result, "weight", weight) != BT_VALUE_MAP_INSERT_ENTRY_STATUS_OK) { +create_result: + result = bt_value_map_create(); + if (!result) { status = BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR; goto end; } - /* - * Use the arbitrary constant string "ctf" as the group, such that all - * found ctf traces are passed to the same instance of src.ctf.fs. - */ - if (bt_value_map_insert_string_entry(result, "group", "ctf") != BT_VALUE_MAP_INSERT_ENTRY_STATUS_OK) { - status = BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR; + insert_entry_status = bt_value_map_insert_real_entry(result, "weight", weight); + if (insert_entry_status != BT_VALUE_MAP_INSERT_ENTRY_STATUS_OK) { + status = (int) insert_entry_status; goto end; } + /* We are not supposed to have weight == 0 and a UUID. */ + BT_ASSERT(weight > 0 || !has_uuid); + + if (weight > 0 && has_uuid) { + insert_entry_status = bt_value_map_insert_string_entry(result, "group", uuid_str); + if (insert_entry_status != BT_VALUE_MAP_INSERT_ENTRY_STATUS_OK) { + status = (int) insert_entry_status; + goto end; + } + } + *user_result = result; result = NULL; status = BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_OK; @@ -500,6 +544,7 @@ bt_component_class_query_method_status support_info_query( end: g_free(metadata_path); bt_value_put_ref(result); + ctf_metadata_decoder_destroy(metadata_decoder); return status; } diff --git a/tests/Makefile.am b/tests/Makefile.am index 4951ee6c..17f6a952 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -85,6 +85,7 @@ TESTS_PLUGINS = \ if !ENABLE_BUILT_IN_PLUGINS if ENABLE_PYTHON_BINDINGS +TESTS_PLUGINS += plugins/src.ctf.fs/query/test_query_support_info TESTS_PLUGINS += plugins/src.ctf.fs/query/test_query_trace_info TESTS_PLUGINS += plugins/src.ctf.fs/query/test_query_metadata_info endif diff --git a/tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10352-20190826-155748/chan_0 b/tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10352-20190826-155748/chan_0 new file mode 100644 index 0000000000000000000000000000000000000000..977d3bb37448a4c9a7fa57e4a1b4eefb597929be GIT binary patch literal 4096 zcmX>o|L36M*Vx-flQdrU?3ZYp(?;!Mkohn0yC6PYw?oQ;u45eEKnOkBDmOuTm>=h0hcS(EC)tO zhTnOi>q3Bh7=}uLxwQ5jF7s*cYtN59TS9?eg<+_#!CYLfqO~~feI3>0vMUVeRTzf) z8qB4&?{Jw<7niGOElzu1-#V^zDGKOS7>4>9%%!#OaG6hgUu#QC-G~Ny6^5a{ z26J(_iq_(^_qD?d!Fw@4ufj0Y*I+KKeTU0@+WY#;1o|L36M*C8@o|L36M*T56;m#b(kPJ3TJ{+7BZ z2_INH!H%@GOW z;FLo{OVDtHG#x~=S)kky*>FN!h(`9_d(S(*G(AIb2ak8pd)({$xlxPlzl*0!d*d%2 zjy5l*?z~zpMsI^W4%L3hqtKZz4?Pbdx&5alBhMeV>hlmHebHnU&$Z9R`l<8s%7Qnw z);|}5ebRmtdp?(+ovYt*80XX`-s^u|Ro}MRoWZXCC=OpX?|;7_-GaBYvUT2mzWUeL zSfxv-7O1s)SFz`O_0*}G)r&&4K&_Rn^Y-)AtzXmo-9oiMt<}4VJ?E>R=91`=P%Thv zW$V2Ce06HF>*!^nTA81UJ^Wb3 zFV`CP3e^I&R<_RD&sQ(6pJ-2nYJpm-cNKfiS0~wH9eqNzK&_Rn^Y-)AOP`v~UKOeZ zYOUT?>^Wb(u)EiJO{f;AwX${Ie!lv3`Db^(P%Thv^{!&i`Rd%`AIX4FEl_J^>%9GZ z^|O`o;Gj?~P;2$BV$b>Nm(`7tA)#8J*2>m-`}ykm{O4O~p<1BU>RrX2^VOAX>2B?B zD;B7=vUT2mzWUtGdUjZ-7O1s)SFz`O_4}T86W4`mfm$nD=k4dK*EZfvjR@5OwN~#c z_MERC$gE9|3e^I&R<_RD&sQIBTYYpxs1~TTdRMXMZ1urGEX=}#Xge+cHyD@K7U;FI zmEL}~J`Sbr-AYcV7O1s)SFz`O^~{r<>V!}&P-|uDy#0Lj@Yc8eNugSx*6Llwp0m|3 PHl7;aK;s+uZ@+=RLvy4~ literal 0 HcmV?d00001 diff --git a/tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10352-20190826-155748/index/chan_0.idx b/tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10352-20190826-155748/index/chan_0.idx new file mode 100644 index 0000000000000000000000000000000000000000..8f5104b3cd1713bc156fed5f25d26cc9938a3bb1 GIT binary patch literal 88 ucmX^3@yok)kZiuYyMGki+4)#)K)%Huj zJU{yVw?7~M@d$qY`5FFv#;Zq>TeBX`@A+y(pEu4`W6Row`J~JT_zw`9xg( zBO@q2*t?aK$vZ9#F$&TjY|oUy=#D)Ka{yd1NGcF*=f*L#S3=j8LtbLrAVK zMo6x&f{+zx&akcFTtzjaQAt|>LWaH@IfJS;7o$^cBB7G!P?eESr8SfOXgh$fv<26? z#jjg%J(=hT`+8MUwE=Cg@+Ot*<@#oYmRq%|T5i;+N@Z25NPW5v{rew0rr3@Kru32+ z3|huiJ!9U+h*4|=vvECVqI$@54J`-(BPJc{Ds<*8U{i!3<5Nj~CmMM-c$HC8(KXSE zAR$5CYPlY@ROUav+$zDp60^>c)5vx`i<)TI>#j*1b)=WsV4$nI?c%UC+oU?$`ufE6 zuz@SaQN%lj=UKyY@|jRsHR>)jC!rbx5@YJABZHkY1ISmP{d~+-DphI?e0A*Ds$er> zhG7S6aP+ESt7kZV(ZRGW+p{fQ#W4zOnysc>(Kh9BzpggR_2!^b?rSpKHfyv|sSg<2 zl(~@1RULio={A@2K+qyP$Od~19QGbYDOJSJ7J-Pd3#}7osUMz0m>}PM#L%$@?f&S_ zsWD;19t>ROk%42Iq%*eF5z*bYXnjVWNH37~Q~qku7x*+}S#DJ;4Y?xK8?8obv+1Lj z5|>JAL13D1;b_TY5P^?vBUIN0A0-eMaSQC9cTvJFzCX+c#E|j)2(&0;u;Z&To*%Im zWel#8#yIds-%AzMhCFb=ofCaC?H%IjCIe41$4Z|KbqftKzbmuQXM>I&;e0GlK}_TA z!7#F#*?YyBnD|0Gt`cxA%X1Y?cU20ZM{wdHLmf|eKtOj2WaZrzKOlj`CNSj^GoVe{ zJgq^Pg;Xe>f!~sijSW((JSU(XkcH>Mngn@}$D(uU=+yGa*Shu%y6alN2`{X-+Ub{y_P+r4Gm-h#U{i7^S(9%x0~G?Qo4j-yp>a=ZSJ$(yM}ugvN@j zL`>(oMS_bOZC<*Ej<=a30w#jAntIlXmrq}c=|a(U<#Gbn2V-^f$?-1u zk*J&f0u<)`O!$?K^4sOBtN@MVnxtUChhq#K(USMwGx@Oc5%9YM8w(%m`UKkSB4u$r@uAr%W5 z@m;p$RPqKFoBU$%^?o-N1asCiGLMiH3mPxUO+ytqRL*jSRIF#*q(k8mEDw%0x^OlS z&f&JbG2TV!T&ky1dHD5^>u(=fr zv#6s7h^~R7-};GjzmRg<5e!GUD{>LP^TtD-oi zMlErg4=8E&q;Ig06bvMJ5IZB}_M2?Efc@Bi&1kiv9oiiLrYLQL+EeKVgX-?7NpR75o4A zq0w!k1e5!$`Tvv0@bEMI;`|@XB`beN2Y#nca}@jkw~OU67!~{f_|f3Qs0Dqjiv9lw zk;+1_iv9nG5(SI>{|Dq*#s2>-SBlG57sdYngDNnJ{r`vJS<%91vHyRU>lx`Q*bzGS Hd;kAGGP;+^ literal 0 HcmV?d00001 diff --git a/tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/chan_0 b/tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/chan_0 new file mode 100644 index 0000000000000000000000000000000000000000..d30efd70797f4d0562951127e3ba87babd963809 GIT binary patch literal 4096 zcmX>o|L0(HYTm|;h7QlCr5*5kRJpZ>0SR1*_6u{F!N4GD+rsY(q(4|dB^w|#6OvjO z^Z$QIAQPt3708BRs0uKb5z2v?zzpTnTD&B+xCCMq3)DuC2rf1uS3yjBzy*9R8cCAkB=3d2xegSog|MQd@|`?`nKEW-onRTzf) z8qB4&?{Jw;q^ePNPeGTT~auuz`Y3*xBsn#%i=Rr_;7!LF@3`2bn=F-}i zxXh=u?Nr{r5H3A1dmixe;OTpjSNJ-=kK42N^PaZJ4fB)N zW9L(;>d@D_Jrj}H{`81PKShOK^ixvvs3LsN^OD1ZYa8itVx|0Nz<<=|`Oo%Wm(K?m zy>b`*t&wMO)mIkFFd&cUc_P-A@ZYLL-mx&T{$A=-{My)~V2Qyn6Q4P*puqHKOK<)>-@U>dL08JN6J&BWkYJsnB!0 z`d{y*+7MASqUMU$S^M$o)Yc324Mf$5nyYmx^c=5V$n=Ew5>+E=u4tXLAFsYR7me&A zsz%gYty7`rc=hiUC!51W)rguaT4(J?tNqVtAF4Jd3ZL#GMAnF&t93f`9IX#}t>-GQ z93-kn)LhXzYd>BcEnYWph^QJ-bG1%|p5xW`GpmN0h^i4aSG3OBk5}(63yd5lsz%gY zty7`rcy)aI@697b)rguaT4(LYt7~R{jWrWhBWkYJsnB!0dT0LI!xo}yM9megv-acF zx!C8YM~SKtHCO9Y=s8~9(DFWcjHnt>b4BZ{{do22c=q{mqH09V)jAb=j#pPdd!242 zsz%gY(K>5CUcIS&>g5TdYDCS|Iu&}3R{P&V4y;eUDSQiQBeF*HT+vEvKUyF3whune zo+7G7)LgAoq33w@Xz7FL(?r#Xnk!mo?Z>OjM{j*>C#pu&T&+`~=XiB{cKAyNQ8l9G ziq={C@#@Qc*S<%Isu49;>s07DUVZ0X|Iaf-)rguaT4(LYtH+=8{^=yDM$}xbQ=#X0 z^;9mN>msT~)LhXzYd>DSW?NU_EKxP0=4zb^J;$pvx7$j)iK-DbSG3OBk5-G(J-8ci hH{fo--GI9RcLVMQ+zq%Ja5vy?z}o|L0(HYTm|;h7QlCr5*5kRJpZ>0SK5t1Q6&Nym{h0gMqNosKk#3~l3jUW+RY(lPrnD&6n6>63P zqa;JXm&dP+fqWQ-N`bkw_8l(sY47VvF}FXM0KE#sP+x<&xLieRaoYR(=g~{wOo3j7 zVW_XcTw41Mm-)2!wY=@AKW0F$!Z6g=U@k6K(OR7LzCPb@kjWhARTzf)8qB4&?{Jw< zdtaY^zJtR8=v5eo`Wno|)85yTE*tnPfnJ4SsIS3XTKf){`Ly@7mf;E!E1*|l k80u><7niGOElz7+L;W~PjfTKz2#kinXb6mkzz7Th0AlEldjJ3c literal 0 HcmV?d00001 diff --git a/tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/chan_3 b/tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/chan_3 new file mode 100644 index 0000000000000000000000000000000000000000..2080b973e52728a2d1ebee5e48458c50889a3f7e GIT binary patch literal 4096 zcmX>o|L0(HYTm|;h7QlCr5*5kRJpZ>0SK5u1Q2jfGz3ONU^E0qLtr!nMnhmU1V%$(Gz3ONU^E0qLtr!nMnhoWLjVAcj}YAe literal 0 HcmV?d00001 diff --git a/tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/index/chan_0.idx b/tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/index/chan_0.idx new file mode 100644 index 0000000000000000000000000000000000000000..4247d65be60b2440199cce718d90849d21038bae GIT binary patch literal 88 ucmX^3@yK9$X0| literal 0 HcmV?d00001 diff --git a/tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/metadata b/tests/data/ctf-traces/succeed/session-rotation/20190826T155753-0400-3/ust/pid/hello-ust-10353-20190826-155748/metadata new file mode 100644 index 0000000000000000000000000000000000000000..82c4c8c3daabfd5c8f14a0221ace7fb4cb6a7278 GIT binary patch literal 20480 zcmeHOOK;mo5KeBj{zHL#?E@t* zNqdXHouTPnI&ei*xE@HlL$}Bk>AWNpc&RPATl2^W&3tr(W(J{JH6Ni`HG@#Io{vzo zz6?U9uQ}Z^hjSIx2xld10SGDjZe&cV+R8_#+CoAl*OnAYK9<%D>1WFZe1$Ez)=YNY zhU>{hL)h2bwPvG9WuYt!HKAOu&{lb~*=&}TN?oGW)~4KOE9>yQeCblrvQ;ppmqe#9 zGM1Dx>TZmvgo9ukcOH953>=lDMFC(snC4K2iarrDwPaTQ~4-@ zgap~B>9~@qQ1ABDRtf$qQS%%*jV#ACB?Aq6-7zFv8EIuY7-))SIXG?AG9(RceSPA% zIKUKRi~Jqkb?W(`vVx6?L;&mg`EZTyG63WmyGmL|80b~TGhdcbLs9b|(~3~c%yW+_zopDh9rV;4pz)Ko5?Lzo~xe8AAL2IJoB z&Lw?9i8UBF)FlJkGDvr9DI=me9X|SuJP}?X?WgQj|5@PE0269gD~)DFs5jb;_GZ&V zEg>$I*8IRU-@?(7#~=cm+eVf^iUoP#f;lJpX3{&v)eH)rW{gFd4mA_ZCdZ@HM4$B^bP3~Qx*}p4 z9rve^Hca1(=ET4kqH&dgbD6Fqs+yxn5PCQ#7BZCagarh2Ctp_fxab8Wkk|mGOkxVO zNr$C12(yq1`91Jkvazv2YL({%v;(rRTv!tz53*QvF4>x7y5t*8{TAJI&F6%dOz0$Y z3l#|htzB_$_+$EYCW#mIxDIEqoF>O73iPhXIhsDp=TF*CQ#7GV_K@X*h#oL4Cn%!X zXw>R4UEoL~w>pxXV0!+(^6yF=kU%yDtA@-q?| zE3)D-o#hr0a*GIF=UL zW{R3QumYx-!WLn=Hd9Kb#jna1fvjSwnmGiaOv{AAQkEP{(pWZL5mA;@)rNU2hbHg? zng%tT4@eV)L(U>3=usk%loEK}v^^G@BaXdtW=0na(;P{TC{Hw9^{b!dQdX%v8H&1Q zo`EK=Wj6kl0<*zt=u0%4K>4Ch&EfJa#y50dji*GMW<=gy6Os_i02B-ms|!k6VU_J@ zip>@c+>-|yU;|bDH5CT=JkV5qK}}`*jIPNY-I799jRjey1jDy^*8kz+5CT!K$egF> z2OWr4Drlks@CY8*8!UKM*fST&++GTtj$$C@tlch<43`xy5sZXD*;;8h?k7;9swQSE zbm7j>s^pXG$jdfj1|3$q2adOyAp$0Xq?&rxiWf&kG#n_pu3b*R{$QkTJ~`e6KjL+> z=Y2pID~XVN&LVliH*&!}g5$njuQo@edR6=^Y-S6%9A}J|jxpwm;Uci)RKWGZ3-r@27 zPB(O>jFm3lF5=yd;vF>i^R53EKy$yhdl+Jwv0%m91(r9$5;T}|O%qn?ue#r#?1@J| z9UXTMLaZ`Yvv|9}>YlKA(?8tnZ%4q&SX1Ne0<8N3Yo~j36na+1?g8E|z`7@}4h~

ts~P(kLa~t%?Xty} zlDD|o-NuGPW~>Vn5?H9SV!+>%-|WHWz$f^N=l{L4{b|jRc!Y}YNqUV}&K@Is zl)pzetzA5iuHV;zZwq~r>ipJxEn&dsmMoBG)u9Y% z)iI$$mbWKZ^~ORa85kF;8Wo7Mx; zDzM>pW(0RLAt{`nakNM^6*Ap~C)MJd78L(xz4 zfRbuWWSs`2U?RD`>C5&c*|Ky_Hf?V@xq5;xJcc95RCQ{Hg;YilA+?b5S;r2F`*ABg z>XMie7Y?>dI!ROX|6|9IRuZG4{~tXuwvrGP{eSieOXOhRO2Sn1|M5ekyF>{V_i5|@ zCy(LgC-{r&e=wJ{{2hLVHg%e#=>Oj>mWyCi^#Adr!G}=`dRP_x{|AxE0=J|39b#qv-!X6weAbMvMOceeP!@?_h`MtaktZf7~>kZvX%Q literal 0 HcmV?d00001 diff --git a/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/chan_0 b/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/chan_0 new file mode 100644 index 0000000000000000000000000000000000000000..150b931ad246390c5ef15695d43af87fcdf89433 GIT binary patch literal 4096 zcmX>o|L36M*&A-EG1_OiZtQ*?SKsvzzD%pUf2#xvw zza&uPWb%9 zVW_XcTw41Mm-)2!wPkXxgaFX1FbwrIn2XC*v=*nmuQ!>M%LxL#3d2xegSoW!9WL`} z?`y8cJQX3JS78|HYcLm=t7t7wdtcx9pQo|L36M*b=cuFgMp!d@20jhkY2z95oc(C z(r6S+ADZwecQgb>Ltr!nMnhmU1V%$(Gz3ONU^E0qLtr!nMnhmU1V%$(07C!(SgH^@ literal 0 HcmV?d00001 diff --git a/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/chan_2 b/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/chan_2 new file mode 100644 index 0000000000000000000000000000000000000000..f21c3dac7570e27048cfe04295cb8e80f6f2559a GIT binary patch literal 4096 zcmX>o|L36M*NUtE-| zpHotjm#&+dS5~ZVq-SV|Bvx8nqF<6)TvDu`k(!f}udkPrnFM7sFfsz2`rQvGYCdZX>k!a$bhDm7A2SJ zCKUifNY6~qP|pAo9r`^vs~H)#MgU!~p!&-npbKCi z8j=diQh?q9BEwja1S7+&NT5=KLy)w?We--3Gwmd!##wX}LNClgTf`6SsyTX|?c&9K z*HU%f?o_o&xWLTt4@srR0UZ`#C?lE0U=jl~=z|^D5eJqlKpX*!5p0P#uQWFi>s=b(*cT4t>nDDykXFe*4RqK1_GBY?PAXIX9$}cxEOSQ1HG)qlM zG)ze~GBh(ZPE55lPfkuVGy?L>lZ?_#lFU-{Qc{yj(}5vonheywARg>k4o9eCNlstM z`MJ6Id1x{G6Uk_pA3pBpzdHSVz_|zC7ZqtY&({~0aX-e$uqFlQhyrJDUgPl4fP@%9 zM<7ZhQ0W7V1W54&;y{WYWFe5-fT0UZ|5H;DHp1L?PUCXhqpEfBml_sb`{uChmS@sk zFGdFDbf8KHMzGr&o+v`x1~eIKaa2%}QIwjPf|{`QBAEcQOXJw8dj*@W@XGVsa!K*5 zmD(ZZ($CD$k%6$QFxiJA*(@@~y1=UMT@ zB`(Q53i~!+U}Rv=2C6)e4Gz(QiAwlF6fGooAnAnJk#b*pnvjNt{=>Ewm3cQ9R?D7S vb%mM1I|pG$mw>Zo4#FfB28B|fo|L36M*tV+ zfl-pd)!@@UkS|~uDh1}!+IP6jr@gOl-+gri6qhgz^);A_%T=@%r@gO#7CbryN+U1~ z^);AFYv18ApZ30fIseuLP>z9NsIS3XT&|+EIPHDS8GZR0E6}Sj4D~gbOKacZGN1Oo z{(k<{9X6m>VHoObFc+7rXe~~AUuTINe#8#+Dhxw?4d&9?ceu=_y{~=hcfa5OdKHGD zz6Nt~xr)}}wDn+a literal 0 HcmV?d00001 diff --git a/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/index/chan_0.idx b/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10352-20190826-155748/index/chan_0.idx new file mode 100644 index 0000000000000000000000000000000000000000..7c04f4cfa0736741759a69a24a1cf070db388878 GIT binary patch literal 88 tcmX^3@yok)kBaj|L19gqj)NJNKUZng`!}{`cgIzyAIHSM9L$ z%kz`pfBWq-k0?iq=HJq!cMl>s_4IpIbyOA@g>h@xEs@q7YR#nT58da&RN)@S3H(`ALy~h;W(ZG~m5`#g@ zn5q}d+Zr*7jbJve=S)-&nQov3Az;L$LtTZzyajBE5M+EV$!|p?9|o^7YAU)WS`j29 z$XhMfqn672?(235{+5_^iJV5Z>si!9!`^gF>Zl{V%mxEp)omB2t=T5k(bhL7u7?d= zF^(eMF+9&2mXm!#Wz}f7(42&73`mTrr;ZGE$qXQ0f%eNWSE*E~HSpE3W2=JAh#7_* zu)*1@hOJ)U{KWv%wrtO~bQR|)u-R^I%N1=$F8Ax|cDcSisFeGf3_rJPv{9)K7~7G# zkjzybeeCHrm-I-`B74XNM+_YH4rVD;#Gf{Sh_Mf?6K1LJpF@}+-+aK(u>tM=>@KM> zVZPcz3#pAB^j4KaTxv(RUQfga&}EKfm9-t z7ueERSRH9jFg^c3`FEub$RLOu56u{*xsl9ft%U7xjltL;#R=z$a$M4@f{cX5imXIT z=eb3J+@gS2c}$y_;}$$Q9!BJFK421l>I<@nVGl)8k!mn-pff{rllfKTz(qLrbxYB$ zfgLi%6t)V}4G0FwQZg%kRoVoyimmC^5QMU93ku6Vbumd}*?3KqKGie_=CK}{zz=Ae z%yd5>O%M(_E0CZ^sXQ`D;Ca*bS?I1Z_RE$8}^&;vD|6J?qadAlSe5tbn+7$6=lC|QM7zN4uQ zUo;3$9_WA#RQXFP4DxxXsrrhV%J&&V@3#z_MywhuvdRdCZ!*^Z|NInN|EH|z=V|$W z9fcoM#6GG*v@2x7b;U{qBPB}0;(IYoa-*WB1K8mJ}?x8t?^!@)T1$PJw3yWjkytA-&n{bq~9-l$5hpyLl2XU|M7|XbPt8@#*1S zCvv8oWiECX@$RPa4wm=}t^XISm!m51u)BX8VVSdF#qI*jn_{^%Mz1r&KKw=E~5AOCku+jJRw7>2rH^4ht-H(rE*(cVSR&+&TDViOqDtg zM?qRAY2R`}(%@WI>m;86bi@xJ|Iv0X*2xn@N<(~x=R8?6EiW4;g5h7Kcikes4OK6*xZ^0@~t|O0j)YARK)W3 z1gqXys5Ao;LRI4e30Ai!48~@3RHZggsue?Kn!5@)BgS!oqt=9dikk=i|6$G=!2KA= zEJI~%LwSI!EI#z>LP^TlcG4KMlJfz3wQt}&7SlP z7LtOAByVA7gq(a&>f5#<$Y$+Lr&mw#dB<=>EzMv~R7mBVA!HU(0qevq@gQzRS6xz5 zVus}T!FEkIX^Qjz#C4AHOm7AR#Kw|9PB`UF>_1Fcs(jn2qlkC0OGB2h<|E AjQ{`u literal 0 HcmV?d00001 diff --git a/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/chan_0 b/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/chan_0 new file mode 100644 index 0000000000000000000000000000000000000000..b941b9589666ed5e7affe078316b99149140820d GIT binary patch literal 4096 zcmX>o|L0(HYTm|;h7QlCr5*5kRJpZ>0SQ>$lHTbwgMmR}ny7^{kY2z9m25y#G|C(e pfzc2c4S~@R7!85Z5Eu=C(GVC7fzc2c4S~@R7!85Z5E#@U003Iu5efhR literal 0 HcmV?d00001 diff --git a/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/chan_1 b/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/chan_1 new file mode 100644 index 0000000000000000000000000000000000000000..9950f0b3734e2f198fe085fb65e33228ebe7db67 GIT binary patch literal 4096 zcmX>o|L0(HYTm|;h7QlCr5*5kRJpZ>0SFjD1Q5(Baog!MgMp#gLCnG#NH1W5h%+=m zX*3F^4^4QKI~oF`Aut*OqaiRF0;3@?8UmvsFd71*Aut*OqaiRF0;3@?fFS??C3X=v literal 0 HcmV?d00001 diff --git a/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/chan_2 b/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155748-0400-20190826T155751-0400-1/ust/pid/hello-ust-10353-20190826-155748/chan_2 new file mode 100644 index 0000000000000000000000000000000000000000..67e30a84edf3ef3f28d06f64520354d95050bb22 GIT binary patch literal 8192 zcmeI0e@s(c?~ij~mrEj|Pzh@8^Br^WKePapT8IL`QQooAy&hPG{EetDlzvc!fxR;AKAQY+G9eKp7J>8erCHgk^$WbsqMhOI>k{0fO?$<I0y9upjUHh z*YNhntpmliXRfDxaxT;IV-^Fx-U%}!URsH?t%<)&Z9b1%YA>13&HJ>x({6V^`I%5*-1VNb)(D|A?lJpRU7F0xP%=!zvUSIOzAow)4_t0q-s40^( zOC!=B4Xy;P?S>EcM2Ann6(ZN>K-U5RQo&z#i}Zj2OgT(#nm`j)eDM*KjppLtTCEnB zH_t6{Q#9ATD_00!yFNQTGj8^(u$UPQF-M~_-d2Ibd*#f0e!ZGEahxC~87xL2 z(IBunhMWY!z_FZx=LD9sm|0U|qB%z=h!$TilzQnsIJ~9n9W zbzWzC;qjBx`ujW1h$}|hmZoI)slX3Gnd>@Ngu-_Qjz2 z=zHUCrA*!H7T1)0{>(>mSt20y#k>{SN!@cp`%?#7%ww)azl?-2z_A}@`m2!uO$**T z_c#}DdT)0SXuWQZ7hO)P!z;-QIui~aked^ky`u#KA7@o%tiR+b-=D#k#doyyF`%># zW@Z-#_RS7FPq%&@troX;^2TYbmj{zJRm=Vw+BCY;Dn>23M0dX61BJNnxW z1{^#hDO`yrqO%SwAp7A~@4Lfi=g?t+k79U2bvMa1NH_bk%kMkR#STYDHCFbFEsoxy zf6A@`SDWR`@VDaXj3&{XoNN*Wjuk{BYhn{PF*%9nb66wvk}SrYM2kuI=WRE&z~MD< z=n#!y@33luZStx;*D4PtDwj6A@N>xU%FM9p6HTR+8H3ern|oAX=u0`XyJw;wu3AvB zP|!M(+CCo~=Ze~a!bQF~$yclj=h2Q!r%0exDDEglls?}{RiK(b>~UNxjhPRU_q@_6 zQ4qtAkV~6RsXl$`iVe;#X)TFiYUC=Zq8+DCeYG?fz6}5n!_>&7O{Y|!KDB<|)&c2_ zA%>}utE7r{oIZ7PKT((Fg0>%(<#-bPhE1va6Js7 z62sKURZ>MePM?}9)QpEiRAQJKxwPq&>eHvLh>s7M0a1xzYUC=Zq8+DCeR0Xd>X{Ig z7^X%pZ91j;^r6T&K6U0dH{u?GsKhWea%s~k)u&IrVAa^tNQg=dQzKVN740~E>e@FiFOPz# z#4t5-Y11jyr%xTy>u06^zY)XK$W>BBJ5HZ^-uPhBT!=~xQzMr)olo|L0(HYTm|;h7QlCr5*5kRJpZ>0SK5u1Q6_cK6R(l33m~NEyOA-eYAYX|Y6}UKTw78o`B2(0q#rFC@D;l7teNb&4bRi5 zhOlq8Yt2TJ%0gKdYC^eQp{??Ev)L>wmAXW$t!=r{RyJY0eC<-vvQ;pp9imfcnMle7 zb+^V;!bUI~$F--5i%d7rf)FrbNFz;w!K?*riV$RcE;QfrMm7vyrII0PDsM%QkRWR{ z9al0H>UH0AOYpZu%}eAowj9@#3^eRb$B=Agtd;3-s41G|;IviCkTkUQ&8g#J15=DG z@^^ICHAm%mA6Hp59L_Z-pc;J=6UkM^I=!Sikgq`d<%FqJsMH!Y_&KpHg|it`UAKHT zID196lnb0cA7EIfXjX)Jqupq4H$Bu6;!7%*NOf$}m2JH9RB#StqnV{nxu z#=bXtUMeaUko7Z<72uaVj6Atr;*l7 z--+hbz!#!%m4I`Zt|O|Nqeu{XI42e|l*yC@1av1~RyJJp0uo4U08=J01=^&;(i((W zNQJx){FZEOZIN2#1p)1VEG!q+1jvId7F|lVCYdhzQd7S|cir$g;Ug0|$=pIkf}KjMB_V=CfAJc9_Oste@hz^MpAr?p1z9LSsc%Jf^eU zB0_Ev!K+-VPK`+io@^H*axfn-2`}~eSwy!+JgEqnMur;IRVSWbc@E6OQPxaRGly2d z6jRtTOgH9A$+Y-Y=@Q5)ma3T}5X!VnC@f{k!6c1k;|&pINmXr_$7*N-KcHz)!+DQ1 zK{(_rLV_MA@<=Ix7fst^p*iBjD`)0(u{6!GeL*q&SHE+_tkh##92n|ox-MyaJJL(M%0*wi{CR%_xcHd27alzuN0Z%X}PcgOQG+5z|=|1** zYO-=*t~CC1LE3%Y8=Qt9Wv$r?kRn^_af7=@Pud$CMli})AYpgmNc{NY!7%C#2B8~e zESJ)@Tk>azxL8H3BOgi$+hH>a>CNt-f7p+tq>Q!N-II6$Q=ZMB8JPOVr-ysJ(3vup zx!7IAySv6aSmNhe|L3fi!z%EwzkeKJnXzES?gGoZVtH$fUiH2?I}lHPI63Vdg;-^* zX0f}#>XESeesFv+*o}adv8KlE0<6aaYp-{55_(p~?g4feU_BC8N5`+uUWe63HDlX? zZEF-@JrY=F{m8<&nzea>{RLEy1l9gofA940xF1BpYQ{c>P;6wt&TMdxGrp9($IT|M z7<_%$j|9Pt{fyN6BgKZs4!LirLWj!O&Jc?IjQeybynp4wy+#Kv2ErxWjyu6$Avzh` z7!Tq@aInD=ASA*W*Mv*oY3u*?LFD`&u2!WThQuROd{5Flc;)Odvd{1bx@pJ7i|G32 zI&e2WMXn|13v^=_(Pj3@f@o5g%aAC-lB&sIHKtdI+?H3EtV`qb+S?UVm28`#Agq$K zXE_0BaIULWl1~9TbX$4odJNVA_vED z|MvV)bm%+J0`7b+okTvMj;GVX51$n~qs|{xZY2!Z+=>PAtU8ndtvV)D$nyRKtKM0t zBm?6@RigrNR`(|i#%6R>v9?I6B|~PCyK*^0#!-R8)|h?rn+M+iLCzY&{TRqBBXMFu zeu4Y)^lAcMBjBxOaC8H{4Df$dkKI_;maX)T_S6vcQ;?lu(MK@`R r^Z(d&q_xDTIRB5{7+Xt-it~T={YvCw-&(>{od4rjMh}b%OB literal 0 HcmV?d00001 diff --git a/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10352-20190826-155748/chan_0 b/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10352-20190826-155748/chan_0 new file mode 100644 index 0000000000000000000000000000000000000000..de2ec8d00d075baa3531c5113bbfb2ae08a6b783 GIT binary patch literal 4096 zcmX>o|L36M*=NNQnB zNd}NE5g-?ap)z1DOa~KGkQqwTTD&B+xCCMq3)DuC2rf1uS3yjBz~u@x%YjjnL3c%n znJADC!%!(Om)5?+Wj^hF-MiV_Mhxgx7>4>9%*Ev@T8q=(*9TrYIf(IA8d^b(5zvp{>o_p@oAo&%fE1y$4xzTvBcl>xi@Xj55 zyzq-Y<>i6w@V0YvvFd$z_Af?#w-%jxpLF@TTFs}ZPlnf8au-K^GA7MBInn*X%t9f0 zRlU41>{!>oZ52&>h>ysuA#X^B^}$hNzLlt2qULCAh3@0kiG0Is8&S1H%@M7$=Hu08rSJJ9QME+P z(b@{#$Ezo|L36M*4>9%%!#O zaG6hgU%Qt#pVk9<6^5a{26J(_iq_(^_w_!Gnv42Cufj0Y*I+KKeTU0@+WR_oddYPI zpjTlS>T56;m#b(kPJ3UkP0GD%2=popLwybA(%N^p%%`=lp?(~tMnhmU1V%$(Gz3Oy G2mk=-2At{u literal 0 HcmV?d00001 diff --git a/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10352-20190826-155748/index/chan_0.idx b/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10352-20190826-155748/index/chan_0.idx new file mode 100644 index 0000000000000000000000000000000000000000..d4e1b127264c81483b92e23af39a9715c53033e6 GIT binary patch literal 88 tcmX^3@ygy)Ka|8JTj8J7#&H@Aylg_MyOWJAtcuq zBP7>XLC6X;XV}(guA&;zsH6^nkfHBJ&Y-Hz#pqOLdJ z_;m}er&AqaU$084Hlz(!-lTH9T;HtFa;sKV%Z(aUsjNyBX+YPZ|KPpH6x-3jl(vY$ zpk+eUGv;lK8O2608`pEDs)tP1(1H*!V$zYWLTBCrHbn?BK9%IRqLFulR~a=GT@$Sc z5)$OCmg`YVW&Y#KP6>WX%sNL-W83vCYNBDUyC!wiv0i4wp|0w-i^JAzlj>;e>r>am z2Cf)K5$_nDXN}6qXF_GwsJqadglY^(OsJ=h4R+29AYXy@^9fg}RH-%a)rn)Pg3Xv2 zh8?iM(W{27p5gdK2h+A}&$e_G$0)FAwwiK9+my?Ly4oz)o5M>iLB9Kdp<@l&{n4FM zW6Fp<9J;WGXi>&s$Jb>%KVmJ) z7+fWdao~-CiwPCz>#3(ti$3GyJ1Md#GfspXNcb?qB;*R_BXUUH$+%q>zR z2()%7xZ%y!*SREq)Dt?K!SX6OF;Jj)NzT#qc|L#AdYYjLgE}Lg3u1b}w49;{xzVWA z6S}~b#=`1IbAqem50rmb>VOP_$nnsOQJNdcY}QKH4%Zm;4N{zNo+!s9y(-8^XspOe z#B`op6v!W*`b6^~+p$Yte zrpZkA1JVTHkh1~_dYsB5qXeEeY@dbhDign)nbF14G{@9c22m>)@XGW6Bv4+##5qPWklXy6Osta5EKj$4;PfI!Ybd< zREJL*geMPmzy_-PYbp%#d8n!SlA6l*8ABhm4Vy-+8cVXu2!?MKng2(VLkL9SBy*mk z|JQ-|K?O}T01?4Mdy`jd1Su;v_XF|F#jw9C0`|ps!~+d z)JlXdTp4;O`6NH`@`adTo0smP<89`MfQcZjrk=Ip<Me3Axti=MR8-;ZIGGe^S5g(Ha_ zkUPVu+wVtilrv+>T5(xCJ0!&_VjcNdN?8%Rl91kP_j~)jSW3#7uH8I|7cecd9&`n! z-r@27PB(I;B(FpfvANIm1Sj}0-kcx$j z_%2&=DtU{GO@1->YQGl?f;sCMnMX*91&u9o+fYRgm9v~773&$d=}>qC%Y&nhE}RX7 zbGU79f_D)*Im;M#;zO{p!4n`P!nkX~zJAvH|Mea$4t#X?a$f_Nk*vTnxwz+ zD%fLWkMsBGW*zjJM>p8lf#dOMaxFhzpqn_0KHy(1C>HaC45=b4shS*CV|J0sZFz+a z3_3oo;nAQ~!ayB|qadx4v~M{fX>hKKRg%vDI^qYA|71I7tKj7O;Z4Ab?@=#q&DRnJY;MH@ z`BojtfL5IlDq?wif>m!URGNVap{j9#1gqN<24gcis#2RL)si7I&0U3@5#zYPQES3J z#mNKz|1f6_;d~5amXR{CA-}+pd3G^@4-)WTGdQ{l9|r_?)#T@Aa3Gn#x(FfoswhsW zQA?cW14^1b9T+Sm1p`SQ#Lfsg`JObeZ9|aFTANOF`gvQUU_K2o>D z#G;hNLNYK~jC8%{J?~qVH>IBKf9tvDJkRO8=lwlrx%ax}>v~~4no70zzHdxi4ZbGN zR=r=JnWy{izAeuyj^@1t$F_C77~zxfTeI-!d%;~LWK?pUt=^F(VYVF6d3-z;4PVZd}lo6^*sM%Uup>sU-N6*EO zPpB%PW{ak?=Hsb5W{-!<2~{Q3Y^|-(IiC9RV0WZ~P*pe;{Rzs*Np=OJwv*zQe zyLRT2wS=k?YPQx^=p0Xdx|f`*BUF`8vqjTc^YPR-iRs09LRAShTWc$Hj;79Jf*)b| zORZR|!2^G^I5kP49clr48w3LRAShTWc$Hj;0RZ`Q>5JUGUCZ2w5fcY|)g~ zd^El9rO$I8S_xGp)NHM-&^ewuRrvkbMyM*GW{ak?=HsbPVxQ0LgsKv1w$@hY98E2Z f?%*154Y&qe1FiwrfNQ`t;2LlZxCUGU|8C$1d9M=j literal 0 HcmV?d00001 diff --git a/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10353-20190826-155748/chan_1 b/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10353-20190826-155748/chan_1 new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10353-20190826-155748/chan_2 b/tests/data/ctf-traces/succeed/session-rotation/archives/20190826T155750-0400-20190826T155753-0400-2/ust/pid/hello-ust-10353-20190826-155748/chan_2 new file mode 100644 index 0000000000000000000000000000000000000000..164a6a9502aebc667ad389e445c8a14a8fd58bd3 GIT binary patch literal 4096 zcmX>o|L0(HYTm|;h7QlCr5*5kRJpZ>0SK5t1Q7TOWp+EyU|>jG!S(<|2Y5il85$ro zBa{oHK>Ggwmjse9oytHq3`13cxiFnDo0y@Jv=%Q(EiQpr#R9bvB!Y`g$W;*29&our z&2nIrWN67tny3Qg!!T3|%%!#OaG6hgU%PFIoURJ=Dhxw?4d&u<6|Kc-?`w&l0dv)W zUWH+(ufbee`wo}+wD4>9%*Ev@T8q=#*N__Q=>xfgpgKhCFe zK{`DGPsWyi>B1G&;Cdt*F71&^(tSZ@@KQ(edW*;iVlg^`m_w*hFGi?Q&mkl>ixCo= zs~}_rnlo%`yiifCXjDQEK*-Q{D`!ykb}>5jHWI3Mj;vDhp|WPmKiLl8EA-%6x7c+D zu4gkHVPEew#Fj`Ep{fWCq1vp`c6Cz}#j09s%Cz3zR9YQ%9r`O59+hlI15_5jlP#ksttMIoH-}@X4*T%(@hGVW=9Vv2 zVHQ#$e+GU_Ha0d$qxOt|c0d-E3mXFDK^BY7WJi}Rk9@6b-=Mp$1)T7b37uwcks?8$ zwM)(oZ?3-1B=Msj*WnzNSIO~#0=-LehNjQ*`Qy%$3{4oaGiJFUrUy*RDT)wVtwuAU z3v6i>R!5o>TpfR){JT;IWDrD-g=UP>%t+?5R>F3e#-MMI;<)ofIWFl{K}JGjMOHkf zv)m#492$)7jIyE#mnO}JhEW%OIElIaV zcE}V{*fLDl=1R$|_*Lr>$SSs`TVoK)vMneq71_lkjb-B{krY|e92m!HXaYZ=X;RaD zk2FCz($p_!=5(<%&57(v%1k%3p!!)YWsNGcv1I7hDQMza zW)lo4G#jjjK1Z_&l`k388n4b`0z(hfctWJBjL6$-LK0yaf`S3!;ewJ?SmisK>aa-z z_vDcd*g%zkO@%=|4>i?XQd9XpW9UlPu;qwVYe`la!SGFy`F}Jygg_KdG8ZZOe;tS) zRM12N;1N8uH<<7|V9#78bNeaqY7_%8=k0chWVotuiD0Az%JzeX<9-4qs%mB>LKm(K zJ(PTsA9>kA%&5ys_t5b+b40*IkXBRATk-O!NTv%#*R{(DSRahl&BsSO;77b}_Pr12 zVkHrgFIYq{O~K5fdoM#4>9q&qqKOP?S z_am%wX0!OX#Oj`~dObYY9d50pJ zk9y9s1zXlA!MZ1~jt8-caXoMG0-u*q-4j$h$Aj&oy@Np*1?xHM7(%&_5#MD?P9<+~ zvB@t6U+oQIK`>`MBl8GJxuEfa+%{B^L**=I2<3XlZ8{Vl!Sdi}qYGyP;T&$)o8n!B zPR=sMo%j%JY_J3fi7@V(u&?)Bi|7XXI&eHbO|Ip~3v?4_(G~X9f@D#T%aAIIO*TMA4)EL=Uc#y_odUwhtzR*I=l&3u|4YI)_g5tz~)vgkZ;wI3~1E} zp(2*ICs_T)LZulP7pfi?h_kvqVK6qMqe_iMQY{%W)7+KI88MCv9JMCwlb<~B{||H4 z2+qeqW*JLU8}bVrnWyJd_#gofHiM&^@NqzJS5JO^1_zSat3?RGS4DA3@bysq6Fs1$ z*)zqUAt@M0p>O)~JxQ@`gOkl#n@+Eu;0urOM7A`8I#D5&vxksbNCm7D2gQT96&-a+ zO^Hhf+ZCOpDfj;q$B`Z+M&ad4)#4rn9BWs{LttwQG&_+e~ym8 ARR910 literal 0 HcmV?d00001 diff --git a/tests/data/plugins/src.ctf.fs/succeed/trace-session-rotation.expect b/tests/data/plugins/src.ctf.fs/succeed/trace-session-rotation.expect new file mode 100644 index 00000000..9ac2644b --- /dev/null +++ b/tests/data/plugins/src.ctf.fs/succeed/trace-session-rotation.expect @@ -0,0 +1,12739 @@ +Trace class: + Stream class (ID 0): + Supports packets: Yes + Packets have beginning default clock snapshot: Yes + Packets have end default clock snapshot: Yes + Supports discarded events: Yes + Discarded events have default clock snapshots: Yes + Supports discarded packets: Yes + Discarded packets have default clock snapshots: Yes + Default clock class: + Name: monotonic + Description: Monotonic Clock + Frequency (Hz): 1,000,000,000 + Precision (cycles): 0 + Offset (s): 1,566,682,056 + Offset (cycles): 14,585,897 + Origin is Unix epoch: Yes + UUID: 78760d96-b4c7-47f0-bd66-b73a504fee96 + Packet context field class: Structure (1 member): + cpu_id: Unsigned integer (32-bit, Base 10) + Event class `lttng_ust_statedump:start` (ID 0): + Log level: Debug (line) + Payload field class: Structure (0 members) + Event class `lttng_ust_statedump:bin_info` (ID 1): + Log level: Debug (line) + Payload field class: Structure (6 members): + baddr: Unsigned integer (64-bit, Base 16) + memsz: Unsigned integer (64-bit, Base 10) + path: String + is_pic: Unsigned integer (8-bit, Base 10) + has_build_id: Unsigned integer (8-bit, Base 10) + has_debug_link: Unsigned integer (8-bit, Base 10) + Event class `lttng_ust_statedump:build_id` (ID 2): + Log level: Debug (line) + Payload field class: Structure (3 members): + baddr: Unsigned integer (64-bit, Base 16) + _build_id_length: Unsigned integer (64-bit, Base 10) + build_id: Dynamic array (Length field path [Event payload: 1]): + Element: Unsigned integer (8-bit, Base 16) + Event class `lttng_ust_statedump:debug_link` (ID 3): + Log level: Debug (line) + Payload field class: Structure (3 members): + baddr: Unsigned integer (64-bit, Base 16) + crc: Unsigned integer (32-bit, Base 10) + filename: String + Event class `lttng_ust_statedump:end` (ID 4): + Log level: Debug (line) + Payload field class: Structure (0 members) + Event class `lttng_ust_lib:load` (ID 5): + Log level: Debug (line) + Payload field class: Structure (5 members): + baddr: Unsigned integer (64-bit, Base 16) + memsz: Unsigned integer (64-bit, Base 10) + path: String + has_build_id: Unsigned integer (8-bit, Base 10) + has_debug_link: Unsigned integer (8-bit, Base 10) + Event class `lttng_ust_lib:build_id` (ID 6): + Log level: Debug (line) + Payload field class: Structure (3 members): + baddr: Unsigned integer (64-bit, Base 16) + _build_id_length: Unsigned integer (64-bit, Base 10) + build_id: Dynamic array (Length field path [Event payload: 1]): + Element: Unsigned integer (8-bit, Base 16) + Event class `lttng_ust_lib:debug_link` (ID 7): + Log level: Debug (line) + Payload field class: Structure (3 members): + baddr: Unsigned integer (64-bit, Base 16) + crc: Unsigned integer (32-bit, Base 10) + filename: String + Event class `lttng_ust_lib:unload` (ID 8): + Log level: Debug (line) + Payload field class: Structure (1 member): + baddr: Unsigned integer (64-bit, Base 16) + Event class `lttng_ust_tracef:event` (ID 9): + Log level: Debug + Payload field class: Structure (2 members): + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_EMERG` (ID 10): + Log level: Emergency + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_ALERT` (ID 11): + Log level: Alert + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_CRIT` (ID 12): + Log level: Critical + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_ERR` (ID 13): + Log level: Error + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_WARNING` (ID 14): + Log level: Warning + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_NOTICE` (ID 15): + Log level: Notice + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_INFO` (ID 16): + Log level: Info + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG_SYSTEM` (ID 17): + Log level: Debug (system) + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG_PROGRAM` (ID 18): + Log level: Debug (program) + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG_PROCESS` (ID 19): + Log level: Debug (process) + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG_MODULE` (ID 20): + Log level: Debug (module) + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG_UNIT` (ID 21): + Log level: Debug (unit) + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG_FUNCTION` (ID 22): + Log level: Debug (function) + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG_LINE` (ID 23): + Log level: Debug (line) + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG` (ID 24): + Log level: Debug + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `ust_tests_hello:tptest` (ID 25): + Log level: Debug (line) + Payload field class: Structure (23 members): + intfield: Signed integer (32-bit, Base 10) + intfield2: Signed integer (32-bit, Base 16) + longfield: Signed integer (64-bit, Base 10) + netintfield: Signed integer (32-bit, Base 10) + netintfieldhex: Signed integer (32-bit, Base 16) + blah: Static array (Length 3): + Element: Signed integer (64-bit, Base 10) + arrfield1: Static array (Length 3): + Element: Signed integer (64-bit, Base 10) + arrfield1_hex: Static array (Length 3): + Element: Signed integer (64-bit, Base 16) + arrfield1_network: Static array (Length 3): + Element: Signed integer (64-bit, Base 10) + arrfield1_network_hex: Static array (Length 3): + Element: Signed integer (64-bit, Base 16) + arrfield2: String + _seqfield1_length: Unsigned integer (64-bit, Base 10) + seqfield1: Dynamic array (Length field path [Event payload: 11]): + Element: Signed integer (8-bit, Base 10) + _seqfield1_hex_length: Unsigned integer (64-bit, Base 10) + seqfield1_hex: Dynamic array (Length field path [Event payload: 13]): + Element: Signed integer (8-bit, Base 16) + _seqfield2_length: Unsigned integer (64-bit, Base 10) + seqfield2: String + _seqfield_network_3_length: Unsigned integer (64-bit, Base 10) + seqfield_network_3: Dynamic array (Length field path [Event payload: 17]): + Element: Signed integer (64-bit, Base 10) + stringfield: String + floatfield: Real (Single precision) + doublefield: Real (Double precision) + boolfield: Unsigned integer (8-bit, Base 10) + Event class `ust_tests_hello:tptest_sighandler` (ID 26): + Log level: Debug (line) + Payload field class: Structure (0 members) + +[Unknown] +{Trace 0, Stream class ID 0, Stream ID 0} +Stream beginning: + Trace: + UUID: 21cdfa5e-9a64-490a-832c-53aca6c101ba + Environment (8 entries): + domain: ust + hostname: smarchi-efficios + procname: hello-ust + tracer_major: 2 + tracer_minor: 11 + tracer_name: lttng-ust + tracer_patchlevel: 0 + vpid: 10,352 + Stream (ID 0, Class ID 0) + Stream (ID 1, Class ID 0) + Stream (ID 2, Class ID 0) + Stream (ID 3, Class ID 0) + +[Unknown] +{Trace 0, Stream class ID 0, Stream ID 1} +Stream beginning: + Trace: + UUID: 21cdfa5e-9a64-490a-832c-53aca6c101ba + Environment (8 entries): + domain: ust + hostname: smarchi-efficios + procname: hello-ust + tracer_major: 2 + tracer_minor: 11 + tracer_name: lttng-ust + tracer_patchlevel: 0 + vpid: 10,352 + Stream (ID 0, Class ID 0) + Stream (ID 1, Class ID 0) + Stream (ID 2, Class ID 0) + Stream (ID 3, Class ID 0) + +[Unknown] +{Trace 0, Stream class ID 0, Stream ID 2} +Stream beginning: + Trace: + UUID: 21cdfa5e-9a64-490a-832c-53aca6c101ba + Environment (8 entries): + domain: ust + hostname: smarchi-efficios + procname: hello-ust + tracer_major: 2 + tracer_minor: 11 + tracer_name: lttng-ust + tracer_patchlevel: 0 + vpid: 10,352 + Stream (ID 0, Class ID 0) + Stream (ID 1, Class ID 0) + Stream (ID 2, Class ID 0) + Stream (ID 3, Class ID 0) + +[Unknown] +{Trace 0, Stream class ID 0, Stream ID 3} +Stream beginning: + Trace: + UUID: 21cdfa5e-9a64-490a-832c-53aca6c101ba + Environment (8 entries): + domain: ust + hostname: smarchi-efficios + procname: hello-ust + tracer_major: 2 + tracer_minor: 11 + tracer_name: lttng-ust + tracer_patchlevel: 0 + vpid: 10,352 + Stream (ID 0, Class ID 0) + Stream (ID 1, Class ID 0) + Stream (ID 2, Class ID 0) + Stream (ID 3, Class ID 0) + +Trace class: + Stream class (ID 0): + Supports packets: Yes + Packets have beginning default clock snapshot: Yes + Packets have end default clock snapshot: Yes + Supports discarded events: Yes + Discarded events have default clock snapshots: Yes + Supports discarded packets: Yes + Discarded packets have default clock snapshots: Yes + Default clock class: + Name: monotonic + Description: Monotonic Clock + Frequency (Hz): 1,000,000,000 + Precision (cycles): 0 + Offset (s): 1,566,682,056 + Offset (cycles): 14,585,896 + Origin is Unix epoch: Yes + UUID: 78760d96-b4c7-47f0-bd66-b73a504fee96 + Packet context field class: Structure (1 member): + cpu_id: Unsigned integer (32-bit, Base 10) + Event class `lttng_ust_statedump:start` (ID 0): + Log level: Debug (line) + Payload field class: Structure (0 members) + Event class `lttng_ust_statedump:bin_info` (ID 1): + Log level: Debug (line) + Payload field class: Structure (6 members): + baddr: Unsigned integer (64-bit, Base 16) + memsz: Unsigned integer (64-bit, Base 10) + path: String + is_pic: Unsigned integer (8-bit, Base 10) + has_build_id: Unsigned integer (8-bit, Base 10) + has_debug_link: Unsigned integer (8-bit, Base 10) + Event class `lttng_ust_statedump:build_id` (ID 2): + Log level: Debug (line) + Payload field class: Structure (3 members): + baddr: Unsigned integer (64-bit, Base 16) + _build_id_length: Unsigned integer (64-bit, Base 10) + build_id: Dynamic array (Length field path [Event payload: 1]): + Element: Unsigned integer (8-bit, Base 16) + Event class `lttng_ust_statedump:debug_link` (ID 3): + Log level: Debug (line) + Payload field class: Structure (3 members): + baddr: Unsigned integer (64-bit, Base 16) + crc: Unsigned integer (32-bit, Base 10) + filename: String + Event class `lttng_ust_statedump:end` (ID 4): + Log level: Debug (line) + Payload field class: Structure (0 members) + Event class `lttng_ust_lib:load` (ID 5): + Log level: Debug (line) + Payload field class: Structure (5 members): + baddr: Unsigned integer (64-bit, Base 16) + memsz: Unsigned integer (64-bit, Base 10) + path: String + has_build_id: Unsigned integer (8-bit, Base 10) + has_debug_link: Unsigned integer (8-bit, Base 10) + Event class `lttng_ust_lib:build_id` (ID 6): + Log level: Debug (line) + Payload field class: Structure (3 members): + baddr: Unsigned integer (64-bit, Base 16) + _build_id_length: Unsigned integer (64-bit, Base 10) + build_id: Dynamic array (Length field path [Event payload: 1]): + Element: Unsigned integer (8-bit, Base 16) + Event class `lttng_ust_lib:debug_link` (ID 7): + Log level: Debug (line) + Payload field class: Structure (3 members): + baddr: Unsigned integer (64-bit, Base 16) + crc: Unsigned integer (32-bit, Base 10) + filename: String + Event class `lttng_ust_lib:unload` (ID 8): + Log level: Debug (line) + Payload field class: Structure (1 member): + baddr: Unsigned integer (64-bit, Base 16) + Event class `lttng_ust_tracef:event` (ID 9): + Log level: Debug + Payload field class: Structure (2 members): + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_EMERG` (ID 10): + Log level: Emergency + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_ALERT` (ID 11): + Log level: Alert + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_CRIT` (ID 12): + Log level: Critical + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_ERR` (ID 13): + Log level: Error + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_WARNING` (ID 14): + Log level: Warning + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_NOTICE` (ID 15): + Log level: Notice + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_INFO` (ID 16): + Log level: Info + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG_SYSTEM` (ID 17): + Log level: Debug (system) + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG_PROGRAM` (ID 18): + Log level: Debug (program) + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG_PROCESS` (ID 19): + Log level: Debug (process) + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG_MODULE` (ID 20): + Log level: Debug (module) + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG_UNIT` (ID 21): + Log level: Debug (unit) + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG_FUNCTION` (ID 22): + Log level: Debug (function) + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG_LINE` (ID 23): + Log level: Debug (line) + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `lttng_ust_tracelog:TRACE_DEBUG` (ID 24): + Log level: Debug + Payload field class: Structure (5 members): + line: Signed integer (32-bit, Base 10) + file: String + func: String + _msg_length: Unsigned integer (32-bit, Base 10) + msg: String + Event class `ust_tests_hello:tptest` (ID 25): + Log level: Debug (line) + Payload field class: Structure (23 members): + intfield: Signed integer (32-bit, Base 10) + intfield2: Signed integer (32-bit, Base 16) + longfield: Signed integer (64-bit, Base 10) + netintfield: Signed integer (32-bit, Base 10) + netintfieldhex: Signed integer (32-bit, Base 16) + blah: Static array (Length 3): + Element: Signed integer (64-bit, Base 10) + arrfield1: Static array (Length 3): + Element: Signed integer (64-bit, Base 10) + arrfield1_hex: Static array (Length 3): + Element: Signed integer (64-bit, Base 16) + arrfield1_network: Static array (Length 3): + Element: Signed integer (64-bit, Base 10) + arrfield1_network_hex: Static array (Length 3): + Element: Signed integer (64-bit, Base 16) + arrfield2: String + _seqfield1_length: Unsigned integer (64-bit, Base 10) + seqfield1: Dynamic array (Length field path [Event payload: 11]): + Element: Signed integer (8-bit, Base 10) + _seqfield1_hex_length: Unsigned integer (64-bit, Base 10) + seqfield1_hex: Dynamic array (Length field path [Event payload: 13]): + Element: Signed integer (8-bit, Base 16) + _seqfield2_length: Unsigned integer (64-bit, Base 10) + seqfield2: String + _seqfield_network_3_length: Unsigned integer (64-bit, Base 10) + seqfield_network_3: Dynamic array (Length field path [Event payload: 17]): + Element: Signed integer (64-bit, Base 10) + stringfield: String + floatfield: Real (Single precision) + doublefield: Real (Double precision) + boolfield: Unsigned integer (8-bit, Base 10) + Event class `ust_tests_hello:tptest_sighandler` (ID 26): + Log level: Debug (line) + Payload field class: Structure (0 members) + +[Unknown] +{Trace 1, Stream class ID 0, Stream ID 0} +Stream beginning: + Trace: + UUID: 83656eb1-b131-40e7-9666-c04ae279b58c + Environment (8 entries): + domain: ust + hostname: smarchi-efficios + procname: hello-ust + tracer_major: 2 + tracer_minor: 11 + tracer_name: lttng-ust + tracer_patchlevel: 0 + vpid: 10,353 + Stream (ID 0, Class ID 0) + Stream (ID 1, Class ID 0) + Stream (ID 2, Class ID 0) + Stream (ID 3, Class ID 0) + +[Unknown] +{Trace 1, Stream class ID 0, Stream ID 1} +Stream beginning: + Trace: + UUID: 83656eb1-b131-40e7-9666-c04ae279b58c + Environment (8 entries): + domain: ust + hostname: smarchi-efficios + procname: hello-ust + tracer_major: 2 + tracer_minor: 11 + tracer_name: lttng-ust + tracer_patchlevel: 0 + vpid: 10,353 + Stream (ID 0, Class ID 0) + Stream (ID 1, Class ID 0) + Stream (ID 2, Class ID 0) + Stream (ID 3, Class ID 0) + +[Unknown] +{Trace 1, Stream class ID 0, Stream ID 2} +Stream beginning: + Trace: + UUID: 83656eb1-b131-40e7-9666-c04ae279b58c + Environment (8 entries): + domain: ust + hostname: smarchi-efficios + procname: hello-ust + tracer_major: 2 + tracer_minor: 11 + tracer_name: lttng-ust + tracer_patchlevel: 0 + vpid: 10,353 + Stream (ID 0, Class ID 0) + Stream (ID 1, Class ID 0) + Stream (ID 2, Class ID 0) + Stream (ID 3, Class ID 0) + +[Unknown] +{Trace 1, Stream class ID 0, Stream ID 3} +Stream beginning: + Trace: + UUID: 83656eb1-b131-40e7-9666-c04ae279b58c + Environment (8 entries): + domain: ust + hostname: smarchi-efficios + procname: hello-ust + tracer_major: 2 + tracer_minor: 11 + tracer_name: lttng-ust + tracer_patchlevel: 0 + vpid: 10,353 + Stream (ID 0, Class ID 0) + Stream (ID 1, Class ID 0) + Stream (ID 2, Class ID 0) + Stream (ID 3, Class ID 0) + +[167,412,323,318,715 cycles, 1,566,849,468,337,904,612 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Packet beginning: + Context: + cpu_id: 0 + +[167,412,326,481,317 cycles, 1,566,849,468,341,067,214 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Packet beginning: + Context: + cpu_id: 1 + +[167,412,329,215,278 cycles, 1,566,849,468,343,801,175 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Packet beginning: + Context: + cpu_id: 2 + +[167,412,332,686,962 cycles, 1,566,849,468,347,272,859 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Packet beginning: + Context: + cpu_id: 3 + +[167,412,335,970,853 cycles, 1,566,849,468,350,556,750 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:start` (Class ID 0): + Payload: Empty + +[167,412,337,756,859 cycles, 1,566,849,468,352,342,756 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x55bf:39b7:0000 + memsz: 2,118,208 + path: /home/smarchi/src/lttng-envs/2.11/src/lttng-ust/tests/hello/.libs/hello + is_pic: 1 + has_build_id: 1 + has_debug_link: 0 + +[167,412,337,757,943 cycles, 1,566,849,468,352,343,840 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x55bf:39b7:0000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x7f + [1]: 0xe1 + [2]: 0xea + [3]: 0xd9 + [4]: 0x74 + [5]: 0xa4 + [6]: 0x49 + [7]: 0xe1 + [8]: 0x1d + [9]: 0xa5 + [10]: 0xcc + [11]: 0x71 + [12]: 0x4e + [13]: 0x5d + [14]: 0x57 + [15]: 0x9 + [16]: 0x1d + [17]: 0x4a + [18]: 0x7a + [19]: 0x28 + +[167,412,337,758,321 cycles, 1,566,849,468,352,344,218 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f07:d87f:f000 + memsz: 2,128,864 + path: /lib/x86_64-linux-gnu/librt-2.27.so + is_pic: 1 + has_build_id: 1 + has_debug_link: 1 + +[167,412,337,758,532 cycles, 1,566,849,468,352,344,429 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f07:d87f:f000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x98 + [1]: 0x26 + [2]: 0xfb + [3]: 0xdf + [4]: 0x57 + [5]: 0xed + [6]: 0x7d + [7]: 0x69 + [8]: 0x65 + [9]: 0x13 + [10]: 0x10 + [11]: 0x74 + [12]: 0xcb + [13]: 0x3c + [14]: 0x8 + [15]: 0xb1 + [16]: 0x0 + [17]: 0x9c + [18]: 0x1c + [19]: 0xd8 + +[167,412,337,758,810 cycles, 1,566,849,468,352,344,707 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:debug_link` (Class ID 3): + Payload: + baddr: 0x7f07:d87f:f000 + crc: 4,192,223,715 + filename: librt-2.27.so + +[167,412,337,759,135 cycles, 1,566,849,468,352,345,032 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f07:d923:3000 + memsz: 2,109,712 + path: /lib/x86_64-linux-gnu/libdl-2.27.so + is_pic: 1 + has_build_id: 1 + has_debug_link: 1 + +[167,412,337,759,322 cycles, 1,566,849,468,352,345,219 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f07:d923:3000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x25 + [1]: 0xad + [2]: 0x56 + [3]: 0xe9 + [4]: 0x2 + [5]: 0xe2 + [6]: 0x3b + [7]: 0x49 + [8]: 0xa + [9]: 0x9c + [10]: 0xcd + [11]: 0xb0 + [12]: 0x8a + [13]: 0x97 + [14]: 0x44 + [15]: 0xd8 + [16]: 0x9c + [17]: 0xb9 + [18]: 0x5b + [19]: 0xcc + +[167,412,337,759,455 cycles, 1,566,849,468,352,345,352 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:debug_link` (Class ID 3): + Payload: + baddr: 0x7f07:d923:3000 + crc: 3,523,071,177 + filename: libdl-2.27.so + +[167,412,337,759,663 cycles, 1,566,849,468,352,345,560 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f07:d81e:6000 + memsz: 2,131,408 + path: /home/smarchi/src/lttng-envs/2.11/usr/lib/liburcu-bp.so.6.1.0 + is_pic: 1 + has_build_id: 1 + has_debug_link: 0 + +[167,412,337,759,855 cycles, 1,566,849,468,352,345,752 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f07:d81e:6000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x3e + [1]: 0x5a + [2]: 0x68 + [3]: 0x2c + [4]: 0x60 + [5]: 0x37 + [6]: 0xc9 + [7]: 0x15 + [8]: 0x4 + [9]: 0xd1 + [10]: 0x3e + [11]: 0xd8 + [12]: 0xb3 + [13]: 0x38 + [14]: 0xf1 + [15]: 0x70 + [16]: 0x1e + [17]: 0xef + [18]: 0xe3 + [19]: 0xa + +[167,412,337,760,064 cycles, 1,566,849,468,352,345,961 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f07:d7fd:c000 + memsz: 2,134,696 + path: /home/smarchi/src/lttng-envs/2.11/usr/lib/liburcu-cds.so.6.1.0 + is_pic: 1 + has_build_id: 1 + has_debug_link: 0 + +[167,412,337,760,250 cycles, 1,566,849,468,352,346,147 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f07:d7fd:c000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x46 + [1]: 0x2d + [2]: 0xd3 + [3]: 0xae + [4]: 0xe0 + [5]: 0xbe + [6]: 0x1a + [7]: 0x1e + [8]: 0x43 + [9]: 0xb9 + [10]: 0x71 + [11]: 0x70 + [12]: 0xa8 + [13]: 0x61 + [14]: 0x31 + [15]: 0xdf + [16]: 0xd9 + [17]: 0xed + [18]: 0xf5 + [19]: 0x7b + +[167,412,337,760,437 cycles, 1,566,849,468,352,346,334 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7ffc:f47b:a000 + memsz: 0 + path: [linux-vdso.so.1] + is_pic: 0 + has_build_id: 0 + has_debug_link: 0 + +[167,412,337,760,666 cycles, 1,566,849,468,352,346,563 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f07:d8c2:3000 + memsz: 4,131,552 + path: /lib/x86_64-linux-gnu/libc-2.27.so + is_pic: 1 + has_build_id: 1 + has_debug_link: 1 + +[167,412,337,760,859 cycles, 1,566,849,468,352,346,756 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f07:d8c2:3000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0xb4 + [1]: 0x17 + [2]: 0xc0 + [3]: 0xba + [4]: 0x7c + [5]: 0xc5 + [6]: 0xcf + [7]: 0x6 + [8]: 0xd1 + [9]: 0xd1 + [10]: 0xbe + [11]: 0xd6 + [12]: 0x65 + [13]: 0x2c + [14]: 0xed + [15]: 0xb9 + [16]: 0x25 + [17]: 0x3c + [18]: 0x60 + [19]: 0xd0 + +[167,412,337,761,022 cycles, 1,566,849,468,352,346,919 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:debug_link` (Class ID 3): + Payload: + baddr: 0x7f07:d8c2:3000 + crc: 70,041,672 + filename: libc-2.27.so + +[167,412,337,761,332 cycles, 1,566,849,468,352,347,229 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f07:d83e:f000 + memsz: 2,140,096 + path: /usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0 + is_pic: 1 + has_build_id: 1 + has_debug_link: 1 + +[167,412,337,762,201 cycles, 1,566,849,468,352,348,098 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f07:d83e:f000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x6d + [1]: 0x26 + [2]: 0xe8 + [3]: 0x99 + [4]: 0x6e + [5]: 0xda + [6]: 0x1d + [7]: 0xe2 + [8]: 0x16 + [9]: 0x13 + [10]: 0xae + [11]: 0x97 + [12]: 0xcc + [13]: 0xf1 + [14]: 0x22 + [15]: 0x16 + [16]: 0x7b + [17]: 0x2f + [18]: 0x4b + [19]: 0x6d + +[167,412,337,762,369 cycles, 1,566,849,468,352,348,266 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:debug_link` (Class ID 3): + Payload: + baddr: 0x7f07:d83e:f000 + crc: 2,803,861,771 + filename: 26e8996eda1de21613ae97ccf122167b2f4b6d.debug + +[167,412,337,763,125 cycles, 1,566,849,468,352,349,022 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f07:d85f:a000 + memsz: 2,113,800 + path: /home/smarchi/src/lttng-envs/2.11/usr/lib/liburcu-common.so.6.1.0 + is_pic: 1 + has_build_id: 1 + has_debug_link: 0 + +[167,412,337,763,321 cycles, 1,566,849,468,352,349,218 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f07:d85f:a000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0xf1 + [1]: 0xbb + [2]: 0xf + [3]: 0xd5 + [4]: 0x97 + [5]: 0xcf + [6]: 0x50 + [7]: 0xce + [8]: 0xe0 + [9]: 0xf7 + [10]: 0xa2 + [11]: 0x72 + [12]: 0x2b + [13]: 0x83 + [14]: 0x9f + [15]: 0x2f + [16]: 0x13 + [17]: 0x1c + [18]: 0x47 + [19]: 0xc6 + +[167,412,337,763,500 cycles, 1,566,849,468,352,349,397 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f07:d943:7000 + memsz: 2,639,880 + path: /home/smarchi/src/lttng-envs/2.11/src/lttng-ust/liblttng-ust/.libs/liblttng-ust.so.0.0.0 + is_pic: 1 + has_build_id: 1 + has_debug_link: 0 + +[167,412,337,763,733 cycles, 1,566,849,468,352,349,630 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f07:d943:7000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0xce + [1]: 0x28 + [2]: 0xd3 + [3]: 0x86 + [4]: 0xe2 + [5]: 0x7a + [6]: 0xae + [7]: 0x5f + [8]: 0xd2 + [9]: 0x80 + [10]: 0xa2 + [11]: 0xd6 + [12]: 0xf6 + [13]: 0x40 + [14]: 0xa6 + [15]: 0xda + [16]: 0x49 + [17]: 0x62 + [18]: 0xdd + [19]: 0x4a + +[167,412,337,764,099 cycles, 1,566,849,468,352,349,996 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f07:d901:4000 + memsz: 2,221,184 + path: /lib/x86_64-linux-gnu/libpthread-2.27.so + is_pic: 1 + has_build_id: 1 + has_debug_link: 1 + +[167,412,337,764,285 cycles, 1,566,849,468,352,350,182 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f07:d901:4000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x28 + [1]: 0xc6 + [2]: 0xaa + [3]: 0xde + [4]: 0x70 + [5]: 0xb2 + [6]: 0xd4 + [7]: 0xd + [8]: 0x1f + [9]: 0xf + [10]: 0x3d + [11]: 0xa + [12]: 0x1a + [13]: 0xc + [14]: 0xad + [15]: 0x1a + [16]: 0xb8 + [17]: 0x16 + [18]: 0x44 + [19]: 0x8f + +[167,412,337,764,488 cycles, 1,566,849,468,352,350,385 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:debug_link` (Class ID 3): + Payload: + baddr: 0x7f07:d901:4000 + crc: 139,223,921 + filename: c6aade70b2d40d1f0f3d0a1a0cad1ab816448f.debug + +[167,412,337,764,760 cycles, 1,566,849,468,352,350,657 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f07:d8a0:7000 + memsz: 2,208,552 + path: /home/smarchi/src/lttng-envs/2.11/src/lttng-ust/liblttng-ust/.libs/liblttng-ust-tracepoint.so.0.0.0 + is_pic: 1 + has_build_id: 1 + has_debug_link: 0 + +[167,412,337,764,970 cycles, 1,566,849,468,352,350,867 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f07:d8a0:7000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0xce + [1]: 0xed + [2]: 0x76 + [3]: 0xd2 + [4]: 0xa3 + [5]: 0x4a + [6]: 0x98 + [7]: 0x44 + [8]: 0x4c + [9]: 0xe6 + [10]: 0x73 + [11]: 0x91 + [12]: 0xa4 + [13]: 0x44 + [14]: 0x63 + [15]: 0x8c + [16]: 0x20 + [17]: 0xbe + [18]: 0xb3 + [19]: 0xd0 + +[167,412,337,765,127 cycles, 1,566,849,468,352,351,024 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f07:d96b:c000 + memsz: 2,265,456 + path: /lib/x86_64-linux-gnu/ld-2.27.so + is_pic: 1 + has_build_id: 1 + has_debug_link: 1 + +[167,412,337,765,304 cycles, 1,566,849,468,352,351,201 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f07:d96b:c000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x64 + [1]: 0xdf + [2]: 0x1b + [3]: 0x96 + [4]: 0x12 + [5]: 0x28 + [6]: 0x38 + [7]: 0x2f + [8]: 0xe1 + [9]: 0x86 + [10]: 0x84 + [11]: 0x24 + [12]: 0x9e + [13]: 0xd8 + [14]: 0x0 + [15]: 0xab + [16]: 0x1d + [17]: 0xce + [18]: 0xaa + [19]: 0xd4 + +[167,412,337,765,451 cycles, 1,566,849,468,352,351,348 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:debug_link` (Class ID 3): + Payload: + baddr: 0x7f07:d96b:c000 + crc: 692,261,002 + filename: ld-2.27.so + +[167,412,337,767,712 cycles, 1,566,849,468,352,353,609 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:end` (Class ID 4): + Payload: Empty + +[167,412,338,731,781 cycles, 1,566,849,468,353,317,678 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 0 + intfield2: 0x0 + longfield: 0 + netintfield: 0 + netintfieldhex: 0x0 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,412,340,873,786 cycles, 1,566,849,468,355,459,682 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Packet beginning: + Context: + cpu_id: 0 + +[167,412,343,665,818 cycles, 1,566,849,468,358,251,714 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Packet beginning: + Context: + cpu_id: 1 + +[167,412,346,370,104 cycles, 1,566,849,468,360,956,000 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Packet beginning: + Context: + cpu_id: 2 + +[167,412,348,872,634 cycles, 1,566,849,468,363,458,530 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 3} +Packet beginning: + Context: + cpu_id: 3 + +[167,412,356,703,042 cycles, 1,566,849,468,371,288,938 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:start` (Class ID 0): + Payload: Empty + +[167,412,359,902,153 cycles, 1,566,849,468,374,488,049 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f6e:3c3f:e000 + memsz: 2,639,880 + path: /home/smarchi/src/lttng-envs/2.11/src/lttng-ust/liblttng-ust/.libs/liblttng-ust.so.0.0.0 + is_pic: 1 + has_build_id: 1 + has_debug_link: 0 + +[167,412,359,913,208 cycles, 1,566,849,468,374,499,104 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f6e:3c3f:e000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0xce + [1]: 0x28 + [2]: 0xd3 + [3]: 0x86 + [4]: 0xe2 + [5]: 0x7a + [6]: 0xae + [7]: 0x5f + [8]: 0xd2 + [9]: 0x80 + [10]: 0xa2 + [11]: 0xd6 + [12]: 0xf6 + [13]: 0x40 + [14]: 0xa6 + [15]: 0xda + [16]: 0x49 + [17]: 0x62 + [18]: 0xdd + [19]: 0x4a + +[167,412,359,921,087 cycles, 1,566,849,468,374,506,983 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f6e:3b5c:1000 + memsz: 2,113,800 + path: /home/smarchi/src/lttng-envs/2.11/usr/lib/liburcu-common.so.6.1.0 + is_pic: 1 + has_build_id: 1 + has_debug_link: 0 + +[167,412,359,921,408 cycles, 1,566,849,468,374,507,304 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f6e:3b5c:1000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0xf1 + [1]: 0xbb + [2]: 0xf + [3]: 0xd5 + [4]: 0x97 + [5]: 0xcf + [6]: 0x50 + [7]: 0xce + [8]: 0xe0 + [9]: 0xf7 + [10]: 0xa2 + [11]: 0x72 + [12]: 0x2b + [13]: 0x83 + [14]: 0x9f + [15]: 0x2f + [16]: 0x13 + [17]: 0x1c + [18]: 0x47 + [19]: 0xc6 + +[167,412,359,921,843 cycles, 1,566,849,468,374,507,739 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f6e:3c68:3000 + memsz: 2,265,456 + path: /lib/x86_64-linux-gnu/ld-2.27.so + is_pic: 1 + has_build_id: 1 + has_debug_link: 1 + +[167,412,359,922,112 cycles, 1,566,849,468,374,508,008 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f6e:3c68:3000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x64 + [1]: 0xdf + [2]: 0x1b + [3]: 0x96 + [4]: 0x12 + [5]: 0x28 + [6]: 0x38 + [7]: 0x2f + [8]: 0xe1 + [9]: 0x86 + [10]: 0x84 + [11]: 0x24 + [12]: 0x9e + [13]: 0xd8 + [14]: 0x0 + [15]: 0xab + [16]: 0x1d + [17]: 0xce + [18]: 0xaa + [19]: 0xd4 + +[167,412,359,924,896 cycles, 1,566,849,468,374,510,792 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:debug_link` (Class ID 3): + Payload: + baddr: 0x7f6e:3c68:3000 + crc: 692,261,002 + filename: ld-2.27.so + +[167,412,359,925,490 cycles, 1,566,849,468,374,511,386 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7ffd:0b16:9000 + memsz: 0 + path: [linux-vdso.so.1] + is_pic: 0 + has_build_id: 0 + has_debug_link: 0 + +[167,412,359,926,017 cycles, 1,566,849,468,374,511,913 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f6e:3bfd:b000 + memsz: 2,221,184 + path: /lib/x86_64-linux-gnu/libpthread-2.27.so + is_pic: 1 + has_build_id: 1 + has_debug_link: 1 + +[167,412,359,926,695 cycles, 1,566,849,468,374,512,591 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f6e:3bfd:b000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x28 + [1]: 0xc6 + [2]: 0xaa + [3]: 0xde + [4]: 0x70 + [5]: 0xb2 + [6]: 0xd4 + [7]: 0xd + [8]: 0x1f + [9]: 0xf + [10]: 0x3d + [11]: 0xa + [12]: 0x1a + [13]: 0xc + [14]: 0xad + [15]: 0x1a + [16]: 0xb8 + [17]: 0x16 + [18]: 0x44 + [19]: 0x8f + +[167,412,359,926,956 cycles, 1,566,849,468,374,512,852 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:debug_link` (Class ID 3): + Payload: + baddr: 0x7f6e:3bfd:b000 + crc: 139,223,921 + filename: c6aade70b2d40d1f0f3d0a1a0cad1ab816448f.debug + +[167,412,359,927,270 cycles, 1,566,849,468,374,513,166 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f6e:3bbe:a000 + memsz: 4,131,552 + path: /lib/x86_64-linux-gnu/libc-2.27.so + is_pic: 1 + has_build_id: 1 + has_debug_link: 1 + +[167,412,359,927,553 cycles, 1,566,849,468,374,513,449 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f6e:3bbe:a000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0xb4 + [1]: 0x17 + [2]: 0xc0 + [3]: 0xba + [4]: 0x7c + [5]: 0xc5 + [6]: 0xcf + [7]: 0x6 + [8]: 0xd1 + [9]: 0xd1 + [10]: 0xbe + [11]: 0xd6 + [12]: 0x65 + [13]: 0x2c + [14]: 0xed + [15]: 0xb9 + [16]: 0x25 + [17]: 0x3c + [18]: 0x60 + [19]: 0xd0 + +[167,412,359,927,772 cycles, 1,566,849,468,374,513,668 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:debug_link` (Class ID 3): + Payload: + baddr: 0x7f6e:3bbe:a000 + crc: 70,041,672 + filename: libc-2.27.so + +[167,412,359,929,037 cycles, 1,566,849,468,374,514,933 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x5596:b671:b000 + memsz: 2,118,208 + path: /home/smarchi/src/lttng-envs/2.11/src/lttng-ust/tests/hello/.libs/hello + is_pic: 1 + has_build_id: 1 + has_debug_link: 0 + +[167,412,359,929,341 cycles, 1,566,849,468,374,515,237 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x5596:b671:b000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x7f + [1]: 0xe1 + [2]: 0xea + [3]: 0xd9 + [4]: 0x74 + [5]: 0xa4 + [6]: 0x49 + [7]: 0xe1 + [8]: 0x1d + [9]: 0xa5 + [10]: 0xcc + [11]: 0x71 + [12]: 0x4e + [13]: 0x5d + [14]: 0x57 + [15]: 0x9 + [16]: 0x1d + [17]: 0x4a + [18]: 0x7a + [19]: 0x28 + +[167,412,359,929,888 cycles, 1,566,849,468,374,515,784 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f6e:3b1a:d000 + memsz: 2,131,408 + path: /home/smarchi/src/lttng-envs/2.11/usr/lib/liburcu-bp.so.6.1.0 + is_pic: 1 + has_build_id: 1 + has_debug_link: 0 + +[167,412,359,930,191 cycles, 1,566,849,468,374,516,087 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f6e:3b1a:d000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x3e + [1]: 0x5a + [2]: 0x68 + [3]: 0x2c + [4]: 0x60 + [5]: 0x37 + [6]: 0xc9 + [7]: 0x15 + [8]: 0x4 + [9]: 0xd1 + [10]: 0x3e + [11]: 0xd8 + [12]: 0xb3 + [13]: 0x38 + [14]: 0xf1 + [15]: 0x70 + [16]: 0x1e + [17]: 0xef + [18]: 0xe3 + [19]: 0xa + +[167,412,359,930,990 cycles, 1,566,849,468,374,516,886 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f6e:3b9c:e000 + memsz: 2,208,552 + path: /home/smarchi/src/lttng-envs/2.11/src/lttng-ust/liblttng-ust/.libs/liblttng-ust-tracepoint.so.0.0.0 + is_pic: 1 + has_build_id: 1 + has_debug_link: 0 + +[167,412,359,931,305 cycles, 1,566,849,468,374,517,201 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f6e:3b9c:e000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0xce + [1]: 0xed + [2]: 0x76 + [3]: 0xd2 + [4]: 0xa3 + [5]: 0x4a + [6]: 0x98 + [7]: 0x44 + [8]: 0x4c + [9]: 0xe6 + [10]: 0x73 + [11]: 0x91 + [12]: 0xa4 + [13]: 0x44 + [14]: 0x63 + [15]: 0x8c + [16]: 0x20 + [17]: 0xbe + [18]: 0xb3 + [19]: 0xd0 + +[167,412,359,931,786 cycles, 1,566,849,468,374,517,682 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f6e:3b7c:6000 + memsz: 2,128,864 + path: /lib/x86_64-linux-gnu/librt-2.27.so + is_pic: 1 + has_build_id: 1 + has_debug_link: 1 + +[167,412,359,932,078 cycles, 1,566,849,468,374,517,974 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f6e:3b7c:6000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x98 + [1]: 0x26 + [2]: 0xfb + [3]: 0xdf + [4]: 0x57 + [5]: 0xed + [6]: 0x7d + [7]: 0x69 + [8]: 0x65 + [9]: 0x13 + [10]: 0x10 + [11]: 0x74 + [12]: 0xcb + [13]: 0x3c + [14]: 0x8 + [15]: 0xb1 + [16]: 0x0 + [17]: 0x9c + [18]: 0x1c + [19]: 0xd8 + +[167,412,359,932,954 cycles, 1,566,849,468,374,518,850 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:debug_link` (Class ID 3): + Payload: + baddr: 0x7f6e:3b7c:6000 + crc: 4,192,223,715 + filename: librt-2.27.so + +[167,412,359,933,308 cycles, 1,566,849,468,374,519,204 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f6e:3afa:3000 + memsz: 2,134,696 + path: /home/smarchi/src/lttng-envs/2.11/usr/lib/liburcu-cds.so.6.1.0 + is_pic: 1 + has_build_id: 1 + has_debug_link: 0 + +[167,412,359,933,602 cycles, 1,566,849,468,374,519,498 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f6e:3afa:3000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x46 + [1]: 0x2d + [2]: 0xd3 + [3]: 0xae + [4]: 0xe0 + [5]: 0xbe + [6]: 0x1a + [7]: 0x1e + [8]: 0x43 + [9]: 0xb9 + [10]: 0x71 + [11]: 0x70 + [12]: 0xa8 + [13]: 0x61 + [14]: 0x31 + [15]: 0xdf + [16]: 0xd9 + [17]: 0xed + [18]: 0xf5 + [19]: 0x7b + +[167,412,359,933,865 cycles, 1,566,849,468,374,519,761 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f6e:3b3b:6000 + memsz: 2,140,096 + path: /usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0 + is_pic: 1 + has_build_id: 1 + has_debug_link: 1 + +[167,412,359,934,153 cycles, 1,566,849,468,374,520,049 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f6e:3b3b:6000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x6d + [1]: 0x26 + [2]: 0xe8 + [3]: 0x99 + [4]: 0x6e + [5]: 0xda + [6]: 0x1d + [7]: 0xe2 + [8]: 0x16 + [9]: 0x13 + [10]: 0xae + [11]: 0x97 + [12]: 0xcc + [13]: 0xf1 + [14]: 0x22 + [15]: 0x16 + [16]: 0x7b + [17]: 0x2f + [18]: 0x4b + [19]: 0x6d + +[167,412,359,934,444 cycles, 1,566,849,468,374,520,340 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:debug_link` (Class ID 3): + Payload: + baddr: 0x7f6e:3b3b:6000 + crc: 2,803,861,771 + filename: 26e8996eda1de21613ae97ccf122167b2f4b6d.debug + +[167,412,359,934,774 cycles, 1,566,849,468,374,520,670 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:bin_info` (Class ID 1): + Payload: + baddr: 0x7f6e:3c1f:a000 + memsz: 2,109,712 + path: /lib/x86_64-linux-gnu/libdl-2.27.so + is_pic: 1 + has_build_id: 1 + has_debug_link: 1 + +[167,412,359,935,060 cycles, 1,566,849,468,374,520,956 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:build_id` (Class ID 2): + Payload: + baddr: 0x7f6e:3c1f:a000 + _build_id_length: 20 + build_id: Length 20: + [0]: 0x25 + [1]: 0xad + [2]: 0x56 + [3]: 0xe9 + [4]: 0x2 + [5]: 0xe2 + [6]: 0x3b + [7]: 0x49 + [8]: 0xa + [9]: 0x9c + [10]: 0xcd + [11]: 0xb0 + [12]: 0x8a + [13]: 0x97 + [14]: 0x44 + [15]: 0xd8 + [16]: 0x9c + [17]: 0xb9 + [18]: 0x5b + [19]: 0xcc + +[167,412,359,935,967 cycles, 1,566,849,468,374,521,863 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:debug_link` (Class ID 3): + Payload: + baddr: 0x7f6e:3c1f:a000 + crc: 3,523,071,177 + filename: libdl-2.27.so + +[167,412,359,947,188 cycles, 1,566,849,468,374,533,084 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `lttng_ust_statedump:end` (Class ID 4): + Payload: Empty + +[167,412,364,173,765 cycles, 1,566,849,468,378,759,661 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 0 + intfield2: 0x0 + longfield: 0 + netintfield: 0 + netintfieldhex: 0x0 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,412,438,806,597 cycles, 1,566,849,468,453,392,494 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 1 + intfield2: 0x1 + longfield: 1 + netintfield: 1 + netintfieldhex: 0x1 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,412,464,324,665 cycles, 1,566,849,468,478,910,561 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 1 + intfield2: 0x1 + longfield: 1 + netintfield: 1 + netintfieldhex: 0x1 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,412,538,990,043 cycles, 1,566,849,468,553,575,940 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 2 + intfield2: 0x2 + longfield: 2 + netintfield: 2 + netintfieldhex: 0x2 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,412,564,446,614 cycles, 1,566,849,468,579,032,510 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 2 + intfield2: 0x2 + longfield: 2 + netintfield: 2 + netintfieldhex: 0x2 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,412,639,101,177 cycles, 1,566,849,468,653,687,074 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 3 + intfield2: 0x3 + longfield: 3 + netintfield: 3 + netintfieldhex: 0x3 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,412,664,601,324 cycles, 1,566,849,468,679,187,220 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 3 + intfield2: 0x3 + longfield: 3 + netintfield: 3 + netintfieldhex: 0x3 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,412,739,252,201 cycles, 1,566,849,468,753,838,098 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 4 + intfield2: 0x4 + longfield: 4 + netintfield: 4 + netintfieldhex: 0x4 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,412,764,745,519 cycles, 1,566,849,468,779,331,415 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 4 + intfield2: 0x4 + longfield: 4 + netintfield: 4 + netintfieldhex: 0x4 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,412,839,439,113 cycles, 1,566,849,468,854,025,010 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 5 + intfield2: 0x5 + longfield: 5 + netintfield: 5 + netintfieldhex: 0x5 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,412,864,870,830 cycles, 1,566,849,468,879,456,726 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 5 + intfield2: 0x5 + longfield: 5 + netintfield: 5 + netintfieldhex: 0x5 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,412,939,542,519 cycles, 1,566,849,468,954,128,416 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 6 + intfield2: 0x6 + longfield: 6 + netintfield: 6 + netintfieldhex: 0x6 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,412,965,074,828 cycles, 1,566,849,468,979,660,724 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 6 + intfield2: 0x6 + longfield: 6 + netintfield: 6 + netintfieldhex: 0x6 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,039,699,050 cycles, 1,566,849,469,054,284,947 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 7 + intfield2: 0x7 + longfield: 7 + netintfield: 7 + netintfieldhex: 0x7 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,065,282,684 cycles, 1,566,849,469,079,868,580 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 7 + intfield2: 0x7 + longfield: 7 + netintfield: 7 + netintfieldhex: 0x7 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,139,865,420 cycles, 1,566,849,469,154,451,317 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 8 + intfield2: 0x8 + longfield: 8 + netintfield: 8 + netintfieldhex: 0x8 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,165,423,112 cycles, 1,566,849,469,180,009,008 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 8 + intfield2: 0x8 + longfield: 8 + netintfield: 8 + netintfieldhex: 0x8 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,240,035,827 cycles, 1,566,849,469,254,621,724 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 9 + intfield2: 0x9 + longfield: 9 + netintfield: 9 + netintfieldhex: 0x9 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,265,527,314 cycles, 1,566,849,469,280,113,210 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 9 + intfield2: 0x9 + longfield: 9 + netintfield: 9 + netintfieldhex: 0x9 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,340,172,825 cycles, 1,566,849,469,354,758,722 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 10 + intfield2: 0xa + longfield: 10 + netintfield: 10 + netintfieldhex: 0xa + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,365,649,283 cycles, 1,566,849,469,380,235,179 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 10 + intfield2: 0xa + longfield: 10 + netintfield: 10 + netintfieldhex: 0xa + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,440,317,431 cycles, 1,566,849,469,454,903,328 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 11 + intfield2: 0xb + longfield: 11 + netintfield: 11 + netintfieldhex: 0xb + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,465,775,201 cycles, 1,566,849,469,480,361,097 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 11 + intfield2: 0xb + longfield: 11 + netintfield: 11 + netintfieldhex: 0xb + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,540,422,601 cycles, 1,566,849,469,555,008,498 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 12 + intfield2: 0xc + longfield: 12 + netintfield: 12 + netintfieldhex: 0xc + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,565,890,710 cycles, 1,566,849,469,580,476,606 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 12 + intfield2: 0xc + longfield: 12 + netintfield: 12 + netintfieldhex: 0xc + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,640,603,318 cycles, 1,566,849,469,655,189,215 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 13 + intfield2: 0xd + longfield: 13 + netintfield: 13 + netintfieldhex: 0xd + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,666,030,820 cycles, 1,566,849,469,680,616,716 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 13 + intfield2: 0xd + longfield: 13 + netintfield: 13 + netintfieldhex: 0xd + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,740,784,017 cycles, 1,566,849,469,755,369,914 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 14 + intfield2: 0xe + longfield: 14 + netintfield: 14 + netintfieldhex: 0xe + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,766,198,857 cycles, 1,566,849,469,780,784,753 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 14 + intfield2: 0xe + longfield: 14 + netintfield: 14 + netintfieldhex: 0xe + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,840,976,847 cycles, 1,566,849,469,855,562,744 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 15 + intfield2: 0xf + longfield: 15 + netintfield: 15 + netintfieldhex: 0xf + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,866,345,252 cycles, 1,566,849,469,880,931,148 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 15 + intfield2: 0xf + longfield: 15 + netintfield: 15 + netintfieldhex: 0xf + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,941,101,369 cycles, 1,566,849,469,955,687,266 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 16 + intfield2: 0x10 + longfield: 16 + netintfield: 16 + netintfieldhex: 0x10 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,413,966,523,739 cycles, 1,566,849,469,981,109,635 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 16 + intfield2: 0x10 + longfield: 16 + netintfield: 16 + netintfieldhex: 0x10 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,041,360,050 cycles, 1,566,849,470,055,945,947 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 17 + intfield2: 0x11 + longfield: 17 + netintfield: 17 + netintfieldhex: 0x11 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,066,627,145 cycles, 1,566,849,470,081,213,041 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 17 + intfield2: 0x11 + longfield: 17 + netintfield: 17 + netintfieldhex: 0x11 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,141,452,554 cycles, 1,566,849,470,156,038,451 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 18 + intfield2: 0x12 + longfield: 18 + netintfield: 18 + netintfieldhex: 0x12 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,166,797,595 cycles, 1,566,849,470,181,383,491 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 18 + intfield2: 0x12 + longfield: 18 + netintfield: 18 + netintfieldhex: 0x12 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,241,558,488 cycles, 1,566,849,470,256,144,385 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 19 + intfield2: 0x13 + longfield: 19 + netintfield: 19 + netintfieldhex: 0x13 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,265,846,341 cycles, 1,566,849,470,280,432,238 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Packet end + +[167,414,265,876,080 cycles, 1,566,849,470,280,461,977 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Packet end + +[167,414,265,883,997 cycles, 1,566,849,470,280,469,894 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Packet end + +[167,414,265,904,639 cycles, 1,566,849,470,280,490,536 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Packet end + +[167,414,266,890,402 cycles, 1,566,849,470,281,476,298 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 19 + intfield2: 0x13 + longfield: 19 + netintfield: 19 + netintfieldhex: 0x13 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,341,670,774 cycles, 1,566,849,470,356,256,671 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Packet beginning: + Context: + cpu_id: 0 + +[167,414,341,670,774 cycles, 1,566,849,470,356,256,671 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 20 + intfield2: 0x14 + longfield: 20 + netintfield: 20 + netintfieldhex: 0x14 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,367,047,170 cycles, 1,566,849,470,381,633,066 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 20 + intfield2: 0x14 + longfield: 20 + netintfield: 20 + netintfieldhex: 0x14 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,441,748,525 cycles, 1,566,849,470,456,334,422 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 21 + intfield2: 0x15 + longfield: 21 + netintfield: 21 + netintfieldhex: 0x15 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,467,197,975 cycles, 1,566,849,470,481,783,871 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 21 + intfield2: 0x15 + longfield: 21 + netintfield: 21 + netintfieldhex: 0x15 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,471,169,560 cycles, 1,566,849,470,485,755,456 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Packet end + +[167,414,471,213,171 cycles, 1,566,849,470,485,799,067 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Packet end + +[167,414,471,234,740 cycles, 1,566,849,470,485,820,636 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Packet end + +[167,414,471,251,183 cycles, 1,566,849,470,485,837,079 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 3} +Packet end + +[167,414,541,824,909 cycles, 1,566,849,470,556,410,806 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 22 + intfield2: 0x16 + longfield: 22 + netintfield: 22 + netintfieldhex: 0x16 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,567,329,147 cycles, 1,566,849,470,581,915,043 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Packet beginning: + Context: + cpu_id: 0 + +[167,414,567,329,147 cycles, 1,566,849,470,581,915,043 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 22 + intfield2: 0x16 + longfield: 22 + netintfield: 22 + netintfieldhex: 0x16 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,641,912,256 cycles, 1,566,849,470,656,498,153 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 23 + intfield2: 0x17 + longfield: 23 + netintfield: 23 + netintfieldhex: 0x17 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,667,470,510 cycles, 1,566,849,470,682,056,406 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 23 + intfield2: 0x17 + longfield: 23 + netintfield: 23 + netintfieldhex: 0x17 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,741,991,762 cycles, 1,566,849,470,756,577,659 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 24 + intfield2: 0x18 + longfield: 24 + netintfield: 24 + netintfieldhex: 0x18 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,767,593,403 cycles, 1,566,849,470,782,179,299 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 24 + intfield2: 0x18 + longfield: 24 + netintfield: 24 + netintfieldhex: 0x18 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,842,096,816 cycles, 1,566,849,470,856,682,713 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Packet beginning: + Context: + cpu_id: 1 + +[167,414,842,096,816 cycles, 1,566,849,470,856,682,713 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 25 + intfield2: 0x19 + longfield: 25 + netintfield: 25 + netintfieldhex: 0x19 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,867,705,839 cycles, 1,566,849,470,882,291,735 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 25 + intfield2: 0x19 + longfield: 25 + netintfield: 25 + netintfieldhex: 0x19 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,942,191,789 cycles, 1,566,849,470,956,777,686 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 26 + intfield2: 0x1a + longfield: 26 + netintfield: 26 + netintfieldhex: 0x1a + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,414,967,794,997 cycles, 1,566,849,470,982,380,893 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 26 + intfield2: 0x1a + longfield: 26 + netintfield: 26 + netintfieldhex: 0x1a + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,042,298,094 cycles, 1,566,849,471,056,883,991 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 27 + intfield2: 0x1b + longfield: 27 + netintfield: 27 + netintfieldhex: 0x1b + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,067,880,382 cycles, 1,566,849,471,082,466,278 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 27 + intfield2: 0x1b + longfield: 27 + netintfield: 27 + netintfieldhex: 0x1b + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,142,408,931 cycles, 1,566,849,471,156,994,828 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 28 + intfield2: 0x1c + longfield: 28 + netintfield: 28 + netintfieldhex: 0x1c + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,167,982,944 cycles, 1,566,849,471,182,568,840 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 28 + intfield2: 0x1c + longfield: 28 + netintfield: 28 + netintfieldhex: 0x1c + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,242,533,800 cycles, 1,566,849,471,257,119,697 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 29 + intfield2: 0x1d + longfield: 29 + netintfield: 29 + netintfieldhex: 0x1d + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,268,194,474 cycles, 1,566,849,471,282,780,370 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 29 + intfield2: 0x1d + longfield: 29 + netintfield: 29 + netintfieldhex: 0x1d + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,342,654,999 cycles, 1,566,849,471,357,240,896 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 30 + intfield2: 0x1e + longfield: 30 + netintfield: 30 + netintfieldhex: 0x1e + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,368,384,809 cycles, 1,566,849,471,382,970,705 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 30 + intfield2: 0x1e + longfield: 30 + netintfield: 30 + netintfieldhex: 0x1e + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,442,742,456 cycles, 1,566,849,471,457,328,353 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 31 + intfield2: 0x1f + longfield: 31 + netintfield: 31 + netintfieldhex: 0x1f + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,468,576,886 cycles, 1,566,849,471,483,162,782 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 31 + intfield2: 0x1f + longfield: 31 + netintfield: 31 + netintfieldhex: 0x1f + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,542,851,012 cycles, 1,566,849,471,557,436,909 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 32 + intfield2: 0x20 + longfield: 32 + netintfield: 32 + netintfieldhex: 0x20 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,568,769,337 cycles, 1,566,849,471,583,355,233 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 32 + intfield2: 0x20 + longfield: 32 + netintfield: 32 + netintfieldhex: 0x20 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,642,976,169 cycles, 1,566,849,471,657,562,066 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 33 + intfield2: 0x21 + longfield: 33 + netintfield: 33 + netintfieldhex: 0x21 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,668,910,004 cycles, 1,566,849,471,683,495,900 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 33 + intfield2: 0x21 + longfield: 33 + netintfield: 33 + netintfieldhex: 0x21 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,743,110,190 cycles, 1,566,849,471,757,696,087 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 34 + intfield2: 0x22 + longfield: 34 + netintfield: 34 + netintfieldhex: 0x22 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,769,036,487 cycles, 1,566,849,471,783,622,383 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 34 + intfield2: 0x22 + longfield: 34 + netintfield: 34 + netintfieldhex: 0x22 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,843,303,668 cycles, 1,566,849,471,857,889,565 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 35 + intfield2: 0x23 + longfield: 35 + netintfield: 35 + netintfieldhex: 0x23 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,869,149,775 cycles, 1,566,849,471,883,735,671 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Packet beginning: + Context: + cpu_id: 2 + +[167,415,869,149,775 cycles, 1,566,849,471,883,735,671 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 35 + intfield2: 0x23 + longfield: 35 + netintfield: 35 + netintfieldhex: 0x23 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,943,417,572 cycles, 1,566,849,471,958,003,469 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 36 + intfield2: 0x24 + longfield: 36 + netintfield: 36 + netintfieldhex: 0x24 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,415,969,377,924 cycles, 1,566,849,471,983,963,820 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 36 + intfield2: 0x24 + longfield: 36 + netintfield: 36 + netintfieldhex: 0x24 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,043,508,324 cycles, 1,566,849,472,058,094,221 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 37 + intfield2: 0x25 + longfield: 37 + netintfield: 37 + netintfieldhex: 0x25 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,069,469,254 cycles, 1,566,849,472,084,055,150 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 37 + intfield2: 0x25 + longfield: 37 + netintfield: 37 + netintfieldhex: 0x25 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,143,626,111 cycles, 1,566,849,472,158,212,008 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 38 + intfield2: 0x26 + longfield: 38 + netintfield: 38 + netintfieldhex: 0x26 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,169,560,344 cycles, 1,566,849,472,184,146,240 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 38 + intfield2: 0x26 + longfield: 38 + netintfield: 38 + netintfieldhex: 0x26 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,243,728,665 cycles, 1,566,849,472,258,314,562 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 39 + intfield2: 0x27 + longfield: 39 + netintfield: 39 + netintfieldhex: 0x27 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,269,676,519 cycles, 1,566,849,472,284,262,415 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 39 + intfield2: 0x27 + longfield: 39 + netintfield: 39 + netintfieldhex: 0x27 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,343,862,923 cycles, 1,566,849,472,358,448,820 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Packet beginning: + Context: + cpu_id: 3 + +[167,416,343,862,923 cycles, 1,566,849,472,358,448,820 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 40 + intfield2: 0x28 + longfield: 40 + netintfield: 40 + netintfieldhex: 0x28 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,369,780,630 cycles, 1,566,849,472,384,366,526 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 40 + intfield2: 0x28 + longfield: 40 + netintfield: 40 + netintfieldhex: 0x28 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,443,968,332 cycles, 1,566,849,472,458,554,229 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 41 + intfield2: 0x29 + longfield: 41 + netintfield: 41 + netintfieldhex: 0x29 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,469,893,990 cycles, 1,566,849,472,484,479,886 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 41 + intfield2: 0x29 + longfield: 41 + netintfield: 41 + netintfieldhex: 0x29 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,544,122,396 cycles, 1,566,849,472,558,708,293 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 42 + intfield2: 0x2a + longfield: 42 + netintfield: 42 + netintfieldhex: 0x2a + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,570,021,383 cycles, 1,566,849,472,584,607,279 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 42 + intfield2: 0x2a + longfield: 42 + netintfield: 42 + netintfieldhex: 0x2a + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,644,285,222 cycles, 1,566,849,472,658,871,119 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 43 + intfield2: 0x2b + longfield: 43 + netintfield: 43 + netintfieldhex: 0x2b + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,670,132,103 cycles, 1,566,849,472,684,717,999 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 43 + intfield2: 0x2b + longfield: 43 + netintfield: 43 + netintfieldhex: 0x2b + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,744,398,765 cycles, 1,566,849,472,758,984,662 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 44 + intfield2: 0x2c + longfield: 44 + netintfield: 44 + netintfieldhex: 0x2c + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,770,257,125 cycles, 1,566,849,472,784,843,021 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 44 + intfield2: 0x2c + longfield: 44 + netintfield: 44 + netintfieldhex: 0x2c + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,844,486,329 cycles, 1,566,849,472,859,072,226 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 45 + intfield2: 0x2d + longfield: 45 + netintfield: 45 + netintfieldhex: 0x2d + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,870,402,982 cycles, 1,566,849,472,884,988,878 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 45 + intfield2: 0x2d + longfield: 45 + netintfield: 45 + netintfieldhex: 0x2d + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,944,621,383 cycles, 1,566,849,472,959,207,280 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 46 + intfield2: 0x2e + longfield: 46 + netintfield: 46 + netintfieldhex: 0x2e + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,416,970,521,790 cycles, 1,566,849,472,985,107,686 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 46 + intfield2: 0x2e + longfield: 46 + netintfield: 46 + netintfieldhex: 0x2e + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,044,797,630 cycles, 1,566,849,473,059,383,527 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 47 + intfield2: 0x2f + longfield: 47 + netintfield: 47 + netintfieldhex: 0x2f + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,070,597,819 cycles, 1,566,849,473,085,183,715 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 47 + intfield2: 0x2f + longfield: 47 + netintfield: 47 + netintfieldhex: 0x2f + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,144,973,149 cycles, 1,566,849,473,159,559,046 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 48 + intfield2: 0x30 + longfield: 48 + netintfield: 48 + netintfieldhex: 0x30 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,170,693,041 cycles, 1,566,849,473,185,278,937 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 48 + intfield2: 0x30 + longfield: 48 + netintfield: 48 + netintfieldhex: 0x30 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,245,164,205 cycles, 1,566,849,473,259,750,102 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 49 + intfield2: 0x31 + longfield: 49 + netintfield: 49 + netintfieldhex: 0x31 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,270,793,139 cycles, 1,566,849,473,285,379,035 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 49 + intfield2: 0x31 + longfield: 49 + netintfield: 49 + netintfieldhex: 0x31 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,287,191,816 cycles, 1,566,849,473,301,777,713 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Packet end + +[167,417,287,213,680 cycles, 1,566,849,473,301,799,577 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Packet end + +[167,417,287,223,788 cycles, 1,566,849,473,301,809,685 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Packet end + +[167,417,288,748,561 cycles, 1,566,849,473,303,334,457 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Packet end + +[167,417,288,763,489 cycles, 1,566,849,473,303,349,385 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Packet end + +[167,417,345,290,377 cycles, 1,566,849,473,359,876,274 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Packet beginning: + Context: + cpu_id: 3 + +[167,417,345,290,377 cycles, 1,566,849,473,359,876,274 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 50 + intfield2: 0x32 + longfield: 50 + netintfield: 50 + netintfieldhex: 0x32 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,370,914,861 cycles, 1,566,849,473,385,500,757 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Packet beginning: + Context: + cpu_id: 2 + +[167,417,370,914,861 cycles, 1,566,849,473,385,500,757 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 50 + intfield2: 0x32 + longfield: 50 + netintfield: 50 + netintfieldhex: 0x32 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,445,474,524 cycles, 1,566,849,473,460,060,421 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 51 + intfield2: 0x33 + longfield: 51 + netintfield: 51 + netintfieldhex: 0x33 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,471,038,544 cycles, 1,566,849,473,485,624,440 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 51 + intfield2: 0x33 + longfield: 51 + netintfield: 51 + netintfieldhex: 0x33 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,545,577,974 cycles, 1,566,849,473,560,163,871 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 52 + intfield2: 0x34 + longfield: 52 + netintfield: 52 + netintfieldhex: 0x34 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,571,138,706 cycles, 1,566,849,473,585,724,602 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 52 + intfield2: 0x34 + longfield: 52 + netintfield: 52 + netintfieldhex: 0x34 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,645,702,758 cycles, 1,566,849,473,660,288,655 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 53 + intfield2: 0x35 + longfield: 53 + netintfield: 53 + netintfieldhex: 0x35 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,671,239,161 cycles, 1,566,849,473,685,825,057 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 53 + intfield2: 0x35 + longfield: 53 + netintfield: 53 + netintfieldhex: 0x35 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,745,825,051 cycles, 1,566,849,473,760,410,948 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 54 + intfield2: 0x36 + longfield: 54 + netintfield: 54 + netintfieldhex: 0x36 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,771,343,135 cycles, 1,566,849,473,785,929,031 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 54 + intfield2: 0x36 + longfield: 54 + netintfield: 54 + netintfieldhex: 0x36 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,845,931,912 cycles, 1,566,849,473,860,517,809 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 55 + intfield2: 0x37 + longfield: 55 + netintfield: 55 + netintfieldhex: 0x37 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,871,433,935 cycles, 1,566,849,473,886,019,831 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 55 + intfield2: 0x37 + longfield: 55 + netintfield: 55 + netintfieldhex: 0x37 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,946,071,340 cycles, 1,566,849,473,960,657,237 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 56 + intfield2: 0x38 + longfield: 56 + netintfield: 56 + netintfieldhex: 0x38 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,417,971,533,771 cycles, 1,566,849,473,986,119,667 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 56 + intfield2: 0x38 + longfield: 56 + netintfield: 56 + netintfieldhex: 0x38 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,046,213,257 cycles, 1,566,849,474,060,799,154 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 57 + intfield2: 0x39 + longfield: 57 + netintfield: 57 + netintfieldhex: 0x39 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,071,630,873 cycles, 1,566,849,474,086,216,769 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 57 + intfield2: 0x39 + longfield: 57 + netintfield: 57 + netintfieldhex: 0x39 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,146,309,893 cycles, 1,566,849,474,160,895,790 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 58 + intfield2: 0x3a + longfield: 58 + netintfield: 58 + netintfieldhex: 0x3a + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,171,765,034 cycles, 1,566,849,474,186,350,930 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 58 + intfield2: 0x3a + longfield: 58 + netintfield: 58 + netintfieldhex: 0x3a + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,246,422,364 cycles, 1,566,849,474,261,008,261 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 59 + intfield2: 0x3b + longfield: 59 + netintfield: 59 + netintfieldhex: 0x3b + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,271,905,284 cycles, 1,566,849,474,286,491,180 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Packet beginning: + Context: + cpu_id: 1 + +[167,418,271,905,284 cycles, 1,566,849,474,286,491,180 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 59 + intfield2: 0x3b + longfield: 59 + netintfield: 59 + netintfieldhex: 0x3b + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,346,522,016 cycles, 1,566,849,474,361,107,913 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 60 + intfield2: 0x3c + longfield: 60 + netintfield: 60 + netintfieldhex: 0x3c + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,372,011,214 cycles, 1,566,849,474,386,597,110 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 60 + intfield2: 0x3c + longfield: 60 + netintfield: 60 + netintfieldhex: 0x3c + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,446,699,068 cycles, 1,566,849,474,461,284,965 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 61 + intfield2: 0x3d + longfield: 61 + netintfield: 61 + netintfieldhex: 0x3d + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,472,099,509 cycles, 1,566,849,474,486,685,405 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 61 + intfield2: 0x3d + longfield: 61 + netintfield: 61 + netintfieldhex: 0x3d + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,546,803,357 cycles, 1,566,849,474,561,389,254 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 62 + intfield2: 0x3e + longfield: 62 + netintfield: 62 + netintfieldhex: 0x3e + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,572,227,554 cycles, 1,566,849,474,586,813,450 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 62 + intfield2: 0x3e + longfield: 62 + netintfield: 62 + netintfieldhex: 0x3e + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,646,952,059 cycles, 1,566,849,474,661,537,956 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 63 + intfield2: 0x3f + longfield: 63 + netintfield: 63 + netintfieldhex: 0x3f + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,672,336,156 cycles, 1,566,849,474,686,922,052 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 63 + intfield2: 0x3f + longfield: 63 + netintfield: 63 + netintfieldhex: 0x3f + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,747,151,281 cycles, 1,566,849,474,761,737,178 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 64 + intfield2: 0x40 + longfield: 64 + netintfield: 64 + netintfieldhex: 0x40 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,772,484,603 cycles, 1,566,849,474,787,070,499 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 64 + intfield2: 0x40 + longfield: 64 + netintfield: 64 + netintfieldhex: 0x40 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,847,262,303 cycles, 1,566,849,474,861,848,200 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 65 + intfield2: 0x41 + longfield: 65 + netintfield: 65 + netintfieldhex: 0x41 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,872,670,129 cycles, 1,566,849,474,887,256,025 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 65 + intfield2: 0x41 + longfield: 65 + netintfield: 65 + netintfieldhex: 0x41 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,947,412,622 cycles, 1,566,849,474,961,998,519 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 66 + intfield2: 0x42 + longfield: 66 + netintfield: 66 + netintfieldhex: 0x42 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,418,972,780,798 cycles, 1,566,849,474,987,366,694 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 66 + intfield2: 0x42 + longfield: 66 + netintfield: 66 + netintfieldhex: 0x42 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,047,572,892 cycles, 1,566,849,475,062,158,789 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 67 + intfield2: 0x43 + longfield: 67 + netintfield: 67 + netintfieldhex: 0x43 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,072,936,053 cycles, 1,566,849,475,087,521,949 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 67 + intfield2: 0x43 + longfield: 67 + netintfield: 67 + netintfieldhex: 0x43 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,147,740,536 cycles, 1,566,849,475,162,326,433 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 68 + intfield2: 0x44 + longfield: 68 + netintfield: 68 + netintfieldhex: 0x44 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,173,079,029 cycles, 1,566,849,475,187,664,925 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 68 + intfield2: 0x44 + longfield: 68 + netintfield: 68 + netintfieldhex: 0x44 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,247,942,383 cycles, 1,566,849,475,262,528,280 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 69 + intfield2: 0x45 + longfield: 69 + netintfield: 69 + netintfieldhex: 0x45 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,273,173,972 cycles, 1,566,849,475,287,759,868 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Packet beginning: + Context: + cpu_id: 0 + +[167,419,273,173,972 cycles, 1,566,849,475,287,759,868 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 69 + intfield2: 0x45 + longfield: 69 + netintfield: 69 + netintfieldhex: 0x45 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,348,119,599 cycles, 1,566,849,475,362,705,496 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 70 + intfield2: 0x46 + longfield: 70 + netintfield: 70 + netintfieldhex: 0x46 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,373,378,351 cycles, 1,566,849,475,387,964,247 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 70 + intfield2: 0x46 + longfield: 70 + netintfield: 70 + netintfieldhex: 0x46 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,448,211,907 cycles, 1,566,849,475,462,797,804 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 71 + intfield2: 0x47 + longfield: 71 + netintfield: 71 + netintfieldhex: 0x47 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,473,470,400 cycles, 1,566,849,475,488,056,296 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 71 + intfield2: 0x47 + longfield: 71 + netintfield: 71 + netintfieldhex: 0x47 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,548,392,365 cycles, 1,566,849,475,562,978,262 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 72 + intfield2: 0x48 + longfield: 72 + netintfield: 72 + netintfieldhex: 0x48 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,573,568,908 cycles, 1,566,849,475,588,154,804 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 72 + intfield2: 0x48 + longfield: 72 + netintfield: 72 + netintfieldhex: 0x48 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,648,492,865 cycles, 1,566,849,475,663,078,762 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 73 + intfield2: 0x49 + longfield: 73 + netintfield: 73 + netintfieldhex: 0x49 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,673,693,938 cycles, 1,566,849,475,688,279,834 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 73 + intfield2: 0x49 + longfield: 73 + netintfield: 73 + netintfieldhex: 0x49 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,748,686,863 cycles, 1,566,849,475,763,272,760 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 74 + intfield2: 0x4a + longfield: 74 + netintfield: 74 + netintfieldhex: 0x4a + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,773,791,454 cycles, 1,566,849,475,788,377,350 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 74 + intfield2: 0x4a + longfield: 74 + netintfield: 74 + netintfieldhex: 0x4a + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,848,814,573 cycles, 1,566,849,475,863,400,470 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Packet beginning: + Context: + cpu_id: 1 + +[167,419,848,814,573 cycles, 1,566,849,475,863,400,470 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 75 + intfield2: 0x4b + longfield: 75 + netintfield: 75 + netintfieldhex: 0x4b + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,873,880,661 cycles, 1,566,849,475,888,466,557 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 75 + intfield2: 0x4b + longfield: 75 + netintfield: 75 + netintfieldhex: 0x4b + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,948,904,193 cycles, 1,566,849,475,963,490,090 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 76 + intfield2: 0x4c + longfield: 76 + netintfield: 76 + netintfieldhex: 0x4c + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,419,973,993,054 cycles, 1,566,849,475,988,578,950 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 76 + intfield2: 0x4c + longfield: 76 + netintfield: 76 + netintfieldhex: 0x4c + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,049,068,175 cycles, 1,566,849,476,063,654,072 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 77 + intfield2: 0x4d + longfield: 77 + netintfield: 77 + netintfieldhex: 0x4d + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,074,113,177 cycles, 1,566,849,476,088,699,073 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 77 + intfield2: 0x4d + longfield: 77 + netintfield: 77 + netintfieldhex: 0x4d + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,149,294,456 cycles, 1,566,849,476,163,880,353 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 78 + intfield2: 0x4e + longfield: 78 + netintfield: 78 + netintfieldhex: 0x4e + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,174,207,560 cycles, 1,566,849,476,188,793,456 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 78 + intfield2: 0x4e + longfield: 78 + netintfield: 78 + netintfieldhex: 0x4e + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,249,460,623 cycles, 1,566,849,476,264,046,520 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Packet beginning: + Context: + cpu_id: 2 + +[167,420,249,460,623 cycles, 1,566,849,476,264,046,520 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 79 + intfield2: 0x4f + longfield: 79 + netintfield: 79 + netintfieldhex: 0x4f + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,274,326,633 cycles, 1,566,849,476,288,912,529 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 79 + intfield2: 0x4f + longfield: 79 + netintfield: 79 + netintfieldhex: 0x4f + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,349,578,300 cycles, 1,566,849,476,364,164,197 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 80 + intfield2: 0x50 + longfield: 80 + netintfield: 80 + netintfieldhex: 0x50 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,374,475,062 cycles, 1,566,849,476,389,060,958 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 80 + intfield2: 0x50 + longfield: 80 + netintfield: 80 + netintfieldhex: 0x50 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,449,678,511 cycles, 1,566,849,476,464,264,408 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 81 + intfield2: 0x51 + longfield: 81 + netintfield: 81 + netintfieldhex: 0x51 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,474,621,747 cycles, 1,566,849,476,489,207,643 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 81 + intfield2: 0x51 + longfield: 81 + netintfield: 81 + netintfieldhex: 0x51 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,549,789,411 cycles, 1,566,849,476,564,375,308 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 82 + intfield2: 0x52 + longfield: 82 + netintfield: 82 + netintfieldhex: 0x52 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,574,787,069 cycles, 1,566,849,476,589,372,965 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 82 + intfield2: 0x52 + longfield: 82 + netintfield: 82 + netintfieldhex: 0x52 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,649,931,163 cycles, 1,566,849,476,664,517,060 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Packet beginning: + Context: + cpu_id: 0 + +[167,420,649,931,163 cycles, 1,566,849,476,664,517,060 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 83 + intfield2: 0x53 + longfield: 83 + netintfield: 83 + netintfieldhex: 0x53 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,674,920,769 cycles, 1,566,849,476,689,506,665 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 83 + intfield2: 0x53 + longfield: 83 + netintfield: 83 + netintfieldhex: 0x53 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,750,032,635 cycles, 1,566,849,476,764,618,532 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 84 + intfield2: 0x54 + longfield: 84 + netintfield: 84 + netintfieldhex: 0x54 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,775,065,869 cycles, 1,566,849,476,789,651,765 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 84 + intfield2: 0x54 + longfield: 84 + netintfield: 84 + netintfieldhex: 0x54 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,850,139,465 cycles, 1,566,849,476,864,725,362 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 85 + intfield2: 0x55 + longfield: 85 + netintfield: 85 + netintfieldhex: 0x55 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,875,157,041 cycles, 1,566,849,476,889,742,937 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 85 + intfield2: 0x55 + longfield: 85 + netintfield: 85 + netintfieldhex: 0x55 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,950,250,074 cycles, 1,566,849,476,964,835,971 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 86 + intfield2: 0x56 + longfield: 86 + netintfield: 86 + netintfieldhex: 0x56 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,420,975,257,634 cycles, 1,566,849,476,989,843,530 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 86 + intfield2: 0x56 + longfield: 86 + netintfield: 86 + netintfieldhex: 0x56 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,050,372,785 cycles, 1,566,849,477,064,958,682 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 87 + intfield2: 0x57 + longfield: 87 + netintfield: 87 + netintfieldhex: 0x57 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,075,364,736 cycles, 1,566,849,477,089,950,632 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 87 + intfield2: 0x57 + longfield: 87 + netintfield: 87 + netintfieldhex: 0x57 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,150,456,533 cycles, 1,566,849,477,165,042,430 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 88 + intfield2: 0x58 + longfield: 88 + netintfield: 88 + netintfieldhex: 0x58 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,175,508,945 cycles, 1,566,849,477,190,094,841 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 88 + intfield2: 0x58 + longfield: 88 + netintfield: 88 + netintfieldhex: 0x58 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,250,587,960 cycles, 1,566,849,477,265,173,857 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 89 + intfield2: 0x59 + longfield: 89 + netintfield: 89 + netintfieldhex: 0x59 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,275,609,929 cycles, 1,566,849,477,290,195,825 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 89 + intfield2: 0x59 + longfield: 89 + netintfield: 89 + netintfieldhex: 0x59 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,350,692,826 cycles, 1,566,849,477,365,278,723 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 90 + intfield2: 0x5a + longfield: 90 + netintfield: 90 + netintfieldhex: 0x5a + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,375,775,792 cycles, 1,566,849,477,390,361,688 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 90 + intfield2: 0x5a + longfield: 90 + netintfield: 90 + netintfieldhex: 0x5a + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,450,787,627 cycles, 1,566,849,477,465,373,524 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 91 + intfield2: 0x5b + longfield: 91 + netintfield: 91 + netintfieldhex: 0x5b + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,475,948,948 cycles, 1,566,849,477,490,534,844 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 91 + intfield2: 0x5b + longfield: 91 + netintfield: 91 + netintfieldhex: 0x5b + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,550,913,600 cycles, 1,566,849,477,565,499,497 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 92 + intfield2: 0x5c + longfield: 92 + netintfield: 92 + netintfieldhex: 0x5c + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,576,123,416 cycles, 1,566,849,477,590,709,312 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 92 + intfield2: 0x5c + longfield: 92 + netintfield: 92 + netintfieldhex: 0x5c + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,651,046,644 cycles, 1,566,849,477,665,632,541 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 93 + intfield2: 0x5d + longfield: 93 + netintfield: 93 + netintfieldhex: 0x5d + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,676,213,084 cycles, 1,566,849,477,690,798,980 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 93 + intfield2: 0x5d + longfield: 93 + netintfield: 93 + netintfieldhex: 0x5d + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,751,157,641 cycles, 1,566,849,477,765,743,538 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 94 + intfield2: 0x5e + longfield: 94 + netintfield: 94 + netintfieldhex: 0x5e + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,776,327,544 cycles, 1,566,849,477,790,913,440 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 94 + intfield2: 0x5e + longfield: 94 + netintfield: 94 + netintfieldhex: 0x5e + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,851,265,741 cycles, 1,566,849,477,865,851,638 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 95 + intfield2: 0x5f + longfield: 95 + netintfield: 95 + netintfieldhex: 0x5f + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,876,491,669 cycles, 1,566,849,477,891,077,565 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 95 + intfield2: 0x5f + longfield: 95 + netintfield: 95 + netintfieldhex: 0x5f + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,951,378,544 cycles, 1,566,849,477,965,964,441 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 96 + intfield2: 0x60 + longfield: 96 + netintfield: 96 + netintfieldhex: 0x60 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,421,976,617,660 cycles, 1,566,849,477,991,203,556 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 96 + intfield2: 0x60 + longfield: 96 + netintfield: 96 + netintfieldhex: 0x60 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,422,051,475,782 cycles, 1,566,849,478,066,061,679 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 97 + intfield2: 0x61 + longfield: 97 + netintfield: 97 + netintfieldhex: 0x61 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,422,076,779,970 cycles, 1,566,849,478,091,365,866 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 97 + intfield2: 0x61 + longfield: 97 + netintfield: 97 + netintfieldhex: 0x61 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,422,151,590,281 cycles, 1,566,849,478,166,176,178 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 98 + intfield2: 0x62 + longfield: 98 + netintfield: 98 + netintfieldhex: 0x62 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,422,176,865,038 cycles, 1,566,849,478,191,450,934 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 98 + intfield2: 0x62 + longfield: 98 + netintfield: 98 + netintfieldhex: 0x62 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,422,251,716,959 cycles, 1,566,849,478,266,302,856 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 99 + intfield2: 0x63 + longfield: 99 + netintfield: 99 + netintfieldhex: 0x63 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,422,277,030,840 cycles, 1,566,849,478,291,616,736 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Event `ust_tests_hello:tptest` (Class ID 25): + Payload: + intfield: 99 + intfield2: 0x63 + longfield: 99 + netintfield: 99 + netintfieldhex: 0x63 + blah: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1: Length 3: + [0]: 1 + [1]: 2 + [2]: 3 + arrfield1_hex: Length 3: + [0]: 0x1 + [1]: 0x2 + [2]: 0x3 + arrfield1_network: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + arrfield1_network_hex: Length 3: + [0]: 0x100:0000:0000:0000 + [1]: 0x200:0000:0000:0000 + [2]: 0x300:0000:0000:0000 + arrfield2: test + _seqfield1_length: 4 + seqfield1: Length 4: + [0]: 116 + [1]: 101 + [2]: 115 + [3]: 116 + _seqfield1_hex_length: 4 + seqfield1_hex: Length 4: + [0]: 0x74 + [1]: 0x65 + [2]: 0x73 + [3]: 0x74 + _seqfield2_length: 4 + seqfield2: test + _seqfield_network_3_length: 3 + seqfield_network_3: Length 3: + [0]: 72,057,594,037,927,936 + [1]: 144,115,188,075,855,872 + [2]: 216,172,782,113,783,808 + stringfield: test + floatfield: 2222.000000 + doublefield: 2.000000 + boolfield: 1 + +[167,422,354,884,525 cycles, 1,566,849,478,369,470,422 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 0} +Packet end + +[Unknown] +{Trace 0, Stream class ID 0, Stream ID 0} +Stream end + +[167,422,354,914,153 cycles, 1,566,849,478,369,500,050 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 1} +Packet end + +[Unknown] +{Trace 0, Stream class ID 0, Stream ID 1} +Stream end + +[167,422,354,925,299 cycles, 1,566,849,478,369,511,196 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 2} +Packet end + +[Unknown] +{Trace 0, Stream class ID 0, Stream ID 2} +Stream end + +[167,422,354,936,124 cycles, 1,566,849,478,369,522,021 ns from origin] +{Trace 0, Stream class ID 0, Stream ID 3} +Packet end + +[Unknown] +{Trace 0, Stream class ID 0, Stream ID 3} +Stream end + +[167,422,380,490,005 cycles, 1,566,849,478,395,075,901 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 0} +Packet end + +[Unknown] +{Trace 1, Stream class ID 0, Stream ID 0} +Stream end + +[167,422,380,509,609 cycles, 1,566,849,478,395,095,505 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 1} +Packet end + +[Unknown] +{Trace 1, Stream class ID 0, Stream ID 1} +Stream end + +[167,422,380,515,654 cycles, 1,566,849,478,395,101,550 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 2} +Packet end + +[Unknown] +{Trace 1, Stream class ID 0, Stream ID 2} +Stream end + +[167,422,380,521,227 cycles, 1,566,849,478,395,107,123 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 3} +Packet beginning: + Context: + cpu_id: 3 + +[167,422,380,521,227 cycles, 1,566,849,478,395,107,123 ns from origin] +{Trace 1, Stream class ID 0, Stream ID 3} +Packet end + +[Unknown] +{Trace 1, Stream class ID 0, Stream ID 3} +Stream end diff --git a/tests/plugins/src.ctf.fs/Makefile.am b/tests/plugins/src.ctf.fs/Makefile.am index 57903cf6..5f61b24d 100644 --- a/tests/plugins/src.ctf.fs/Makefile.am +++ b/tests/plugins/src.ctf.fs/Makefile.am @@ -2,5 +2,7 @@ SUBDIRS = succeed dist_check_SCRIPTS = \ query/test_query_metadata_info \ + query/test_query_support_info \ + query/test_query_support_info.py \ query/test_query_trace_info \ query/test_query_trace_info.py diff --git a/tests/plugins/src.ctf.fs/query/test_query_support_info b/tests/plugins/src.ctf.fs/query/test_query_support_info new file mode 100755 index 00000000..a4940cdd --- /dev/null +++ b/tests/plugins/src.ctf.fs/query/test_query_support_info @@ -0,0 +1,28 @@ +#!/bin/bash +# +# Copyright (C) 2019 Simon Marchi +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; only version 2 +# of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +if [ "x${BT_TESTS_SRCDIR:-}" != "x" ]; then + UTILSSH="$BT_TESTS_SRCDIR/utils/utils.sh" +else + UTILSSH="$(dirname "$0")/../../../utils/utils.sh" +fi + +# shellcheck source=../../../utils/utils.sh +source "$UTILSSH" + +run_python_bt2_test "${BT_TESTS_SRCDIR}/plugins/src.ctf.fs/query" test_query_support_info.py diff --git a/tests/plugins/src.ctf.fs/query/test_query_support_info.py b/tests/plugins/src.ctf.fs/query/test_query_support_info.py new file mode 100644 index 00000000..f094865a --- /dev/null +++ b/tests/plugins/src.ctf.fs/query/test_query_support_info.py @@ -0,0 +1,99 @@ +# Copyright (C) 2019 Simon Marchi +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; only version 2 +# of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +import unittest +import bt2 +import os + + +session_rotation_trace_path = os.path.join( + os.environ['BT_CTF_TRACES_PATH'], 'succeed', 'session-rotation' +) + + +trace_10352_1 = os.path.join( + session_rotation_trace_path, + 'archives', + '20190826T155748-0400-20190826T155751-0400-1', + 'ust', + 'pid', + 'hello-ust-10352-20190826-155748', +) +trace_10353_1 = os.path.join( + session_rotation_trace_path, + 'archives', + '20190826T155748-0400-20190826T155751-0400-1', + 'ust', + 'pid', + 'hello-ust-10353-20190826-155748', +) +trace_10352_2 = os.path.join( + session_rotation_trace_path, + 'archives', + '20190826T155750-0400-20190826T155753-0400-2', + 'ust', + 'pid', + 'hello-ust-10352-20190826-155748', +) +trace_10353_2 = os.path.join( + session_rotation_trace_path, + 'archives', + '20190826T155750-0400-20190826T155753-0400-2', + 'ust', + 'pid', + 'hello-ust-10353-20190826-155748', +) +trace_10352_3 = os.path.join( + session_rotation_trace_path, + '20190826T155753-0400-3', + 'ust', + 'pid', + 'hello-ust-10352-20190826-155748', +) +trace_10353_3 = os.path.join( + session_rotation_trace_path, + '20190826T155753-0400-3', + 'ust', + 'pid', + 'hello-ust-10353-20190826-155748', +) + + +class QuerySupportInfoTestCase(unittest.TestCase): + def test_support_info_with_uuid(self): + # Test that the right group is reported for each trace. + + def do_one_query(input, expected_group): + qe = bt2.QueryExecutor( + fs, 'babeltrace.support-info', {'input': input, 'type': 'directory'} + ) + + result = qe.query() + self.assertEqual(result['group'], expected_group) + + ctf = bt2.find_plugin('ctf') + fs = ctf.source_component_classes['fs'] + + do_one_query(trace_10352_1, '21cdfa5e-9a64-490a-832c-53aca6c101ba') + do_one_query(trace_10352_2, '21cdfa5e-9a64-490a-832c-53aca6c101ba') + do_one_query(trace_10352_3, '21cdfa5e-9a64-490a-832c-53aca6c101ba') + do_one_query(trace_10353_1, '83656eb1-b131-40e7-9666-c04ae279b58c') + do_one_query(trace_10353_2, '83656eb1-b131-40e7-9666-c04ae279b58c') + do_one_query(trace_10353_3, '83656eb1-b131-40e7-9666-c04ae279b58c') + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/plugins/src.ctf.fs/succeed/test_succeed b/tests/plugins/src.ctf.fs/succeed/test_succeed index 16f07ad1..b5c4b2b5 100755 --- a/tests/plugins/src.ctf.fs/succeed/test_succeed +++ b/tests/plugins/src.ctf.fs/succeed/test_succeed @@ -90,11 +90,12 @@ test_packet_end() { rm -f "$temp_stdout_output_file" "$temp_stderr_output_file" "$temp_greped_stdout_output_file" } -plan_tests 6 +plan_tests 7 test_ctf_gen_single simple test_ctf_single smalltrace test_ctf_single 2packets test_ctf_single barectf-event-before-packet +test_ctf_single session-rotation test_packet_end lttng-event-after-packet test_packet_end lttng-crash -- 2.34.1