From 24365aee4023251f76aca7b82677f6ff14d8efd8 Mon Sep 17 00:00:00 2001 From: Robert Mosolgo Date: Thu, 26 Mar 2026 12:41:16 -0400 Subject: [PATCH] Exec-next: update Perfetto trace --- lib/graphql/tracing/perfetto_trace.rb | 4 +- spec/graphql/tracing/detailed_trace_spec.rb | 33 +- spec/graphql/tracing/perfetto_trace_spec.rb | 5 +- .../snapshots/example-rails-7-2-next.json | 32674 ++++++++++++++++ .../snapshots/example-rails-8-0-next.json | 31998 +++++++++++++++ .../snapshots/example-rails-8-1-next.json | 32446 +++++++++++++++ .../snapshots/example-rails-8-2-next.json | 32446 +++++++++++++++ 7 files changed, 129596 insertions(+), 10 deletions(-) create mode 100644 spec/graphql/tracing/snapshots/example-rails-7-2-next.json create mode 100644 spec/graphql/tracing/snapshots/example-rails-8-0-next.json create mode 100644 spec/graphql/tracing/snapshots/example-rails-8-1-next.json create mode 100644 spec/graphql/tracing/snapshots/example-rails-8-2-next.json diff --git a/lib/graphql/tracing/perfetto_trace.rb b/lib/graphql/tracing/perfetto_trace.rb index 053bad97d0..15a6f008e7 100644 --- a/lib/graphql/tracing/perfetto_trace.rb +++ b/lib/graphql/tracing/perfetto_trace.rb @@ -253,7 +253,7 @@ def begin_execute_field(field, object, arguments, query) packet = trace_packet( type: TrackEvent::Type::TYPE_SLICE_BEGIN, track_uuid: fid, - name: query.context.current_path.join("."), + name: query.context.current_path&.join(".") || field.path, category_iids: FIELD_EXECUTE_CATEGORY_IIDS, extra_counter_track_uuids: @counts_objects, extra_counter_values: [count_allocations], @@ -269,7 +269,7 @@ def end_execute_field(field, object, arguments, query, app_result) if @create_debug_annotations start_field.track_event = dup_with(start_field.track_event,{ debug_annotations: [ - payload_to_debug(nil, object.object, iid: DA_OBJECT_IID, intern_value: true), + payload_to_debug(nil, (object.is_a?(GraphQL::Schema::Object) ? object.object : object), iid: DA_OBJECT_IID, intern_value: true), payload_to_debug(nil, arguments, iid: DA_ARGUMENTS_IID), payload_to_debug(nil, app_result, iid: DA_RESULT_IID, intern_value: true) ] diff --git a/spec/graphql/tracing/detailed_trace_spec.rb b/spec/graphql/tracing/detailed_trace_spec.rb index 44527f60bb..2466fb1fd3 100644 --- a/spec/graphql/tracing/detailed_trace_spec.rb +++ b/spec/graphql/tracing/detailed_trace_spec.rb @@ -4,7 +4,8 @@ describe GraphQL::Tracing::DetailedTrace do class SamplerSchema < GraphQL::Schema class Query < GraphQL::Schema::Object - field :truthy, Boolean, fallback_value: true + field :truthy, Boolean, fallback_value: true, resolve_static: true + def self.truthy(ctx); true; end end query(Query) @@ -16,30 +17,48 @@ def self.detailed_trace?(query) query.context[:profile] != false end end + + use GraphQL::Execution::Next end before do SamplerSchema.detailed_trace.delete_all_traces end + def exec_query(...) + if TESTING_EXEC_NEXT + SamplerSchema.execute_next(...) + else + SamplerSchema.execute(...) + end + end + + def exec_multiplex(...) + if TESTING_EXEC_NEXT + SamplerSchema.multiplex_next(...) + else + SamplerSchema.multiplex(...) + end + end + it "runs when the configured trace mode is set" do assert_equal 0, SamplerSchema.detailed_trace.traces.size - res = SamplerSchema.execute("{ truthy }", context: { profile: false }) + res = exec_query("{ truthy }", context: { profile: false }) assert_equal true, res["data"]["truthy"] assert_equal 0, SamplerSchema.detailed_trace.traces.size - SamplerSchema.execute("{ truthy }") + exec_query("{ truthy }") assert_equal 1, SamplerSchema.detailed_trace.traces.size end it "calls through to storage for access methods" do - SamplerSchema.execute("{ truthy }") + exec_query("{ truthy }") id = SamplerSchema.detailed_trace.traces.first.id assert_kind_of GraphQL::Tracing::DetailedTrace::StoredTrace, SamplerSchema.detailed_trace.find_trace(id) SamplerSchema.detailed_trace.delete_trace(id) assert_equal 0, SamplerSchema.detailed_trace.traces.size - SamplerSchema.execute("{ truthy }") + exec_query("{ truthy }") assert_equal 1, SamplerSchema.detailed_trace.traces.size SamplerSchema.detailed_trace.delete_all_traces end @@ -66,13 +85,13 @@ def self.detailed_trace?(query) it "calls detailed_profile? on a Multiplex" do assert_equal 0, SamplerSchema.detailed_trace.traces.size - SamplerSchema.multiplex([ + exec_multiplex([ { query: "{ truthy }", context: { profile: false } }, { query: "{ truthy }", context: { profile: true } }, ]) assert_equal 0, SamplerSchema.detailed_trace.traces.size - SamplerSchema.multiplex([ + exec_multiplex([ { query: "{ truthy }", context: { profile: true } }, { query: "{ truthy }", context: { profile: true } }, ]) diff --git a/spec/graphql/tracing/perfetto_trace_spec.rb b/spec/graphql/tracing/perfetto_trace_spec.rb index fbc016497f..8b49acac3f 100644 --- a/spec/graphql/tracing/perfetto_trace_spec.rb +++ b/spec/graphql/tracing/perfetto_trace_spec.rb @@ -176,6 +176,9 @@ def self.detailed_trace?(q) PerfettoSchema.execute(query_str, variables: { thingId: "Book-#{::Book.first.id}" }) res = PerfettoSchema.execute(query_str, variables: { thingId: "Book-#{::Book.first.id}" }) + assert_equal 4, res["data"]["authors"].size + refute res.key?("errors") + if ENV["DUMP_PERFETTO"] res.context.query.current_trace.write(file: "perfetto.dump") end @@ -184,7 +187,7 @@ def self.detailed_trace?(q) data = JSON.parse(json) - check_snapshot(data, "example-rails-#{Rails::VERSION::MAJOR}-#{Rails::VERSION::MINOR}.json") + check_snapshot(data, "example-rails-#{Rails::VERSION::MAJOR}-#{Rails::VERSION::MINOR}#{TESTING_EXEC_NEXT ? "-next" : ""}.json") end it "replaces nil class name with (anonymous)" do diff --git a/spec/graphql/tracing/snapshots/example-rails-7-2-next.json b/spec/graphql/tracing/snapshots/example-rails-7-2-next.json new file mode 100644 index 0000000000..d6eeb2fb13 --- /dev/null +++ b/spec/graphql/tracing/snapshots/example-rails-7-2-next.json @@ -0,0 +1,32674 @@ +{ + "packet": [ + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "previousPacketDropped": true, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Main Thread", + "childOrdering": "CHRONOLOGICAL" + }, + "firstPacketOnSequence": true + }, + { + "trustedPacketSequenceId": 101010101010, + "internedData": { + "eventCategories": [ + { + "iid": "10101010101010", + "name": "Dataloader" + }, + { + "iid": "10101010101010", + "name": "Field Execution" + }, + { + "iid": "10101010101010", + "name": "ActiveSupport::Notifications" + }, + { + "iid": "10101010101010", + "name": "Authorized" + }, + { + "iid": "10101010101010", + "name": "Resolve Type" + }, + { + "iid": "10101010101010", + "name": "Debug Inspect" + } + ], + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + } + ], + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "object" + }, + { + "iid": "10101010101010", + "name": "result" + }, + { + "iid": "10101010101010", + "name": "arguments" + }, + { + "iid": "10101010101010", + "name": "fetch keys" + }, + { + "iid": "10101010101010", + "name": "inspect instance of" + }, + { + "iid": "10101010101010", + "name": "inspecting for" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "KG5pbCk=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Main Fiber", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Allocated Objects", + "parentUuid": "10101010101010", + "counter": {} + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Active Fibers", + "parentUuid": "10101010101010", + "counter": {} + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Resolved Fields", + "parentUuid": "10101010101010", + "counter": {} + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Parse", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "valid?" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "validate?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Validate\n", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "validate?" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValue": "query GetStuff {\n authors {\n name\n books {\n title\n reviews {\n stars\n user {\n username\n }\n }\n averageReview\n author {\n name\n }\n otherBook {\n title\n }\n }\n }\n t5: thing(id: \"Book-1\") {\n ... on Book {\n title\n }\n ... on Author {\n name\n }\n }\n}", + "name": "query_string" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "Multiplex" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "valid?" + }, + { + "iid": "10101010101010", + "name": "query_string" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "analyzers" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "analyzers_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Analysis\n", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "analyzers_count" + }, + { + "iid": "10101010101010", + "name": "analyzers" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Dataloader Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Query" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Query" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "query_string" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "authorized?" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "validate?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpSZWxhdGlvbg==\n" + }, + { + "iid": "10101010101010", + "str": "cmVzdWx0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QXV0aG9yOjpBY3RpdmVSZWNvcmRfUmVsYXRpb24sIC50b19zcWw9IlNFTEVD\nVCBcImF1dGhvcnNcIi4qIEZST00gXCJhdXRob3JzXCIi\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "sql" + }, + { + "iid": "10101010101010", + "name": "name\n" + }, + { + "iid": "10101010101010", + "name": "binds" + }, + { + "iid": "10101010101010", + "name": "type_casted_binds" + }, + { + "iid": "10101010101010", + "name": "statement_name" + }, + { + "iid": "10101010101010", + "name": "async" + }, + { + "iid": "10101010101010", + "name": "connection" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJhdXRob3JzIi4qIEZST00gImF1dGhvcnMi\n" + }, + { + "iid": "10101010101010", + "str": "QXV0aG9yIExvYWQ=\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpDb25uZWN0aW9uQWRhcHRlcnM6OlBvc3RncmVTUUxB\nZGFwdGVy\n" + }, + { + "iid": "10101010101010", + "str": "Y29ubmVjdGlvbg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "analyzers" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "analyzers_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "transaction" + }, + { + "iid": "10101010101010", + "name": "row_count" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6UG9zdGdyZVNR\nTEFkYXB0ZXI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "record_count" + }, + { + "iid": "10101010101010", + "name": "class_name" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QXV0aG9y\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Author" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "t5", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "statement_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "async" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "b2JqZWN0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDEsIG5hbWU6ICJXaWxsaWFtIFNoYWtlc3BlYXJlIj4=\n" + }, + { + "iid": "10101010101010", + "str": "V2lsbGlhbSBTaGFrZXNwZWFyZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "statement_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "transaction" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpBc3NvY2lhdGlvblJlbGF0aW9u\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDEgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.0" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\nYXV0aG9yX2lkIiA9ICQxIExJTUlUICQy\n" + }, + { + "iid": "10101010101010", + "str": "Qm9vayBMb2Fk\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpSZWxhdGlvbjo6UXVlcnlBdHRyaWJ1dGU=\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.1" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlTW9kZWw6OkF0dHJpYnV0ZTo6V2l0aENhc3RWYWx1ZQ==\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "type_casted_binds.0" + }, + { + "iid": "10101010101010", + "name": "type_casted_binds.1" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + }, + { + "iid": "10101010101010", + "str": "YTI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": "stars" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vaw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@model_class" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDIsIG5hbWU6ICJCZWF0cml4IFBvdHRlciI+\n" + }, + { + "iid": "10101010101010", + "str": "QmVhdHJpeCBQb3R0ZXI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@find_by" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDIgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": "stars" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "resolved_type" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDMsIG5hbWU6ICJDaGFybGVzIERpY2tlbnMiPg==\n" + }, + { + "iid": "10101010101010", + "str": "Q2hhcmxlcyBEaWNrZW5z\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "binds.2" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDMgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": "stars" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "type_casted_binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDQsIG5hbWU6ICLtlZzqsJUiPg==\n" + }, + { + "iid": "10101010101010", + "str": "7ZWc6rCV\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "type_casted_binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDQgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": "stars" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Book" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxLCB0aXRsZTogIkEgTWlkc3VtbWVyIE5pZ2h0J3MgRHJl\nYW0iLCBhdXRob3JfaWQ6IDE+\n" + }, + { + "iid": "10101010101010", + "str": "QSBNaWRzdW1tZXIgTmlnaHQncyBEcmVhbQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJyZXZpZXdzIi4qIEZST00gInJldmlld3MiIFdIRVJFICJyZXZp\nZXdzIi4iYm9va19pZCIgPSAkMSBMSU1JVCAkMg==\n" + }, + { + "iid": "10101010101010", + "str": "UmV2aWV3IExvYWQ=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + }, + { + "iid": "10101010101010", + "str": "YTM=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiID0gJDEgTElNSVQgJDI=\n" + }, + { + "iid": "10101010101010", + "str": "VXNlciBMb2Fk\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + }, + { + "iid": "10101010101010", + "str": "YTQ=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "VXNlcg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + }, + { + "iid": "10101010101010", + "name": "stars" + }, + { + "iid": "10101010101010", + "name": "user_id" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "dXNlcl9pZA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAxLCB1c2VybmFtZTogIm1hdHoiPg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAyLCB1c2VybmFtZTogInRlbmRlcmxvdmUiPg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "statement_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyLCB0aXRsZTogIlRoZSBNZXJyeSBXaXZlcyBvZiBXaW5k\nc29yIiwgYXV0aG9yX2lkOiAxPg==\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIE1lcnJ5IFdpdmVzIG9mIFdpbmRzb3I=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Dataloader::ActiveRecordSource" + } + ], + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "@model_class" + }, + { + "iid": "10101010101010", + "name": "@find_by" + }, + { + "iid": "10101010101010", + "name": "@find_by_many" + }, + { + "iid": "10101010101010", + "name": "@type_for_column" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "aWQ=\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlTW9kZWw6OlR5cGU6OkludGVnZXI=\n" + }, + { + "iid": "10101010101010", + "str": "QHR5cGVfZm9yX2NvbHVtbg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6VHlwZTo6SW50ZWdlcg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\naWQiID0gJDE=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + }, + { + "iid": "10101010101010", + "str": "YTU=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::AverageReview" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIGJvb2tzLmlkLCBBVkcoc3RhcnMpIGFzIGF2Z19yZXZpZXcgIEZS\nT00gImJvb2tzIiBJTk5FUiBKT0lOICJyZXZpZXdzIiBPTiAicmV2aWV3cyIu\nImJvb2tfaWQiID0gImJvb2tzIi4iaWQiIEdST1VQIEJZICJib29rcyIuImlk\nIg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::OtherBook" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiA9ICQxIEFORCAiYm9v\na3MiLiJpZCIgIT0gJDIgR1JPVVAgQlkgImJvb2tzIi4iYXV0aG9yX2lkIg==\n" + }, + { + "iid": "10101010101010", + "str": "Qm9vayBNYXhpbXVt\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "stringValue": "Book-1" + } + ], + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "t5", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "id" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Resolve Type" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "resolved_type", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Resolve Type: Thing" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Resolve Type: Thing" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "resolved_type" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UGVyZmV0dG9TY2hlbWE6OkJvb2s=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "statement_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QmlnRGVjaW1hbA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MC4yNWUx\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxMCwgdGl0bGU6ICJUaGUgVGFsZSBvZiBQZXRlciBSYWJi\naXQiLCBhdXRob3JfaWQ6IDI+\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIFRhbGUgb2YgUGV0ZXIgUmFiYml0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiA5LCB0aXRsZTogIk90aGVsbG8iLCBhdXRob3JfaWQ6IDE+\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxMSwgdGl0bGU6ICJUaGUgVGFsZSBvZiBTcXVpcnJlbCBO\ndXRraW4iLCBhdXRob3JfaWQ6IDI+\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIFRhbGUgb2YgU3F1aXJyZWwgTnV0a2lu\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiBJTiAoJDEsICQyKSBB\nTkQgImJvb2tzIi4iaWQiIE5PVCBJTiAoJDMsICQ0KSBHUk9VUCBCWSAiYm9v\na3MiLiJhdXRob3JfaWQi\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.2" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.3" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "type_casted_binds.2" + }, + { + "iid": "10101010101010", + "name": "type_casted_binds.3" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxOSwgdGl0bGU6ICJUaGUgUGlja3dpY2sgUGFwZXJzIiwg\nYXV0aG9yX2lkOiAzPg==\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIFBpY2t3aWNrIFBhcGVycw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxOCwgdGl0bGU6ICJUaGUgU3Rvcnkgb2YgYSBGaWVyY2Ug\nQmFkIFJhYmJpdCIsIGF1dGhvcl9pZDogMj4=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "id" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyMCwgdGl0bGU6ICJPbGl2ZXIgVHdpc3QiLCBhdXRob3Jf\naWQ6IDM+\n" + }, + { + "iid": "10101010101010", + "str": "T2xpdmVyIFR3aXN0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "id" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyNiwgdGl0bGU6ICLsnpHrs4TtlZjsp4Ag7JWK64qU64uk\nIiwgYXV0aG9yX2lkOiA0Pg==\n" + }, + { + "iid": "10101010101010", + "str": "7J6R67OE7ZWY7KeAIOyViuuKlOuLpA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyNSwgdGl0bGU6ICJHcmVhdCBFeHBlY3RhdGlvbnMiLCBh\ndXRob3JfaWQ6IDM+\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "type_casted_binds.3" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyNywgdGl0bGU6ICLtnbAiLCBhdXRob3JfaWQ6IDQ+\n" + }, + { + "iid": "10101010101010", + "str": "7Z2w\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "type_casted_binds.3" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Review" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyOSwgdGl0bGU6ICLrhbjrnpHrrLTriqzsmIHsm5AiLCBh\ndXRob3JfaWQ6IDQ+\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "statement_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "async" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::Authorized" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "t5.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "statement_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "async" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "T3RoZWxsbw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@model_class" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@model_class" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "VGhlIFN0b3J5IG9mIGEgRmllcmNlIEJhZCBSYWJiaXQ=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "resolved_type" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "resolved_type" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "R3JlYXQgRXhwZWN0YXRpb25z\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "type_casted_binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "type_casted_binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "64W4656R66y064qs7JiB7JuQ\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010", + "10101010101010", + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiIElTIE5VTEw=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "statement_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + } + ] +} \ No newline at end of file diff --git a/spec/graphql/tracing/snapshots/example-rails-8-0-next.json b/spec/graphql/tracing/snapshots/example-rails-8-0-next.json new file mode 100644 index 0000000000..2dbec8302e --- /dev/null +++ b/spec/graphql/tracing/snapshots/example-rails-8-0-next.json @@ -0,0 +1,31998 @@ +{ + "packet": [ + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "previousPacketDropped": true, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Main Thread", + "childOrdering": "CHRONOLOGICAL" + }, + "firstPacketOnSequence": true + }, + { + "trustedPacketSequenceId": 101010101010, + "internedData": { + "eventCategories": [ + { + "iid": "10101010101010", + "name": "Dataloader" + }, + { + "iid": "10101010101010", + "name": "Field Execution" + }, + { + "iid": "10101010101010", + "name": "ActiveSupport::Notifications" + }, + { + "iid": "10101010101010", + "name": "Authorized" + }, + { + "iid": "10101010101010", + "name": "Resolve Type" + }, + { + "iid": "10101010101010", + "name": "Debug Inspect" + } + ], + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + } + ], + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "object" + }, + { + "iid": "10101010101010", + "name": "result" + }, + { + "iid": "10101010101010", + "name": "arguments" + }, + { + "iid": "10101010101010", + "name": "fetch keys" + }, + { + "iid": "10101010101010", + "name": "inspect instance of" + }, + { + "iid": "10101010101010", + "name": "inspecting for" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "KG5pbCk=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Main Fiber", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Allocated Objects", + "parentUuid": "10101010101010", + "counter": {} + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Active Fibers", + "parentUuid": "10101010101010", + "counter": {} + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Resolved Fields", + "parentUuid": "10101010101010", + "counter": {} + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Parse", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "valid?" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "validate?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Validate\n", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "validate?" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValue": "query GetStuff {\n authors {\n name\n books {\n title\n reviews {\n stars\n user {\n username\n }\n }\n averageReview\n author {\n name\n }\n otherBook {\n title\n }\n }\n }\n t5: thing(id: \"Book-1\") {\n ... on Book {\n title\n }\n ... on Author {\n name\n }\n }\n}", + "name": "query_string" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "Multiplex" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "valid?" + }, + { + "iid": "10101010101010", + "name": "query_string" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "analyzers" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "analyzers_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Analysis\n", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "analyzers_count" + }, + { + "iid": "10101010101010", + "name": "analyzers" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Dataloader Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Query" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Query" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "query_string" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "authorized?" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "validate?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpSZWxhdGlvbg==\n" + }, + { + "iid": "10101010101010", + "str": "cmVzdWx0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QXV0aG9yOjpBY3RpdmVSZWNvcmRfUmVsYXRpb24sIC50b19zcWw9IlNFTEVD\nVCBcImF1dGhvcnNcIi4qIEZST00gXCJhdXRob3JzXCIi\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "sql" + }, + { + "iid": "10101010101010", + "name": "name\n" + }, + { + "iid": "10101010101010", + "name": "binds" + }, + { + "iid": "10101010101010", + "name": "type_casted_binds" + }, + { + "iid": "10101010101010", + "name": "async" + }, + { + "iid": "10101010101010", + "name": "connection" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJhdXRob3JzIi4qIEZST00gImF1dGhvcnMi\n" + }, + { + "iid": "10101010101010", + "str": "QXV0aG9yIExvYWQ=\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpDb25uZWN0aW9uQWRhcHRlcnM6OlNRTGl0ZTNBZGFw\ndGVy\n" + }, + { + "iid": "10101010101010", + "str": "Y29ubmVjdGlvbg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "analyzers" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "analyzers_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "transaction" + }, + { + "iid": "10101010101010", + "name": "row_count" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "record_count" + }, + { + "iid": "10101010101010", + "name": "class_name" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QXV0aG9y\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Author" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "t5", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "async" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "connection" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "b2JqZWN0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDEsIG5hbWU6ICJXaWxsaWFtIFNoYWtlc3BlYXJlIj4=\n" + }, + { + "iid": "10101010101010", + "str": "V2lsbGlhbSBTaGFrZXNwZWFyZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "async" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "row_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "transaction" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpBc3NvY2lhdGlvblJlbGF0aW9u\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDEgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.0" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\nYXV0aG9yX2lkIiA9ID8gTElNSVQgPw==\n" + }, + { + "iid": "10101010101010", + "str": "Qm9vayBMb2Fk\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpSZWxhdGlvbjo6UXVlcnlBdHRyaWJ1dGU=\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.1" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlTW9kZWw6OkF0dHJpYnV0ZTo6V2l0aENhc3RWYWx1ZQ==\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "type_casted_binds.0" + }, + { + "iid": "10101010101010", + "name": "type_casted_binds.1" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vaw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@model_class" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDIsIG5hbWU6ICJCZWF0cml4IFBvdHRlciI+\n" + }, + { + "iid": "10101010101010", + "str": "QmVhdHJpeCBQb3R0ZXI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@find_by" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "transaction" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDIgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "resolved_type" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDMsIG5hbWU6ICJDaGFybGVzIERpY2tlbnMiPg==\n" + }, + { + "iid": "10101010101010", + "str": "Q2hhcmxlcyBEaWNrZW5z\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "binds.2" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "transaction" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDMgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "type_casted_binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDQsIG5hbWU6ICLtlZzqsJUiPg==\n" + }, + { + "iid": "10101010101010", + "str": "7ZWc6rCV\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "type_casted_binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "transaction" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDQgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Book" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxLCB0aXRsZTogIkEgTWlkc3VtbWVyIE5pZ2h0J3MgRHJl\nYW0iLCBhdXRob3JfaWQ6IDE+\n" + }, + { + "iid": "10101010101010", + "str": "QSBNaWRzdW1tZXIgTmlnaHQncyBEcmVhbQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJyZXZpZXdzIi4qIEZST00gInJldmlld3MiIFdIRVJFICJyZXZp\nZXdzIi4iYm9va19pZCIgPSA/IExJTUlUID8=\n" + }, + { + "iid": "10101010101010", + "str": "UmV2aWV3IExvYWQ=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiID0gPyBMSU1JVCA/\n" + }, + { + "iid": "10101010101010", + "str": "VXNlciBMb2Fk\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "VXNlcg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + }, + { + "iid": "10101010101010", + "name": "stars" + }, + { + "iid": "10101010101010", + "name": "user_id" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "dXNlcl9pZA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAxLCB1c2VybmFtZTogIm1hdHoiPg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAyLCB1c2VybmFtZTogInRlbmRlcmxvdmUiPg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "async" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyLCB0aXRsZTogIlRoZSBNZXJyeSBXaXZlcyBvZiBXaW5k\nc29yIiwgYXV0aG9yX2lkOiAxPg==\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIE1lcnJ5IFdpdmVzIG9mIFdpbmRzb3I=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Dataloader::ActiveRecordSource" + } + ], + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "@model_class" + }, + { + "iid": "10101010101010", + "name": "@find_by" + }, + { + "iid": "10101010101010", + "name": "@find_by_many" + }, + { + "iid": "10101010101010", + "name": "@type_for_column" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "aWQ=\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpDb25uZWN0aW9uQWRhcHRlcnM6OlNRTGl0ZTNBZGFw\ndGVyOjpTUUxpdGUzSW50ZWdlcg==\n" + }, + { + "iid": "10101010101010", + "str": "QHR5cGVfZm9yX2NvbHVtbg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI6OlNRTGl0ZTNJbnRlZ2Vy\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\naWQiID0gPw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::AverageReview" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIGJvb2tzLmlkLCBBVkcoc3RhcnMpIGFzIGF2Z19yZXZpZXcgIEZS\nT00gImJvb2tzIiBJTk5FUiBKT0lOICJyZXZpZXdzIiBPTiAicmV2aWV3cyIu\nImJvb2tfaWQiID0gImJvb2tzIi4iaWQiIEdST1VQIEJZICJib29rcyIuImlk\nIg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::OtherBook" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiA9ID8gQU5EICJib29r\ncyIuImlkIiAhPSA/IEdST1VQIEJZICJib29rcyIuImF1dGhvcl9pZCI=\n" + }, + { + "iid": "10101010101010", + "str": "Qm9vayBNYXhpbXVt\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "stringValue": "Book-1" + } + ], + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "t5", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "id" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Resolve Type" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "resolved_type", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Resolve Type: Thing" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Resolve Type: Thing" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "resolved_type" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UGVyZmV0dG9TY2hlbWE6OkJvb2s=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "async" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxMCwgdGl0bGU6ICJUaGUgVGFsZSBvZiBQZXRlciBSYWJi\naXQiLCBhdXRob3JfaWQ6IDI+\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIFRhbGUgb2YgUGV0ZXIgUmFiYml0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiA5LCB0aXRsZTogIk90aGVsbG8iLCBhdXRob3JfaWQ6IDE+\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxMSwgdGl0bGU6ICJUaGUgVGFsZSBvZiBTcXVpcnJlbCBO\ndXRraW4iLCBhdXRob3JfaWQ6IDI+\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIFRhbGUgb2YgU3F1aXJyZWwgTnV0a2lu\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiBJTiAoPywgPykgQU5E\nICJib29rcyIuImlkIiBOT1QgSU4gKD8sID8pIEdST1VQIEJZICJib29rcyIu\nImF1dGhvcl9pZCI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.2" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.3" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "type_casted_binds.2" + }, + { + "iid": "10101010101010", + "name": "type_casted_binds.3" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxOSwgdGl0bGU6ICJUaGUgUGlja3dpY2sgUGFwZXJzIiwg\nYXV0aG9yX2lkOiAzPg==\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIFBpY2t3aWNrIFBhcGVycw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxOCwgdGl0bGU6ICJUaGUgU3Rvcnkgb2YgYSBGaWVyY2Ug\nQmFkIFJhYmJpdCIsIGF1dGhvcl9pZDogMj4=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "id" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyMCwgdGl0bGU6ICJPbGl2ZXIgVHdpc3QiLCBhdXRob3Jf\naWQ6IDM+\n" + }, + { + "iid": "10101010101010", + "str": "T2xpdmVyIFR3aXN0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "id" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyNiwgdGl0bGU6ICLsnpHrs4TtlZjsp4Ag7JWK64qU64uk\nIiwgYXV0aG9yX2lkOiA0Pg==\n" + }, + { + "iid": "10101010101010", + "str": "7J6R67OE7ZWY7KeAIOyViuuKlOuLpA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyNSwgdGl0bGU6ICJHcmVhdCBFeHBlY3RhdGlvbnMiLCBh\ndXRob3JfaWQ6IDM+\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "type_casted_binds.3" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyNywgdGl0bGU6ICLtnbAiLCBhdXRob3JfaWQ6IDQ+\n" + }, + { + "iid": "10101010101010", + "str": "7Z2w\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "type_casted_binds.3" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Review" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyOSwgdGl0bGU6ICLrhbjrnpHrrLTriqzsmIHsm5AiLCBh\ndXRob3JfaWQ6IDQ+\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "async" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "connection" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::Authorized" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "t5.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "async" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "connection" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "T3RoZWxsbw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@model_class" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@model_class" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "VGhlIFN0b3J5IG9mIGEgRmllcmNlIEJhZCBSYWJiaXQ=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "resolved_type" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "resolved_type" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "R3JlYXQgRXhwZWN0YXRpb25z\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "type_casted_binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "type_casted_binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "64W4656R66y064qs7JiB7JuQ\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "user_id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010", + "10101010101010", + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiIElTIE5VTEw=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + } + ] +} \ No newline at end of file diff --git a/spec/graphql/tracing/snapshots/example-rails-8-1-next.json b/spec/graphql/tracing/snapshots/example-rails-8-1-next.json new file mode 100644 index 0000000000..4962c0382f --- /dev/null +++ b/spec/graphql/tracing/snapshots/example-rails-8-1-next.json @@ -0,0 +1,32446 @@ +{ + "packet": [ + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "previousPacketDropped": true, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Main Thread", + "childOrdering": "CHRONOLOGICAL" + }, + "firstPacketOnSequence": true + }, + { + "trustedPacketSequenceId": 101010101010, + "internedData": { + "eventCategories": [ + { + "iid": "10101010101010", + "name": "Dataloader" + }, + { + "iid": "10101010101010", + "name": "Field Execution" + }, + { + "iid": "10101010101010", + "name": "ActiveSupport::Notifications" + }, + { + "iid": "10101010101010", + "name": "Authorized" + }, + { + "iid": "10101010101010", + "name": "Resolve Type" + }, + { + "iid": "10101010101010", + "name": "Debug Inspect" + } + ], + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + } + ], + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "object" + }, + { + "iid": "10101010101010", + "name": "result" + }, + { + "iid": "10101010101010", + "name": "arguments" + }, + { + "iid": "10101010101010", + "name": "fetch keys" + }, + { + "iid": "10101010101010", + "name": "inspect instance of" + }, + { + "iid": "10101010101010", + "name": "inspecting for" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "KG5pbCk=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Main Fiber", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Allocated Objects", + "parentUuid": "10101010101010", + "counter": {} + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Active Fibers", + "parentUuid": "10101010101010", + "counter": {} + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Resolved Fields", + "parentUuid": "10101010101010", + "counter": {} + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Parse", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "valid?" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "validate?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Validate\n", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "validate?" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValue": "query GetStuff {\n authors {\n name\n books {\n title\n reviews {\n stars\n user {\n username\n }\n }\n averageReview\n author {\n name\n }\n otherBook {\n title\n }\n }\n }\n t5: thing(id: \"Book-1\") {\n ... on Book {\n title\n }\n ... on Author {\n name\n }\n }\n}", + "name": "query_string" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "Multiplex" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "valid?" + }, + { + "iid": "10101010101010", + "name": "query_string" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "analyzers" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "analyzers_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Analysis\n", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "analyzers_count" + }, + { + "iid": "10101010101010", + "name": "analyzers" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Dataloader Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Query" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Query" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "query_string" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "authorized?" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "validate?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpSZWxhdGlvbg==\n" + }, + { + "iid": "10101010101010", + "str": "cmVzdWx0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QXV0aG9yOjpBY3RpdmVSZWNvcmRfUmVsYXRpb24sIC50b19zcWw9IlNFTEVD\nVCBcImF1dGhvcnNcIi4qIEZST00gXCJhdXRob3JzXCIi\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "sql" + }, + { + "iid": "10101010101010", + "name": "name\n" + }, + { + "iid": "10101010101010", + "name": "binds" + }, + { + "iid": "10101010101010", + "name": "type_casted_binds" + }, + { + "iid": "10101010101010", + "name": "async" + }, + { + "iid": "10101010101010", + "name": "allow_retry" + }, + { + "iid": "10101010101010", + "name": "connection" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJhdXRob3JzIi4qIEZST00gImF1dGhvcnMi\n" + }, + { + "iid": "10101010101010", + "str": "QXV0aG9yIExvYWQ=\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpDb25uZWN0aW9uQWRhcHRlcnM6OlNRTGl0ZTNBZGFw\ndGVy\n" + }, + { + "iid": "10101010101010", + "str": "Y29ubmVjdGlvbg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "analyzers" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "analyzers_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "transaction" + }, + { + "iid": "10101010101010", + "name": "affected_rows" + }, + { + "iid": "10101010101010", + "name": "row_count" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "record_count" + }, + { + "iid": "10101010101010", + "name": "class_name" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QXV0aG9y\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Author" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "t5", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "async" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "allow_retry" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "b2JqZWN0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDEsIG5hbWU6ICJXaWxsaWFtIFNoYWtlc3BlYXJlIj4=\n" + }, + { + "iid": "10101010101010", + "str": "V2lsbGlhbSBTaGFrZXNwZWFyZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "async" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "transaction" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpBc3NvY2lhdGlvblJlbGF0aW9u\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDEgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.0" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\nYXV0aG9yX2lkIiA9ID8gTElNSVQgPw==\n" + }, + { + "iid": "10101010101010", + "str": "Qm9vayBMb2Fk\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpSZWxhdGlvbjo6UXVlcnlBdHRyaWJ1dGU=\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.1" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlTW9kZWw6OkF0dHJpYnV0ZTo6V2l0aENhc3RWYWx1ZQ==\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "type_casted_binds.0" + }, + { + "iid": "10101010101010", + "name": "type_casted_binds.1" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "affected_rows" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vaw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "stars" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "user_id" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDIsIG5hbWU6ICJCZWF0cml4IFBvdHRlciI+\n" + }, + { + "iid": "10101010101010", + "str": "QmVhdHJpeCBQb3R0ZXI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "stars" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDIgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "affected_rows" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@type_for_column" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDMsIG5hbWU6ICJDaGFybGVzIERpY2tlbnMiPg==\n" + }, + { + "iid": "10101010101010", + "str": "Q2hhcmxlcyBEaWNrZW5z\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "id" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDMgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "affected_rows" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "type_casted_binds.2" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDQsIG5hbWU6ICLtlZzqsJUiPg==\n" + }, + { + "iid": "10101010101010", + "str": "7ZWc6rCV\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "type_casted_binds.3" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDQgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "affected_rows" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Book" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxLCB0aXRsZTogIkEgTWlkc3VtbWVyIE5pZ2h0J3MgRHJl\nYW0iLCBhdXRob3JfaWQ6IDE+\n" + }, + { + "iid": "10101010101010", + "str": "QSBNaWRzdW1tZXIgTmlnaHQncyBEcmVhbQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJyZXZpZXdzIi4qIEZST00gInJldmlld3MiIFdIRVJFICJyZXZp\nZXdzIi4iYm9va19pZCIgPSA/IExJTUlUID8=\n" + }, + { + "iid": "10101010101010", + "str": "UmV2aWV3IExvYWQ=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiID0gPyBMSU1JVCA/\n" + }, + { + "iid": "10101010101010", + "str": "VXNlciBMb2Fk\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "VXNlcg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + }, + { + "iid": "10101010101010", + "name": "stars" + }, + { + "iid": "10101010101010", + "name": "user_id" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "dXNlcl9pZA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAxLCB1c2VybmFtZTogIm1hdHoiPg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAyLCB1c2VybmFtZTogInRlbmRlcmxvdmUiPg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "async" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyLCB0aXRsZTogIlRoZSBNZXJyeSBXaXZlcyBvZiBXaW5k\nc29yIiwgYXV0aG9yX2lkOiAxPg==\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIE1lcnJ5IFdpdmVzIG9mIFdpbmRzb3I=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Dataloader::ActiveRecordSource" + } + ], + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "@model_class" + }, + { + "iid": "10101010101010", + "name": "@find_by" + }, + { + "iid": "10101010101010", + "name": "@find_by_many" + }, + { + "iid": "10101010101010", + "name": "@type_for_column" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "aWQ=\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpDb25uZWN0aW9uQWRhcHRlcnM6OlNRTGl0ZTNBZGFw\ndGVyOjpTUUxpdGUzSW50ZWdlcg==\n" + }, + { + "iid": "10101010101010", + "str": "QHR5cGVfZm9yX2NvbHVtbg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI6OlNRTGl0ZTNJbnRlZ2Vy\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\naWQiID0gPw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::AverageReview" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIGJvb2tzLmlkLCBBVkcoc3RhcnMpIGFzIGF2Z19yZXZpZXcgIEZS\nT00gImJvb2tzIiBJTk5FUiBKT0lOICJyZXZpZXdzIiBPTiAicmV2aWV3cyIu\nImJvb2tfaWQiID0gImJvb2tzIi4iaWQiIEdST1VQIEJZICJib29rcyIuImlk\nIg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::OtherBook" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiA9ID8gQU5EICJib29r\ncyIuImlkIiAhPSA/IEdST1VQIEJZICJib29rcyIuImF1dGhvcl9pZCI=\n" + }, + { + "iid": "10101010101010", + "str": "Qm9vayBNYXhpbXVt\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "stringValue": "Book-1" + } + ], + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "t5", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "id" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Resolve Type" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "resolved_type", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Resolve Type: Thing" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Resolve Type: Thing" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "resolved_type" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UGVyZmV0dG9TY2hlbWE6OkJvb2s=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "async" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxMCwgdGl0bGU6ICJUaGUgVGFsZSBvZiBQZXRlciBSYWJi\naXQiLCBhdXRob3JfaWQ6IDI+\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIFRhbGUgb2YgUGV0ZXIgUmFiYml0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiA5LCB0aXRsZTogIk90aGVsbG8iLCBhdXRob3JfaWQ6IDE+\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "stars" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxMSwgdGl0bGU6ICJUaGUgVGFsZSBvZiBTcXVpcnJlbCBO\ndXRraW4iLCBhdXRob3JfaWQ6IDI+\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIFRhbGUgb2YgU3F1aXJyZWwgTnV0a2lu\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiBJTiAoPywgPykgQU5E\nICJib29rcyIuImlkIiBOT1QgSU4gKD8sID8pIEdST1VQIEJZICJib29rcyIu\nImF1dGhvcl9pZCI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.2" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.3" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "type_casted_binds.2" + }, + { + "iid": "10101010101010", + "name": "type_casted_binds.3" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "stars" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxOSwgdGl0bGU6ICJUaGUgUGlja3dpY2sgUGFwZXJzIiwg\nYXV0aG9yX2lkOiAzPg==\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIFBpY2t3aWNrIFBhcGVycw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxOCwgdGl0bGU6ICJUaGUgU3Rvcnkgb2YgYSBGaWVyY2Ug\nQmFkIFJhYmJpdCIsIGF1dGhvcl9pZDogMj4=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@find_by_many" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyMCwgdGl0bGU6ICJPbGl2ZXIgVHdpc3QiLCBhdXRob3Jf\naWQ6IDM+\n" + }, + { + "iid": "10101010101010", + "str": "T2xpdmVyIFR3aXN0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@find_by_many" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyNiwgdGl0bGU6ICLsnpHrs4TtlZjsp4Ag7JWK64qU64uk\nIiwgYXV0aG9yX2lkOiA0Pg==\n" + }, + { + "iid": "10101010101010", + "str": "7J6R67OE7ZWY7KeAIOyViuuKlOuLpA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyNSwgdGl0bGU6ICJHcmVhdCBFeHBlY3RhdGlvbnMiLCBh\ndXRob3JfaWQ6IDM+\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "binds.3" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyNywgdGl0bGU6ICLtnbAiLCBhdXRob3JfaWQ6IDQ+\n" + }, + { + "iid": "10101010101010", + "str": "7Z2w\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "binds.3" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Review" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyOSwgdGl0bGU6ICLrhbjrnpHrrLTriqzsmIHsm5AiLCBh\ndXRob3JfaWQ6IDQ+\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "async" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "allow_retry" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::Authorized" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "t5.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "async" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "allow_retry" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "T3RoZWxsbw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "stars" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "user_id" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "stars" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "user_id" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "VGhlIFN0b3J5IG9mIGEgRmllcmNlIEJhZCBSYWJiaXQ=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@type_for_column" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@type_for_column" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "R3JlYXQgRXhwZWN0YXRpb25z\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "type_casted_binds.2" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "type_casted_binds.2" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "64W4656R66y064qs7JiB7JuQ\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010", + "10101010101010", + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiIElTIE5VTEw=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + } + ] +} \ No newline at end of file diff --git a/spec/graphql/tracing/snapshots/example-rails-8-2-next.json b/spec/graphql/tracing/snapshots/example-rails-8-2-next.json new file mode 100644 index 0000000000..4962c0382f --- /dev/null +++ b/spec/graphql/tracing/snapshots/example-rails-8-2-next.json @@ -0,0 +1,32446 @@ +{ + "packet": [ + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "previousPacketDropped": true, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Main Thread", + "childOrdering": "CHRONOLOGICAL" + }, + "firstPacketOnSequence": true + }, + { + "trustedPacketSequenceId": 101010101010, + "internedData": { + "eventCategories": [ + { + "iid": "10101010101010", + "name": "Dataloader" + }, + { + "iid": "10101010101010", + "name": "Field Execution" + }, + { + "iid": "10101010101010", + "name": "ActiveSupport::Notifications" + }, + { + "iid": "10101010101010", + "name": "Authorized" + }, + { + "iid": "10101010101010", + "name": "Resolve Type" + }, + { + "iid": "10101010101010", + "name": "Debug Inspect" + } + ], + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + } + ], + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "object" + }, + { + "iid": "10101010101010", + "name": "result" + }, + { + "iid": "10101010101010", + "name": "arguments" + }, + { + "iid": "10101010101010", + "name": "fetch keys" + }, + { + "iid": "10101010101010", + "name": "inspect instance of" + }, + { + "iid": "10101010101010", + "name": "inspecting for" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "KG5pbCk=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Main Fiber", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Allocated Objects", + "parentUuid": "10101010101010", + "counter": {} + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Active Fibers", + "parentUuid": "10101010101010", + "counter": {} + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Resolved Fields", + "parentUuid": "10101010101010", + "counter": {} + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Parse", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "valid?" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "validate?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Validate\n", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "validate?" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValue": "query GetStuff {\n authors {\n name\n books {\n title\n reviews {\n stars\n user {\n username\n }\n }\n averageReview\n author {\n name\n }\n otherBook {\n title\n }\n }\n }\n t5: thing(id: \"Book-1\") {\n ... on Book {\n title\n }\n ... on Author {\n name\n }\n }\n}", + "name": "query_string" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "Multiplex" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "valid?" + }, + { + "iid": "10101010101010", + "name": "query_string" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "analyzers" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "analyzers_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Analysis\n", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "analyzers_count" + }, + { + "iid": "10101010101010", + "name": "analyzers" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Dataloader Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Query" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Query" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "query_string" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "authorized?" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "validate?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpSZWxhdGlvbg==\n" + }, + { + "iid": "10101010101010", + "str": "cmVzdWx0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QXV0aG9yOjpBY3RpdmVSZWNvcmRfUmVsYXRpb24sIC50b19zcWw9IlNFTEVD\nVCBcImF1dGhvcnNcIi4qIEZST00gXCJhdXRob3JzXCIi\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "sql" + }, + { + "iid": "10101010101010", + "name": "name\n" + }, + { + "iid": "10101010101010", + "name": "binds" + }, + { + "iid": "10101010101010", + "name": "type_casted_binds" + }, + { + "iid": "10101010101010", + "name": "async" + }, + { + "iid": "10101010101010", + "name": "allow_retry" + }, + { + "iid": "10101010101010", + "name": "connection" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJhdXRob3JzIi4qIEZST00gImF1dGhvcnMi\n" + }, + { + "iid": "10101010101010", + "str": "QXV0aG9yIExvYWQ=\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpDb25uZWN0aW9uQWRhcHRlcnM6OlNRTGl0ZTNBZGFw\ndGVy\n" + }, + { + "iid": "10101010101010", + "str": "Y29ubmVjdGlvbg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "analyzers" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "analyzers_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "transaction" + }, + { + "iid": "10101010101010", + "name": "affected_rows" + }, + { + "iid": "10101010101010", + "name": "row_count" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "record_count" + }, + { + "iid": "10101010101010", + "name": "class_name" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QXV0aG9y\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Author" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "t5", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "async" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "allow_retry" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "b2JqZWN0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDEsIG5hbWU6ICJXaWxsaWFtIFNoYWtlc3BlYXJlIj4=\n" + }, + { + "iid": "10101010101010", + "str": "V2lsbGlhbSBTaGFrZXNwZWFyZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "async" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "transaction" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpBc3NvY2lhdGlvblJlbGF0aW9u\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDEgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.0" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\nYXV0aG9yX2lkIiA9ID8gTElNSVQgPw==\n" + }, + { + "iid": "10101010101010", + "str": "Qm9vayBMb2Fk\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpSZWxhdGlvbjo6UXVlcnlBdHRyaWJ1dGU=\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.1" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlTW9kZWw6OkF0dHJpYnV0ZTo6V2l0aENhc3RWYWx1ZQ==\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "type_casted_binds.0" + }, + { + "iid": "10101010101010", + "name": "type_casted_binds.1" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "affected_rows" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vaw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "stars" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "user_id" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDIsIG5hbWU6ICJCZWF0cml4IFBvdHRlciI+\n" + }, + { + "iid": "10101010101010", + "str": "QmVhdHJpeCBQb3R0ZXI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "stars" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "10101010101010" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDIgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "affected_rows" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@type_for_column" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDMsIG5hbWU6ICJDaGFybGVzIERpY2tlbnMiPg==\n" + }, + { + "iid": "10101010101010", + "str": "Q2hhcmxlcyBEaWNrZW5z\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "id" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDMgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "affected_rows" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "type_casted_binds.2" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDQsIG5hbWU6ICLtlZzqsJUiPg==\n" + }, + { + "iid": "10101010101010", + "str": "7ZWc6rCV\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "type_casted_binds.3" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDQgTElNSVQgMiI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": "affected_rows" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Book" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxLCB0aXRsZTogIkEgTWlkc3VtbWVyIE5pZ2h0J3MgRHJl\nYW0iLCBhdXRob3JfaWQ6IDE+\n" + }, + { + "iid": "10101010101010", + "str": "QSBNaWRzdW1tZXIgTmlnaHQncyBEcmVhbQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJyZXZpZXdzIi4qIEZST00gInJldmlld3MiIFdIRVJFICJyZXZp\nZXdzIi4iYm9va19pZCIgPSA/IExJTUlUID8=\n" + }, + { + "iid": "10101010101010", + "str": "UmV2aWV3IExvYWQ=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiID0gPyBMSU1JVCA/\n" + }, + { + "iid": "10101010101010", + "str": "VXNlciBMb2Fk\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "VXNlcg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + }, + { + "iid": "10101010101010", + "name": "stars" + }, + { + "iid": "10101010101010", + "name": "user_id" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "dXNlcl9pZA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAxLCB1c2VybmFtZTogIm1hdHoiPg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAyLCB1c2VybmFtZTogInRlbmRlcmxvdmUiPg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "async" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Execution Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Exec Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyLCB0aXRsZTogIlRoZSBNZXJyeSBXaXZlcyBvZiBXaW5k\nc29yIiwgYXV0aG9yX2lkOiAxPg==\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIE1lcnJ5IFdpdmVzIG9mIFdpbmRzb3I=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Dataloader::ActiveRecordSource" + } + ], + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "@model_class" + }, + { + "iid": "10101010101010", + "name": "@find_by" + }, + { + "iid": "10101010101010", + "name": "@find_by_many" + }, + { + "iid": "10101010101010", + "name": "@type_for_column" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "aWQ=\n" + }, + { + "iid": "10101010101010", + "str": "QWN0aXZlUmVjb3JkOjpDb25uZWN0aW9uQWRhcHRlcnM6OlNRTGl0ZTNBZGFw\ndGVyOjpTUUxpdGUzSW50ZWdlcg==\n" + }, + { + "iid": "10101010101010", + "str": "QHR5cGVfZm9yX2NvbHVtbg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI6OlNRTGl0ZTNJbnRlZ2Vy\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\naWQiID0gPw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::AverageReview" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIGJvb2tzLmlkLCBBVkcoc3RhcnMpIGFzIGF2Z19yZXZpZXcgIEZS\nT00gImJvb2tzIiBJTk5FUiBKT0lOICJyZXZpZXdzIiBPTiAicmV2aWV3cyIu\nImJvb2tfaWQiID0gImJvb2tzIi4iaWQiIEdST1VQIEJZICJib29rcyIuImlk\nIg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::OtherBook" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiA9ID8gQU5EICJib29r\ncyIuImlkIiAhPSA/IEdST1VQIEJZICJib29rcyIuImF1dGhvcl9pZCI=\n" + }, + { + "iid": "10101010101010", + "str": "Qm9vayBNYXhpbXVt\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "stringValue": "Book-1" + } + ], + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "t5", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "id" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Resolve Type" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "resolved_type", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Resolve Type: Thing" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Resolve Type: Thing" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "resolved_type" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UGVyZmV0dG9TY2hlbWE6OkJvb2s=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "async" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxMCwgdGl0bGU6ICJUaGUgVGFsZSBvZiBQZXRlciBSYWJi\naXQiLCBhdXRob3JfaWQ6IDI+\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIFRhbGUgb2YgUGV0ZXIgUmFiYml0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiA5LCB0aXRsZTogIk90aGVsbG8iLCBhdXRob3JfaWQ6IDE+\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "stars" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxMSwgdGl0bGU6ICJUaGUgVGFsZSBvZiBTcXVpcnJlbCBO\ndXRraW4iLCBhdXRob3JfaWQ6IDI+\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIFRhbGUgb2YgU3F1aXJyZWwgTnV0a2lu\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiBJTiAoPywgPykgQU5E\nICJib29rcyIuImlkIiBOT1QgSU4gKD8sID8pIEdST1VQIEJZICJib29rcyIu\nImF1dGhvcl9pZCI=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.2" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMg==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.3" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + }, + { + "iid": "10101010101010", + "str": "YmluZHMuMw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "type_casted_binds.2" + }, + { + "iid": "10101010101010", + "name": "type_casted_binds.3" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "stars" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxOSwgdGl0bGU6ICJUaGUgUGlja3dpY2sgUGFwZXJzIiwg\nYXV0aG9yX2lkOiAzPg==\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIFBpY2t3aWNrIFBhcGVycw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxOCwgdGl0bGU6ICJUaGUgU3Rvcnkgb2YgYSBGaWVyY2Ug\nQmFkIFJhYmJpdCIsIGF1dGhvcl9pZDogMj4=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@find_by_many" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyMCwgdGl0bGU6ICJPbGl2ZXIgVHdpc3QiLCBhdXRob3Jf\naWQ6IDM+\n" + }, + { + "iid": "10101010101010", + "str": "T2xpdmVyIFR3aXN0\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@find_by_many" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyNiwgdGl0bGU6ICLsnpHrs4TtlZjsp4Ag7JWK64qU64uk\nIiwgYXV0aG9yX2lkOiA0Pg==\n" + }, + { + "iid": "10101010101010", + "str": "7J6R67OE7ZWY7KeAIOyViuuKlOuLpA==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyNSwgdGl0bGU6ICJHcmVhdCBFeHBlY3RhdGlvbnMiLCBh\ndXRob3JfaWQ6IDM+\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "binds.3" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyNywgdGl0bGU6ICLtnbAiLCBhdXRob3JfaWQ6IDQ+\n" + }, + { + "iid": "10101010101010", + "str": "7Z2w\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": "row_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "instantiation.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.2.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "binds.3" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.author", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Review" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.0.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAyOSwgdGl0bGU6ICLrhbjrnpHrrLTriqzsmIHsm5AiLCBh\ndXRob3JfaWQ6IDQ+\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.averageReview", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "async" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "allow_retry" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.0" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::Authorized" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ] + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.3.books.1.otherBook", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "t5.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "async" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "allow_retry" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "T3RoZWxsbw==\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "stars" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "user_id" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "stars" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "user_id" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "VGhlIFN0b3J5IG9mIGEgRmllcmNlIEJhZCBSYWJiaXQ=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@type_for_column" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@type_for_column" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "R3JlYXQgRXhwZWN0YXRpb25z\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "type_casted_binds.2" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "binds.3" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "type_casted_binds.2" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "64W4656R66y064qs7JiB7JuQ\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "name": "Create Source Fiber", + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010", + "10101010101010", + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiIElTIE5VTEw=\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "ActiveSupport::Notifications" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "allow_retry" + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "name": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "connection", + "stringValue": "name\n" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "name\n", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "sql", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "name": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.0.books.1.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.1.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.0.reviews.1.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "object" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "authors.1.books.1.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_COUNTER", + "trackUuid": "10101010101010", + "counterValue": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + } + ] +} \ No newline at end of file