ctf: filter out libbabeltrace user attributes
authorSimon Marchi <simon.marchi@efficios.com>
Fri, 4 Oct 2024 16:34:27 +0000 (12:34 -0400)
committerSimon Marchi <simon.marchi@efficios.com>
Wed, 9 Oct 2024 02:56:57 +0000 (22:56 -0400)
Some `babeltrace.org,2020` user attributes (`log-level` and `emf-uri`)
get translated to specific properties on event class IR objects.  It is
therefore redundant to keep them as user attributes.

Change-Id: I9e558faea19662f9b9a07f500581cd2569f4df76
Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Reviewed-on: https://review.lttng.org/c/babeltrace/+/13298
Reviewed-by: Philippe Proulx <eeppeliteloop@gmail.com>
Tested-by: jenkins <jenkins@lttng.org>
15 files changed:
src/plugins/ctf/common/src/metadata/metadata-stream-parser.cpp
tests/data/plugins/src.ctf.fs/succeed/trace-2packets-barectf-event-before-packet-ctf1.expect [new file with mode: 0644]
tests/data/plugins/src.ctf.fs/succeed/trace-2packets-barectf-event-before-packet-ctf2.expect [new file with mode: 0644]
tests/data/plugins/src.ctf.fs/succeed/trace-2packets-barectf-event-before-packet.expect [deleted file]
tests/data/plugins/src.ctf.fs/succeed/trace-2packets-ctf1.expect [new file with mode: 0644]
tests/data/plugins/src.ctf.fs/succeed/trace-2packets-ctf2.expect [new file with mode: 0644]
tests/data/plugins/src.ctf.fs/succeed/trace-2packets.expect [deleted file]
tests/data/plugins/src.ctf.fs/succeed/trace-barectf-event-before-packet-ctf1.expect [new file with mode: 0644]
tests/data/plugins/src.ctf.fs/succeed/trace-barectf-event-before-packet-ctf2.expect [new file with mode: 0644]
tests/data/plugins/src.ctf.fs/succeed/trace-barectf-event-before-packet.expect [deleted file]
tests/data/plugins/src.ctf.fs/succeed/trace-session-rotation-ctf1.expect [new file with mode: 0644]
tests/data/plugins/src.ctf.fs/succeed/trace-session-rotation-ctf2.expect [new file with mode: 0644]
tests/data/plugins/src.ctf.fs/succeed/trace-session-rotation.expect [deleted file]
tests/plugins/src.ctf.fs/succeed/test-succeed.sh
tests/plugins/src.ctf.lttng-live/test-live.sh

index d370a87f80eac78d505a8ecd916a5073aa79d9cd..9032d7b736f8db9f8b1c63a6fa4489ecaf152749 100644 (file)
@@ -18,6 +18,11 @@ namespace {
 
 using namespace bt2c::literals::datalen;
 
+constexpr const char *btUserAttrsNs = "babeltrace.org,2020";
+constexpr const char *logLevelUserAttr = "log-level";
+constexpr const char *emfUriUserAttr = "emf-uri";
+constexpr const char *lttngUserAttrsNs = "lttng.org,2009";
+
 /*
  * Map of variant field class to the index of the currently
  * visited option.
@@ -600,18 +605,90 @@ bool pktCtxFcContainsUIntFcWithRole(const DataStreamCls& dataStreamCls,
     return dataStreamCls.pktCtxFc() && fcContainsUIntFcWithRole(*dataStreamCls.pktCtxFc(), role);
 }
 
+/*
+ * Given `attrs`, a map value representing the user-attributes of a
+ * specific namespace, returns a version of `attrs` with the following keys
+ * removed:
+ *
+ *  ‣ `log-level`
+ *  ‣ `emf-uri`
+ *
+ * Returns no value if `attrs` contains no other keys than these, or
+ * a new map value containing only the remaining keys otherwise.
+ */
+bt2::MapValue::Shared filterKnownUserAttrsOne(const bt2::ConstMapValue attrs)
+{
+    bt2::MapValue::Shared filteredAttrs;
+
+    attrs.forEach([&](const bt2c::CStringView k, const bt2::ConstValue v) {
+        if (k == logLevelUserAttr || k == emfUriUserAttr) {
+            return;
+        }
+
+        if (!filteredAttrs) {
+            filteredAttrs = bt2::MapValue::create();
+        }
+
+        filteredAttrs->insert(k, *v.copy());
+    });
+
+    return filteredAttrs;
+}
+
+/*
+ * Given `attrs`, a "map of maps" representing the user attributes of
+ * some object, returns a version of `attrs` with some known user
+ * attributes removed.
+ *
+ * The removed user attributes have corresponding dedicated trace IR
+ * properties.
+ *
+ * Returns a new reference to `attrs` if this function didn't remove any
+ * attribute, or a new value otherwise.
+ */
+bt2::ConstMapValue::Shared filterKnownUserAttrs(const bt2::ConstMapValue attrs)
+{
+    const auto btUserAttrs = attrs[btUserAttrsNs];
+
+    if (!btUserAttrs) {
+        return attrs.shared();
+    }
+
+    if (!btUserAttrs->hasEntry(logLevelUserAttr) && !btUserAttrs->hasEntry(emfUriUserAttr)) {
+        return attrs.shared();
+    }
+
+    auto newAttrs = bt2::MapValue::create();
+
+    attrs.forEach([&](const bt2c::CStringView k, const bt2::ConstValue v) {
+        if (k != btUserAttrsNs || !v.isMap()) {
+            /* Copy other namespaces as is */
+            newAttrs->insert(k, *v.copy());
+            return;
+        }
+
+        if (const auto filtered = filterKnownUserAttrsOne(v.asMap())) {
+            newAttrs->insert(k, *filtered);
+        }
+    });
+
+    return newAttrs;
+}
+
 /*
  * Sets the user attributes of the equivalent trace IR object of `obj`
- * (`obj.libCls()`) to the attributes of `obj` if `mipVersion` is
- * greater than or equal to 1.
+ * (`obj.libCls()`) to the attributes of `obj`.
  */
 template <typename ObjT>
-void trySetLibUserAttrs(ObjT& obj, const unsigned long long mipVersion) noexcept
+void trySetLibUserAttrs(ObjT& obj) noexcept
 {
-    if (mipVersion >= 1 && obj.attrs()) {
-        BT_ASSERT(obj.libCls());
-        obj.libCls()->userAttributes(*obj.attrs());
+    BT_ASSERT(obj.libCls());
+
+    if (!obj.attrs()) {
+        return;
     }
+
+    obj.libCls()->userAttributes(*filterKnownUserAttrs(*obj.attrs()));
 }
 
 /*
@@ -811,7 +888,7 @@ public:
 
         /* Assign as translation and set user attributes */
         structFc.libCls(*libStructFc);
-        trySetLibUserAttrs(structFc, _mMipVersion);
+        trySetLibUserAttrs(structFc);
 
         /* Translate member classes */
         for (auto& memberCls : structFc) {
@@ -970,7 +1047,7 @@ private:
     void _setLibFc(FcT& fc, bt2::FieldClass::Shared libFc) noexcept
     {
         fc.libCls(*libFc);
-        trySetLibUserAttrs(fc, _mMipVersion);
+        trySetLibUserAttrs(fc);
         _mLastTranslatedLibFc = std::move(libFc);
     }
 
@@ -1551,9 +1628,6 @@ private:
         return libFc->asStructure().shared();
     }
 
-    static constexpr const char *_btUserAttrsNs = "babeltrace.org,2020";
-    static constexpr const char *_lttngUserAttrsNs = "lttng.org,2009";
-
     static bt2::OptionalBorrowedObject<bt2::ConstValue>
     _userAttr(const bt2::ConstMapValue userAttrs, const char * const ns,
               const char * const name) noexcept
@@ -1583,15 +1657,14 @@ private:
     static bt2::OptionalBorrowedObject<bt2::ConstStringValue>
     _strUserAttr(const bt2::ConstMapValue userAttrs, const char * const name) noexcept
     {
-        if (const auto val = LibTraceClsFromTraceClsTranslator::_strUserAttr(
-                userAttrs, LibTraceClsFromTraceClsTranslator::_btUserAttrsNs, name)) {
+        if (const auto val =
+                LibTraceClsFromTraceClsTranslator::_strUserAttr(userAttrs, btUserAttrsNs, name)) {
             /* From Babeltrace 2 namespace */
             return val;
         }
 
         /* From LTTng namespace */
-        return LibTraceClsFromTraceClsTranslator::_strUserAttr(
-            userAttrs, LibTraceClsFromTraceClsTranslator::_lttngUserAttrsNs, name);
+        return LibTraceClsFromTraceClsTranslator::_strUserAttr(userAttrs, lttngUserAttrsNs, name);
     }
 
     /*
@@ -1628,7 +1701,8 @@ private:
         /* Set log level and EMF URI */
         if (eventRecordCls.attrs()) {
             /* Set log level */
-            if (const auto userAttr = this->_strUserAttr(*eventRecordCls.attrs(), "log-level")) {
+            if (const auto userAttr =
+                    this->_strUserAttr(*eventRecordCls.attrs(), logLevelUserAttr)) {
                 const auto logLevel = bt2c::call([&userAttr]()
                                                      -> bt2s::optional<bt2::EventClassLogLevel> {
                     if (userAttr->value() == MetadataStreamParser::logLevelEmergencyName) {
@@ -1675,13 +1749,13 @@ private:
             }
 
             /* Set EMF URI */
-            if (const auto userAttr = this->_strUserAttr(*eventRecordCls.attrs(), "emf-uri")) {
+            if (const auto userAttr = this->_strUserAttr(*eventRecordCls.attrs(), emfUriUserAttr)) {
                 libEventRecordCls->emfUri(userAttr->value().data());
             }
         }
 
         /* Set user attributes */
-        trySetLibUserAttrs(eventRecordCls, _mMipVersion);
+        trySetLibUserAttrs(eventRecordCls);
 
         /* Translate specific context field class, if any */
         if (eventRecordCls.specCtxFc()) {
@@ -1770,7 +1844,7 @@ private:
         }
 
         /* Set user attributes */
-        trySetLibUserAttrs(clkCls, _mMipVersion);
+        trySetLibUserAttrs(clkCls);
     }
 
     /*
@@ -1831,7 +1905,7 @@ private:
             }
 
             /* Set user attributes */
-            trySetLibUserAttrs(dataStreamCls, _mMipVersion);
+            trySetLibUserAttrs(dataStreamCls);
 
             /* Translate packet context field class, if any */
             if (dataStreamCls.pktCtxFc()) {
@@ -1871,7 +1945,7 @@ private:
             _mTraceCls->libCls()->assignsAutomaticStreamClassId(false);
 
             /* Set user attributes */
-            trySetLibUserAttrs(*_mTraceCls, _mMipVersion);
+            trySetLibUserAttrs(*_mTraceCls);
         }
 
         /* Translate data stream classes */
diff --git a/tests/data/plugins/src.ctf.fs/succeed/trace-2packets-barectf-event-before-packet-ctf1.expect b/tests/data/plugins/src.ctf.fs/succeed/trace-2packets-barectf-event-before-packet-ctf1.expect
new file mode 100644 (file)
index 0000000..81bcab0
--- /dev/null
@@ -0,0 +1,64 @@
+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
+      UUID: db965ea1-f862-45a3-ab65-602642fdad90
+      Description: Monotonic Clock
+      Frequency (Hz): 1,000,000,000
+      Precision (cycles): 0
+      Offset from origin (s): 1,561,498,843
+      Offset from origin (cycles): 433,067,926
+      Origin: Unix epoch
+    Packet context field class: Structure (1 member):
+      cpu_id: Unsigned integer (32-bit, Base 10)
+    Event common context field class: Structure (1 member):
+      vpid: Signed integer (32-bit, Base 10)
+    Event class `lttng_ust_statedump:procname` (ID 0):
+      Log level: Debug (line)
+      Payload field class: Structure (1 member):
+        procname: String
+
+[Unknown] {0 0 2} Stream beginning
+
+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: No
+    Default clock class:
+      Name: default
+      Frequency (Hz): 1,000,000,000
+      Precision (cycles): 0
+      Offset from origin (s): 1,434,072,888
+      Offset from origin (cycles): 0
+      Origin: Unix epoch
+    Event class `simple_uint32` (ID 0):
+      Log level: Critical
+      Payload field class: Structure (1 member):
+        value: Unsigned integer (32-bit, Base 10)
+
+[Unknown] {1 0 0} Stream beginning
+[1,048,932,916,574,076 1,435,121,820,916,574,076] {1 0 0} Packet beginning
+[1,048,932,916,580,091 1,435,121,820,916,580,091] {1 0 0} Event `simple_uint32` (0)
+[1,048,932,916,584,407 1,435,121,820,916,584,407] {1 0 0} Packet end
+[1,048,932,916,605,259 1,435,121,820,916,605,259] {1 0 0} Packet beginning
+[1,048,932,916,605,259 1,435,121,820,916,605,259] {1 0 0} Event `simple_uint32` (0)
+[1,048,932,916,609,657 1,435,121,820,916,609,657] {1 0 0} Packet end
+[Unknown] {1 0 0} Stream end
+[257,960,472,138,367 1,561,756,803,905,206,293] {0 0 2} Packet beginning
+[257,960,490,358,932 1,561,756,803,923,426,858] {0 0 2} Event `lttng_ust_statedump:procname` (0)
+[257,963,419,223,089 1,561,756,806,852,291,015] {0 0 2} Packet end
+[257,971,894,873,186 1,561,756,815,327,941,112] {0 0 2} Packet beginning
+[257,971,894,873,186 1,561,756,815,327,941,112] {0 0 2} Event `lttng_ust_statedump:procname` (0)
+[257,974,030,386,677 1,561,756,817,463,454,603] {0 0 2} Packet end
+[Unknown] {0 0 2} Stream end
diff --git a/tests/data/plugins/src.ctf.fs/succeed/trace-2packets-barectf-event-before-packet-ctf2.expect b/tests/data/plugins/src.ctf.fs/succeed/trace-2packets-barectf-event-before-packet-ctf2.expect
new file mode 100644 (file)
index 0000000..ca8a48d
--- /dev/null
@@ -0,0 +1,70 @@
+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
+      UUID: db965ea1-f862-45a3-ab65-602642fdad90
+      Description: Monotonic Clock
+      Frequency (Hz): 1,000,000,000
+      Precision (cycles): 0
+      Offset from origin (s): 1,561,498,843
+      Offset from origin (cycles): 433,067,926
+      Origin: Unix epoch
+    Packet context field class: Structure (1 member):
+      cpu_id: Unsigned integer (32-bit, Base 10)
+    Event common context field class: Structure (1 member):
+      vpid: Signed integer (32-bit, Base 10)
+    Event class `lttng_ust_statedump:procname` (ID 0):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      Log level: Debug (line)
+      Payload field class: Structure (1 member):
+        procname: String
+
+[Unknown] {0 0 2} Stream beginning
+
+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: No
+    Default clock class:
+      Name: default
+      Frequency (Hz): 1,000,000,000
+      Precision (cycles): 0
+      Offset from origin (s): 1,434,072,888
+      Offset from origin (cycles): 0
+      Origin: Unix epoch
+    Event class `simple_uint32` (ID 0):
+      User attributes:
+        lttng.org,2009:
+          log-level: critical
+      Log level: Critical
+      Payload field class: Structure (1 member):
+        value: Unsigned integer (32-bit, Base 10)
+
+[Unknown] {1 0 0} Stream beginning
+[1,048,932,916,574,076 1,435,121,820,916,574,076] {1 0 0} Packet beginning
+[1,048,932,916,580,091 1,435,121,820,916,580,091] {1 0 0} Event `simple_uint32` (0)
+[1,048,932,916,584,407 1,435,121,820,916,584,407] {1 0 0} Packet end
+[1,048,932,916,605,259 1,435,121,820,916,605,259] {1 0 0} Packet beginning
+[1,048,932,916,605,259 1,435,121,820,916,605,259] {1 0 0} Event `simple_uint32` (0)
+[1,048,932,916,609,657 1,435,121,820,916,609,657] {1 0 0} Packet end
+[Unknown] {1 0 0} Stream end
+[257,960,472,138,367 1,561,756,803,905,206,293] {0 0 2} Packet beginning
+[257,960,490,358,932 1,561,756,803,923,426,858] {0 0 2} Event `lttng_ust_statedump:procname` (0)
+[257,963,419,223,089 1,561,756,806,852,291,015] {0 0 2} Packet end
+[257,971,894,873,186 1,561,756,815,327,941,112] {0 0 2} Packet beginning
+[257,971,894,873,186 1,561,756,815,327,941,112] {0 0 2} Event `lttng_ust_statedump:procname` (0)
+[257,974,030,386,677 1,561,756,817,463,454,603] {0 0 2} Packet end
+[Unknown] {0 0 2} Stream end
diff --git a/tests/data/plugins/src.ctf.fs/succeed/trace-2packets-barectf-event-before-packet.expect b/tests/data/plugins/src.ctf.fs/succeed/trace-2packets-barectf-event-before-packet.expect
deleted file mode 100644 (file)
index 81bcab0..0000000
+++ /dev/null
@@ -1,64 +0,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
-      UUID: db965ea1-f862-45a3-ab65-602642fdad90
-      Description: Monotonic Clock
-      Frequency (Hz): 1,000,000,000
-      Precision (cycles): 0
-      Offset from origin (s): 1,561,498,843
-      Offset from origin (cycles): 433,067,926
-      Origin: Unix epoch
-    Packet context field class: Structure (1 member):
-      cpu_id: Unsigned integer (32-bit, Base 10)
-    Event common context field class: Structure (1 member):
-      vpid: Signed integer (32-bit, Base 10)
-    Event class `lttng_ust_statedump:procname` (ID 0):
-      Log level: Debug (line)
-      Payload field class: Structure (1 member):
-        procname: String
-
-[Unknown] {0 0 2} Stream beginning
-
-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: No
-    Default clock class:
-      Name: default
-      Frequency (Hz): 1,000,000,000
-      Precision (cycles): 0
-      Offset from origin (s): 1,434,072,888
-      Offset from origin (cycles): 0
-      Origin: Unix epoch
-    Event class `simple_uint32` (ID 0):
-      Log level: Critical
-      Payload field class: Structure (1 member):
-        value: Unsigned integer (32-bit, Base 10)
-
-[Unknown] {1 0 0} Stream beginning
-[1,048,932,916,574,076 1,435,121,820,916,574,076] {1 0 0} Packet beginning
-[1,048,932,916,580,091 1,435,121,820,916,580,091] {1 0 0} Event `simple_uint32` (0)
-[1,048,932,916,584,407 1,435,121,820,916,584,407] {1 0 0} Packet end
-[1,048,932,916,605,259 1,435,121,820,916,605,259] {1 0 0} Packet beginning
-[1,048,932,916,605,259 1,435,121,820,916,605,259] {1 0 0} Event `simple_uint32` (0)
-[1,048,932,916,609,657 1,435,121,820,916,609,657] {1 0 0} Packet end
-[Unknown] {1 0 0} Stream end
-[257,960,472,138,367 1,561,756,803,905,206,293] {0 0 2} Packet beginning
-[257,960,490,358,932 1,561,756,803,923,426,858] {0 0 2} Event `lttng_ust_statedump:procname` (0)
-[257,963,419,223,089 1,561,756,806,852,291,015] {0 0 2} Packet end
-[257,971,894,873,186 1,561,756,815,327,941,112] {0 0 2} Packet beginning
-[257,971,894,873,186 1,561,756,815,327,941,112] {0 0 2} Event `lttng_ust_statedump:procname` (0)
-[257,974,030,386,677 1,561,756,817,463,454,603] {0 0 2} Packet end
-[Unknown] {0 0 2} Stream end
diff --git a/tests/data/plugins/src.ctf.fs/succeed/trace-2packets-ctf1.expect b/tests/data/plugins/src.ctf.fs/succeed/trace-2packets-ctf1.expect
new file mode 100644 (file)
index 0000000..d9de706
--- /dev/null
@@ -0,0 +1,79 @@
+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
+      UUID: db965ea1-f862-45a3-ab65-602642fdad90
+      Description: Monotonic Clock
+      Frequency (Hz): 1,000,000,000
+      Precision (cycles): 0
+      Offset from origin (s): 1,561,498,843
+      Offset from origin (cycles): 433,067,926
+      Origin: Unix epoch
+    Packet context field class: Structure (1 member):
+      cpu_id: Unsigned integer (32-bit, Base 10)
+    Event common context field class: Structure (1 member):
+      vpid: Signed integer (32-bit, Base 10)
+    Event class `lttng_ust_statedump:procname` (ID 0):
+      Log level: Debug (line)
+      Payload field class: Structure (1 member):
+        procname: String
+
+[Unknown]
+{Trace 0, Stream class ID 0, Stream ID 2}
+Stream beginning:
+  Trace:
+    UUID: 0f37a32b-1796-408d-b723-bd27b45921c6
+    Environment (5 entries):
+      domain: ust
+      hostname: joraj-alpa
+      tracer_major: 2
+      tracer_minor: 11
+      tracer_name: lttng-ust
+    Stream (ID 2, Class ID 0)
+
+[257,960,472,138,367 cycles, 1,561,756,803,905,206,293 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 2}
+Packet beginning:
+  Context:
+    cpu_id: 2
+
+[257,960,490,358,932 cycles, 1,561,756,803,923,426,858 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 2}
+Event `lttng_ust_statedump:procname` (Class ID 0):
+  Common context:
+    vpid: 15,062
+  Payload:
+    procname: sample-ust
+
+[257,963,419,223,089 cycles, 1,561,756,806,852,291,015 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 2}
+Packet end
+
+[257,971,894,873,186 cycles, 1,561,756,815,327,941,112 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 2}
+Packet beginning:
+  Context:
+    cpu_id: 2
+
+[257,971,894,873,186 cycles, 1,561,756,815,327,941,112 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 2}
+Event `lttng_ust_statedump:procname` (Class ID 0):
+  Common context:
+    vpid: 15,062
+  Payload:
+    procname: sample-ust
+
+[257,974,030,386,677 cycles, 1,561,756,817,463,454,603 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
diff --git a/tests/data/plugins/src.ctf.fs/succeed/trace-2packets-ctf2.expect b/tests/data/plugins/src.ctf.fs/succeed/trace-2packets-ctf2.expect
new file mode 100644 (file)
index 0000000..aa1c74e
--- /dev/null
@@ -0,0 +1,82 @@
+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
+      UUID: db965ea1-f862-45a3-ab65-602642fdad90
+      Description: Monotonic Clock
+      Frequency (Hz): 1,000,000,000
+      Precision (cycles): 0
+      Offset from origin (s): 1,561,498,843
+      Offset from origin (cycles): 433,067,926
+      Origin: Unix epoch
+    Packet context field class: Structure (1 member):
+      cpu_id: Unsigned integer (32-bit, Base 10)
+    Event common context field class: Structure (1 member):
+      vpid: Signed integer (32-bit, Base 10)
+    Event class `lttng_ust_statedump:procname` (ID 0):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      Log level: Debug (line)
+      Payload field class: Structure (1 member):
+        procname: String
+
+[Unknown]
+{Trace 0, Stream class ID 0, Stream ID 2}
+Stream beginning:
+  Trace:
+    UUID: 0f37a32b-1796-408d-b723-bd27b45921c6
+    Environment (5 entries):
+      domain: ust
+      hostname: joraj-alpa
+      tracer_major: 2
+      tracer_minor: 11
+      tracer_name: lttng-ust
+    Stream (ID 2, Class ID 0)
+
+[257,960,472,138,367 cycles, 1,561,756,803,905,206,293 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 2}
+Packet beginning:
+  Context:
+    cpu_id: 2
+
+[257,960,490,358,932 cycles, 1,561,756,803,923,426,858 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 2}
+Event `lttng_ust_statedump:procname` (Class ID 0):
+  Common context:
+    vpid: 15,062
+  Payload:
+    procname: sample-ust
+
+[257,963,419,223,089 cycles, 1,561,756,806,852,291,015 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 2}
+Packet end
+
+[257,971,894,873,186 cycles, 1,561,756,815,327,941,112 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 2}
+Packet beginning:
+  Context:
+    cpu_id: 2
+
+[257,971,894,873,186 cycles, 1,561,756,815,327,941,112 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 2}
+Event `lttng_ust_statedump:procname` (Class ID 0):
+  Common context:
+    vpid: 15,062
+  Payload:
+    procname: sample-ust
+
+[257,974,030,386,677 cycles, 1,561,756,817,463,454,603 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
diff --git a/tests/data/plugins/src.ctf.fs/succeed/trace-2packets.expect b/tests/data/plugins/src.ctf.fs/succeed/trace-2packets.expect
deleted file mode 100644 (file)
index d9de706..0000000
+++ /dev/null
@@ -1,79 +0,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
-      UUID: db965ea1-f862-45a3-ab65-602642fdad90
-      Description: Monotonic Clock
-      Frequency (Hz): 1,000,000,000
-      Precision (cycles): 0
-      Offset from origin (s): 1,561,498,843
-      Offset from origin (cycles): 433,067,926
-      Origin: Unix epoch
-    Packet context field class: Structure (1 member):
-      cpu_id: Unsigned integer (32-bit, Base 10)
-    Event common context field class: Structure (1 member):
-      vpid: Signed integer (32-bit, Base 10)
-    Event class `lttng_ust_statedump:procname` (ID 0):
-      Log level: Debug (line)
-      Payload field class: Structure (1 member):
-        procname: String
-
-[Unknown]
-{Trace 0, Stream class ID 0, Stream ID 2}
-Stream beginning:
-  Trace:
-    UUID: 0f37a32b-1796-408d-b723-bd27b45921c6
-    Environment (5 entries):
-      domain: ust
-      hostname: joraj-alpa
-      tracer_major: 2
-      tracer_minor: 11
-      tracer_name: lttng-ust
-    Stream (ID 2, Class ID 0)
-
-[257,960,472,138,367 cycles, 1,561,756,803,905,206,293 ns from origin]
-{Trace 0, Stream class ID 0, Stream ID 2}
-Packet beginning:
-  Context:
-    cpu_id: 2
-
-[257,960,490,358,932 cycles, 1,561,756,803,923,426,858 ns from origin]
-{Trace 0, Stream class ID 0, Stream ID 2}
-Event `lttng_ust_statedump:procname` (Class ID 0):
-  Common context:
-    vpid: 15,062
-  Payload:
-    procname: sample-ust
-
-[257,963,419,223,089 cycles, 1,561,756,806,852,291,015 ns from origin]
-{Trace 0, Stream class ID 0, Stream ID 2}
-Packet end
-
-[257,971,894,873,186 cycles, 1,561,756,815,327,941,112 ns from origin]
-{Trace 0, Stream class ID 0, Stream ID 2}
-Packet beginning:
-  Context:
-    cpu_id: 2
-
-[257,971,894,873,186 cycles, 1,561,756,815,327,941,112 ns from origin]
-{Trace 0, Stream class ID 0, Stream ID 2}
-Event `lttng_ust_statedump:procname` (Class ID 0):
-  Common context:
-    vpid: 15,062
-  Payload:
-    procname: sample-ust
-
-[257,974,030,386,677 cycles, 1,561,756,817,463,454,603 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
diff --git a/tests/data/plugins/src.ctf.fs/succeed/trace-barectf-event-before-packet-ctf1.expect b/tests/data/plugins/src.ctf.fs/succeed/trace-barectf-event-before-packet-ctf1.expect
new file mode 100644 (file)
index 0000000..cda3958
--- /dev/null
@@ -0,0 +1,64 @@
+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: No
+    Default clock class:
+      Name: default
+      Frequency (Hz): 1,000,000,000
+      Precision (cycles): 0
+      Offset from origin (s): 1,434,072,888
+      Offset from origin (cycles): 0
+    Event class `simple_uint32` (ID 0):
+      Log level: Critical
+      Payload field class: Structure (1 member):
+        value: Unsigned integer (32-bit, Base 10)
+
+[Unknown]
+{Trace 0, Stream class ID 0, Stream ID 0}
+Stream beginning:
+  Trace:
+    UUID: 437748de-9435-11e9-8353-5254007c6857
+    Environment (6 entries):
+      barectf_gen_date: 2019-06-21T11:00:09.758481
+      domain: bare
+      tracer_major: 2
+      tracer_minor: 3
+      tracer_name: barectf
+      tracer_patch: 0
+    Stream (ID 0, Class ID 0)
+
+[1,048,932,916,574,076 cycles, 1,435,121,820,916,574,076 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 0}
+Packet beginning
+
+[1,048,932,916,580,091 cycles, 1,435,121,820,916,580,091 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 0}
+Event `simple_uint32` (Class ID 0):
+  Payload:
+    value: 0
+
+[1,048,932,916,584,407 cycles, 1,435,121,820,916,584,407 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 0}
+Packet end
+
+[1,048,932,916,605,259 cycles, 1,435,121,820,916,605,259 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 0}
+Packet beginning
+
+[1,048,932,916,605,259 cycles, 1,435,121,820,916,605,259 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 0}
+Event `simple_uint32` (Class ID 0):
+  Payload:
+    value: 1500
+
+[1,048,932,916,609,657 cycles, 1,435,121,820,916,609,657 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
diff --git a/tests/data/plugins/src.ctf.fs/succeed/trace-barectf-event-before-packet-ctf2.expect b/tests/data/plugins/src.ctf.fs/succeed/trace-barectf-event-before-packet-ctf2.expect
new file mode 100644 (file)
index 0000000..385b20e
--- /dev/null
@@ -0,0 +1,67 @@
+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: No
+    Default clock class:
+      Name: default
+      Frequency (Hz): 1,000,000,000
+      Precision (cycles): 0
+      Offset from origin (s): 1,434,072,888
+      Offset from origin (cycles): 0
+    Event class `simple_uint32` (ID 0):
+      User attributes:
+        lttng.org,2009:
+          log-level: critical
+      Log level: Critical
+      Payload field class: Structure (1 member):
+        value: Unsigned integer (32-bit, Base 10)
+
+[Unknown]
+{Trace 0, Stream class ID 0, Stream ID 0}
+Stream beginning:
+  Trace:
+    UUID: 437748de-9435-11e9-8353-5254007c6857
+    Environment (6 entries):
+      barectf_gen_date: 2019-06-21T11:00:09.758481
+      domain: bare
+      tracer_major: 2
+      tracer_minor: 3
+      tracer_name: barectf
+      tracer_patch: 0
+    Stream (ID 0, Class ID 0)
+
+[1,048,932,916,574,076 cycles, 1,435,121,820,916,574,076 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 0}
+Packet beginning
+
+[1,048,932,916,580,091 cycles, 1,435,121,820,916,580,091 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 0}
+Event `simple_uint32` (Class ID 0):
+  Payload:
+    value: 0
+
+[1,048,932,916,584,407 cycles, 1,435,121,820,916,584,407 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 0}
+Packet end
+
+[1,048,932,916,605,259 cycles, 1,435,121,820,916,605,259 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 0}
+Packet beginning
+
+[1,048,932,916,605,259 cycles, 1,435,121,820,916,605,259 ns from origin]
+{Trace 0, Stream class ID 0, Stream ID 0}
+Event `simple_uint32` (Class ID 0):
+  Payload:
+    value: 1500
+
+[1,048,932,916,609,657 cycles, 1,435,121,820,916,609,657 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
diff --git a/tests/data/plugins/src.ctf.fs/succeed/trace-barectf-event-before-packet.expect b/tests/data/plugins/src.ctf.fs/succeed/trace-barectf-event-before-packet.expect
deleted file mode 100644 (file)
index cda3958..0000000
+++ /dev/null
@@ -1,64 +0,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: No
-    Default clock class:
-      Name: default
-      Frequency (Hz): 1,000,000,000
-      Precision (cycles): 0
-      Offset from origin (s): 1,434,072,888
-      Offset from origin (cycles): 0
-    Event class `simple_uint32` (ID 0):
-      Log level: Critical
-      Payload field class: Structure (1 member):
-        value: Unsigned integer (32-bit, Base 10)
-
-[Unknown]
-{Trace 0, Stream class ID 0, Stream ID 0}
-Stream beginning:
-  Trace:
-    UUID: 437748de-9435-11e9-8353-5254007c6857
-    Environment (6 entries):
-      barectf_gen_date: 2019-06-21T11:00:09.758481
-      domain: bare
-      tracer_major: 2
-      tracer_minor: 3
-      tracer_name: barectf
-      tracer_patch: 0
-    Stream (ID 0, Class ID 0)
-
-[1,048,932,916,574,076 cycles, 1,435,121,820,916,574,076 ns from origin]
-{Trace 0, Stream class ID 0, Stream ID 0}
-Packet beginning
-
-[1,048,932,916,580,091 cycles, 1,435,121,820,916,580,091 ns from origin]
-{Trace 0, Stream class ID 0, Stream ID 0}
-Event `simple_uint32` (Class ID 0):
-  Payload:
-    value: 0
-
-[1,048,932,916,584,407 cycles, 1,435,121,820,916,584,407 ns from origin]
-{Trace 0, Stream class ID 0, Stream ID 0}
-Packet end
-
-[1,048,932,916,605,259 cycles, 1,435,121,820,916,605,259 ns from origin]
-{Trace 0, Stream class ID 0, Stream ID 0}
-Packet beginning
-
-[1,048,932,916,605,259 cycles, 1,435,121,820,916,605,259 ns from origin]
-{Trace 0, Stream class ID 0, Stream ID 0}
-Event `simple_uint32` (Class ID 0):
-  Payload:
-    value: 1500
-
-[1,048,932,916,609,657 cycles, 1,435,121,820,916,609,657 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
diff --git a/tests/data/plugins/src.ctf.fs/succeed/trace-session-rotation-ctf1.expect b/tests/data/plugins/src.ctf.fs/succeed/trace-session-rotation-ctf1.expect
new file mode 100644 (file)
index 0000000..0e61da8
--- /dev/null
@@ -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
+      UUID: 78760d96-b4c7-47f0-bd66-b73a504fee96
+      Description: Monotonic Clock
+      Frequency (Hz): 1,000,000,000
+      Precision (cycles): 0
+      Offset from origin (s): 1,566,682,056
+      Offset from origin (cycles): 14,585,897
+      Origin: Unix epoch
+    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 (with length field) (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 (with length field) (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 (with length field) (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 (with length field) (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 (with length field) (Length field path [Event payload: 17]):
+          Element: Signed integer (64-bit, Base 10)
+        stringfield: String
+        floatfield: Single-precision real
+        doublefield: Double-precision real
+        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
+      UUID: 78760d96-b4c7-47f0-bd66-b73a504fee96
+      Description: Monotonic Clock
+      Frequency (Hz): 1,000,000,000
+      Precision (cycles): 0
+      Offset from origin (s): 1,566,682,056
+      Offset from origin (cycles): 14,585,896
+      Origin: Unix epoch
+    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 (with length field) (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 (with length field) (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 (with length field) (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 (with length field) (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 (with length field) (Length field path [Event payload: 17]):
+          Element: Signed integer (64-bit, Base 10)
+        stringfield: String
+        floatfield: Single-precision real
+        doublefield: Double-precision real
+        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/data/plugins/src.ctf.fs/succeed/trace-session-rotation-ctf2.expect b/tests/data/plugins/src.ctf.fs/succeed/trace-session-rotation-ctf2.expect
new file mode 100644 (file)
index 0000000..1a6b374
--- /dev/null
@@ -0,0 +1,12901 @@
+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
+      UUID: 78760d96-b4c7-47f0-bd66-b73a504fee96
+      Description: Monotonic Clock
+      Frequency (Hz): 1,000,000,000
+      Precision (cycles): 0
+      Offset from origin (s): 1,566,682,056
+      Offset from origin (cycles): 14,585,897
+      Origin: Unix epoch
+    Packet context field class: Structure (1 member):
+      cpu_id: Unsigned integer (32-bit, Base 10)
+    Event class `lttng_ust_statedump:start` (ID 0):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      Log level: Debug (line)
+      Payload field class: Structure (0 members)
+    Event class `lttng_ust_statedump:bin_info` (ID 1):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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 (with length field) (Length field path [Event payload: 1]):
+          Element: Unsigned integer (8-bit, Base 16)
+    Event class `lttng_ust_statedump:debug_link` (ID 3):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      Log level: Debug (line)
+      Payload field class: Structure (0 members)
+    Event class `lttng_ust_lib:load` (ID 5):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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 (with length field) (Length field path [Event payload: 1]):
+          Element: Unsigned integer (8-bit, Base 16)
+    Event class `lttng_ust_lib:debug_link` (ID 7):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: emergency
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: alert
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: critical
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: error
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: warning
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: notice
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: info
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:system
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:program
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:process
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:module
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:unit
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:function
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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 (with length field) (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 (with length field) (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 (with length field) (Length field path [Event payload: 17]):
+          Element: Signed integer (64-bit, Base 10)
+        stringfield: String
+        floatfield: Single-precision real
+        doublefield: Double-precision real
+        boolfield: Unsigned integer (8-bit, Base 10)
+    Event class `ust_tests_hello:tptest_sighandler` (ID 26):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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
+      UUID: 78760d96-b4c7-47f0-bd66-b73a504fee96
+      Description: Monotonic Clock
+      Frequency (Hz): 1,000,000,000
+      Precision (cycles): 0
+      Offset from origin (s): 1,566,682,056
+      Offset from origin (cycles): 14,585,896
+      Origin: Unix epoch
+    Packet context field class: Structure (1 member):
+      cpu_id: Unsigned integer (32-bit, Base 10)
+    Event class `lttng_ust_statedump:start` (ID 0):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      Log level: Debug (line)
+      Payload field class: Structure (0 members)
+    Event class `lttng_ust_statedump:bin_info` (ID 1):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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 (with length field) (Length field path [Event payload: 1]):
+          Element: Unsigned integer (8-bit, Base 16)
+    Event class `lttng_ust_statedump:debug_link` (ID 3):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      Log level: Debug (line)
+      Payload field class: Structure (0 members)
+    Event class `lttng_ust_lib:load` (ID 5):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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 (with length field) (Length field path [Event payload: 1]):
+          Element: Unsigned integer (8-bit, Base 16)
+    Event class `lttng_ust_lib:debug_link` (ID 7):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: emergency
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: alert
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: critical
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: error
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: warning
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: notice
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: info
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:system
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:program
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:process
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:module
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:unit
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:function
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug
+      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):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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 (with length field) (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 (with length field) (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 (with length field) (Length field path [Event payload: 17]):
+          Element: Signed integer (64-bit, Base 10)
+        stringfield: String
+        floatfield: Single-precision real
+        doublefield: Double-precision real
+        boolfield: Unsigned integer (8-bit, Base 10)
+    Event class `ust_tests_hello:tptest_sighandler` (ID 26):
+      User attributes:
+        lttng.org,2009:
+          log-level: debug:line
+      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/data/plugins/src.ctf.fs/succeed/trace-session-rotation.expect b/tests/data/plugins/src.ctf.fs/succeed/trace-session-rotation.expect
deleted file mode 100644 (file)
index 0e61da8..0000000
+++ /dev/null
@@ -1,12739 +0,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
-      UUID: 78760d96-b4c7-47f0-bd66-b73a504fee96
-      Description: Monotonic Clock
-      Frequency (Hz): 1,000,000,000
-      Precision (cycles): 0
-      Offset from origin (s): 1,566,682,056
-      Offset from origin (cycles): 14,585,897
-      Origin: Unix epoch
-    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 (with length field) (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 (with length field) (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 (with length field) (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 (with length field) (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 (with length field) (Length field path [Event payload: 17]):
-          Element: Signed integer (64-bit, Base 10)
-        stringfield: String
-        floatfield: Single-precision real
-        doublefield: Double-precision real
-        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
-      UUID: 78760d96-b4c7-47f0-bd66-b73a504fee96
-      Description: Monotonic Clock
-      Frequency (Hz): 1,000,000,000
-      Precision (cycles): 0
-      Offset from origin (s): 1,566,682,056
-      Offset from origin (cycles): 14,585,896
-      Origin: Unix epoch
-    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 (with length field) (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 (with length field) (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 (with length field) (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 (with length field) (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 (with length field) (Length field path [Event payload: 17]):
-          Element: Signed integer (64-bit, Base 10)
-        stringfield: String
-        floatfield: Single-precision real
-        doublefield: Double-precision real
-        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
index 1ac4411fedd3b07de91b2a585e6ba6876255c6c7..90b07e515622ae215e5ac99a6d07f7464e10fc98 100755 (executable)
@@ -28,6 +28,27 @@ expect_dir="$BT_TESTS_DATADIR/$this_dir_relative"
 
 test_ctf_common_details_args=("-p" "with-trace-name=no,with-stream-name=no")
 
+# Print the expected stdout file for test with name `$1` and CTF version `$2.
+find_expect_file() {
+       local test_name="$1"
+       local ctf="$2"
+
+       names=(
+               "$expect_dir/trace-$test_name-ctf$ctf.expect"
+               "$expect_dir/trace-$test_name.expect"
+       )
+
+       for name in "${names[@]}"; do
+               if [[ -f "$name" ]]; then
+                       echo "$name"
+                       return
+               fi
+       done
+
+       echo "Could not find expect file for test $test_name, CTF $ctf" >&2
+       exit 1
+}
+
 succeed_trace_path() {
        name="$1"
        ctf_version="$2"
@@ -50,11 +71,13 @@ test_ctf_single_version() {
        local name="$1"
        local ctf_version="$2"
        local trace_path
+       local expected_stdout
 
        trace_path=$(succeed_trace_path "$name" "$ctf_version")
+       expected_stdout=$(find_expect_file "$name" "$ctf_version")
 
-       bt_diff_details_ctf_single "$expect_dir/trace-$name.expect" \
-               "$trace_path" "${test_ctf_common_details_args[@]}"
+       bt_diff_details_ctf_single "$expected_stdout" "$trace_path" \
+               "${test_ctf_common_details_args[@]}"
        ok $? "Trace '$name' gives the expected output - CTF $ctf_version"
 }
 
@@ -108,7 +131,7 @@ test_packet_end() {
 test_force_origin_unix_epoch() {
        local name1="$1"
        local name2="$2"
-       local expected_stdout="$expect_dir/trace-$name1-$name2.expect"
+       local expected_stdout
        local src_ctf_fs_args=("-p" "force-clock-class-origin-unix-epoch=true")
        local details_comp=("-c" "sink.text.details")
        local details_args=("-p" "with-trace-name=no,with-stream-name=no,with-metadata=yes,compact=yes")
@@ -121,6 +144,7 @@ test_force_origin_unix_epoch() {
        for ctf_version in 1 2; do
                local trace_path
 
+               expected_stdout=$(find_expect_file "$name1-$name2" $ctf_version)
                trace_1_path=$(succeed_trace_path "$name1" "$ctf_version")
                trace_2_path=$(succeed_trace_path "$name2" "$ctf_version")
 
index efc8bab798051c346eca9d04d0a5d568b1c105f8..acd62ded34c5e0b06502a41c8b24681e0ab12de2 100755 (executable)
@@ -47,6 +47,26 @@ else
        trace_dir_native="${trace_dir}"
 fi
 
+find_expect_file() {
+       local test_name="$1"
+       local ctf="$2"
+
+       names=(
+               "$expect_dir/$test_name-ctf$ctf.expect"
+               "$expect_dir/$test_name.expect"
+       )
+
+       for name in "${names[@]}"; do
+               if [[ -f "$name" ]]; then
+                       echo "$name"
+                       return
+               fi
+       done
+
+       echo "Could not find expect file for test $test_name, CTF $ctf" >&2
+       exit 1
+}
+
 lttng_live_server() {
        local pid_file="$1"
        local retcode_file="$2"
This page took 0.363514 seconds and 4 git commands to generate.