diff --git a/lib/graphql/tracing/detailed_trace.rb b/lib/graphql/tracing/detailed_trace.rb index 035ce7ad8a..763e0ad1dd 100644 --- a/lib/graphql/tracing/detailed_trace.rb +++ b/lib/graphql/tracing/detailed_trace.rb @@ -9,8 +9,12 @@ module Tracing # When `MySchema.detailed_trace?(query)` returns `true`, a profiler-specific `trace_mode: ...` will be used for the query, # overriding the one in `context[:trace_mode]`. # + # By default, the detailed tracer calls `.inspect` on application objects returned from fields. You can customize + # this behavior by extending {DetailedTrace} and overriding {#inspect_object}. You can opt out of debug annotations + # entirely with `use ..., debug: false` or for a single query with `context: { detailed_trace_debug: false }`. + # # __Redis__: The sampler stores its results in a provided Redis database. Depending on your needs, - # You can configure this database to retail all data (persistent) or to expire data according to your rules. + # You can configure this database to retain all data (persistent) or to expire data according to your rules. # If you need to save traces indefinitely, you can download them from Perfetto after opening them there. # # @example Adding the sampler to your schema @@ -27,10 +31,29 @@ module Tracing # end # # @see Graphql::Dashboard GraphQL::Dashboard for viewing stored results + # + # @example Customizing debug output in traces + # class CustomDetailedTrace < GraphQL::Tracing::DetailedTrace + # def inspect_object(object) + # if object.is_a?(SomeThing) + # # handle it specially ... + # else + # super + # end + # end + # end + # + # @example disabling debug annotations completely + # use DetailedTrace, debug: false, ... + # + # @example disabling debug annotations for one query + # MySchema.execute(query_str, context: { detailed_trace_debug: false }) + # class DetailedTrace # @param redis [Redis] If provided, profiles will be stored in Redis for later review # @param limit [Integer] A maximum number of profiles to store - def self.use(schema, trace_mode: :profile_sample, memory: false, redis: nil, limit: nil) + # @param debug [Boolean] if `false`, it won't create `debug` annotations in Perfetto traces (reduces overhead) + def self.use(schema, trace_mode: :profile_sample, memory: false, debug: debug?, redis: nil, limit: nil) storage = if redis RedisBackend.new(redis: redis, limit: limit) elsif memory @@ -38,13 +61,15 @@ def self.use(schema, trace_mode: :profile_sample, memory: false, redis: nil, lim else raise ArgumentError, "Pass `redis: ...` to store traces in Redis for later review" end - schema.detailed_trace = self.new(storage: storage, trace_mode: trace_mode) + detailed_trace = self.new(storage: storage, trace_mode: trace_mode, debug: debug) + schema.detailed_trace = detailed_trace schema.trace_with(PerfettoTrace, mode: trace_mode, save_profile: true) end - def initialize(storage:, trace_mode:) + def initialize(storage:, trace_mode:, debug:) @storage = storage @trace_mode = trace_mode + @debug = debug end # @return [Symbol] The trace mode to use when {Schema.detailed_trace?} returns `true` @@ -55,6 +80,11 @@ def save_trace(operation_name, duration_ms, begin_ms, trace_data) @storage.save_trace(operation_name, duration_ms, begin_ms, trace_data) end + # @return [Boolean] + def debug? + @debug + end + # @param last [Integer] # @param before [Integer] Timestamp in milliseconds since epoch # @return [Enumerable] @@ -77,6 +107,24 @@ def delete_all_traces @storage.delete_all_traces end + def inspect_object(object) + self.class.inspect_object(object) + end + + def self.inspect_object(object) + if defined?(ActiveRecord::Relation) && object.is_a?(ActiveRecord::Relation) + "#{object.class}, .to_sql=#{object.to_sql.inspect}" + else + object.inspect + end + end + + # Default debug setting + # @return [true] + def self.debug? + true + end + class StoredTrace def initialize(id:, operation_name:, duration_ms:, begin_ms:, trace_data:) @id = id diff --git a/lib/graphql/tracing/perfetto_trace.rb b/lib/graphql/tracing/perfetto_trace.rb index 82a1036818..ee14f8bc0c 100644 --- a/lib/graphql/tracing/perfetto_trace.rb +++ b/lib/graphql/tracing/perfetto_trace.rb @@ -60,11 +60,37 @@ def self.included(_trace_class) DA_FETCH_KEYS_IID = 13 DA_STR_VAL_NIL_IID = 14 + REVERSE_DEBUG_NAME_LOOKUP = { + DA_OBJECT_IID => "object", + DA_RESULT_IID => "result", + DA_ARGUMENTS_IID => "arguments", + DA_FETCH_KEYS_IID => "fetch keys", + } + + DEBUG_INSPECT_CATEGORY_IIDS = [15] + DA_DEBUG_INSPECT_CLASS_IID = 16 + DEBUG_INSPECT_EVENT_NAME_IID = 17 + DA_DEBUG_INSPECT_FOR_IID = 18 + # @param active_support_notifications_pattern [String, RegExp, false] A filter for `ActiveSupport::Notifications`, if it's present. Or `false` to skip subscribing. def initialize(active_support_notifications_pattern: nil, save_profile: false, **_rest) super @active_support_notifications_pattern = active_support_notifications_pattern @save_profile = save_profile + + query = if @multiplex + @multiplex.queries.first + else + @query # could still be nil in some initializations + end + + @detailed_trace = query&.schema&.detailed_trace || DetailedTrace + @create_debug_annotations = if (ctx = query&.context).nil? || (ctx_debug = ctx[:detailed_trace_debug]).nil? + @detailed_trace.debug? + else + ctx_debug + end + Fiber[:graphql_flow_stack] = nil @sequence_id = object_id @pid = Process.pid @@ -110,6 +136,10 @@ def initialize(active_support_notifications_pattern: nil, save_profile: false, * @objects_counter_id = :objects_counter.object_id @fibers_counter_id = :fibers_counter.object_id @fields_counter_id = :fields_counter.object_id + @counts_objects = [@objects_counter_id] + @counts_objects_and_fields = [@objects_counter_id, @fields_counter_id] + @counts_fibers = [@fibers_counter_id] + @counts_fibers_and_objects = [@fibers_counter_id, @objects_counter_id] @begin_validate = nil @begin_time = nil @packets = [] @@ -132,16 +162,19 @@ def initialize(active_support_notifications_pattern: nil, save_profile: false, * EventCategory.new(name: "ActiveSupport::Notifications", iid: ACTIVE_SUPPORT_NOTIFICATIONS_CATEGORY_IIDS.first), EventCategory.new(name: "Authorized", iid: AUTHORIZED_CATEGORY_IIDS.first), EventCategory.new(name: "Resolve Type", iid: RESOLVE_TYPE_CATEGORY_IIDS.first), + EventCategory.new(name: "Debug Inspect", iid: DEBUG_INSPECT_CATEGORY_IIDS.first), ], debug_annotation_names: [ - DebugAnnotationName.new(name: "object", iid: DA_OBJECT_IID), - DebugAnnotationName.new(name: "arguments", iid: DA_ARGUMENTS_IID), - DebugAnnotationName.new(name: "result", iid: DA_RESULT_IID), - DebugAnnotationName.new(name: "fetch keys", iid: DA_FETCH_KEYS_IID), + *REVERSE_DEBUG_NAME_LOOKUP.map { |(iid, name)| DebugAnnotationName.new(name: name, iid: iid) }, + DebugAnnotationName.new(name: "inspect instance of", iid: DA_DEBUG_INSPECT_CLASS_IID), + DebugAnnotationName.new(name: "inspecting for", iid: DA_DEBUG_INSPECT_FOR_IID) ], debug_annotation_string_values: [ InternedString.new(str: "(nil)", iid: DA_STR_VAL_NIL_IID), ], + event_names: [ + EventName.new(name: "#{(@detailed_trace.is_a?(Class) ? @detailed_trace : @detailed_trace.class).name}#inspect_object", iid: DEBUG_INSPECT_EVENT_NAME_IID) + ], ), trusted_packet_sequence_id: @sequence_id, sequence_flags: 2, @@ -180,11 +213,9 @@ def execute_multiplex(multiplex:) @packets << trace_packet( type: TrackEvent::Type::TYPE_SLICE_BEGIN, track_uuid: fid, - name: "Multiplex", - debug_annotations: [ - payload_to_debug("query_string", multiplex.queries.map(&:sanitized_query_string).join("\n\n")) - ] - ) + name: "Multiplex" + ) { [ payload_to_debug("query_string", multiplex.queries.map(&:sanitized_query_string).join("\n\n")) ] } + result = super @packets << trace_packet( @@ -209,7 +240,7 @@ def begin_execute_field(field, object, arguments, query) track_uuid: fid, name: query.context.current_path.join("."), category_iids: FIELD_EXECUTE_CATEGORY_IIDS, - extra_counter_track_uuids: [@objects_counter_id], + extra_counter_track_uuids: @counts_objects, extra_counter_values: [count_allocations], ) @packets << packet @@ -218,19 +249,23 @@ def begin_execute_field(field, object, arguments, query) end def end_execute_field(field, object, arguments, query, app_result) + end_ts = ts start_field = fiber_flow_stack.pop - 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, arguments, iid: DA_ARGUMENTS_IID), - payload_to_debug(nil, app_result, iid: DA_RESULT_IID, intern_value: true) - ] - }) + 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, arguments, iid: DA_ARGUMENTS_IID), + payload_to_debug(nil, app_result, iid: DA_RESULT_IID, intern_value: true) + ] + }) + end @packets << trace_packet( + timestamp: end_ts, type: TrackEvent::Type::TYPE_SLICE_END, track_uuid: fid, - extra_counter_track_uuids: [@objects_counter_id, @fields_counter_id], + extra_counter_track_uuids: @counts_objects_and_fields, extra_counter_values: [count_allocations, count_fields], ) super @@ -240,22 +275,24 @@ def begin_analyze_multiplex(m, analyzers) @packets << trace_packet( type: TrackEvent::Type::TYPE_SLICE_BEGIN, track_uuid: fid, - extra_counter_track_uuids: [@objects_counter_id], + extra_counter_track_uuids: @counts_objects, extra_counter_values: [count_allocations], - name: "Analysis", - debug_annotations: [ - payload_to_debug("analyzers_count", analyzers.size), - payload_to_debug("analyzers", analyzers), - ] - ) + name: "Analysis") { + [ + payload_to_debug("analyzers_count", analyzers.size), + payload_to_debug("analyzers", analyzers), + ] + } super end def end_analyze_multiplex(m, analyzers) + end_ts = ts @packets << trace_packet( + timestamp: end_ts, type: TrackEvent::Type::TYPE_SLICE_END, track_uuid: fid, - extra_counter_track_uuids: [@objects_counter_id], + extra_counter_track_uuids: @counts_objects, extra_counter_values: [count_allocations], ) super @@ -265,50 +302,57 @@ def parse(query_string:) @packets << trace_packet( type: TrackEvent::Type::TYPE_SLICE_BEGIN, track_uuid: fid, - extra_counter_track_uuids: [@objects_counter_id], + extra_counter_track_uuids: @counts_objects, extra_counter_values: [count_allocations], name: "Parse" ) result = super + end_ts = ts @packets << trace_packet( + timestamp: end_ts, type: TrackEvent::Type::TYPE_SLICE_END, track_uuid: fid, - extra_counter_track_uuids: [@objects_counter_id], + extra_counter_track_uuids: @counts_objects, extra_counter_values: [count_allocations], ) result end def begin_validate(query, validate) - @packets << @begin_validate = trace_packet( + @begin_validate = trace_packet( type: TrackEvent::Type::TYPE_SLICE_BEGIN, track_uuid: fid, - extra_counter_track_uuids: [@objects_counter_id], + extra_counter_track_uuids: @counts_objects, extra_counter_values: [count_allocations], - name: "Validate", - debug_annotations: [ - payload_to_debug("validate?", validate), - ] - ) + name: "Validate") { + [payload_to_debug("validate?", validate)] + } + + @packets << @begin_validate super end def end_validate(query, validate, validation_errors) + end_ts = ts @packets << trace_packet( + timestamp: end_ts, type: TrackEvent::Type::TYPE_SLICE_END, track_uuid: fid, - extra_counter_track_uuids: [@objects_counter_id], + extra_counter_track_uuids: @counts_objects, extra_counter_values: [count_allocations], ) - @begin_validate.track_event = dup_with( - @begin_validate.track_event, - { - debug_annotations: [ - @begin_validate.track_event.debug_annotations.first, - payload_to_debug("valid?", validation_errors.empty?) - ] - } - ) + + if @create_debug_annotations + new_bv_track_event = dup_with( + @begin_validate.track_event, { + debug_annotations: [ + @begin_validate.track_event.debug_annotations.first, + payload_to_debug("valid?", validation_errors.empty?) + ] + } + ) + @begin_validate.track_event = new_bv_track_event + end super end @@ -318,7 +362,7 @@ def dataloader_spawn_execution_fiber(jobs) track_uuid: fid, name: "Create Execution Fiber", category_iids: DATALOADER_CATEGORY_IIDS, - extra_counter_track_uuids: [@fibers_counter_id, @objects_counter_id], + extra_counter_track_uuids: @counts_fibers_and_objects, extra_counter_values: [count_fibers(1), count_allocations] ) @packets << track_descriptor_packet(@did, fid, "Exec Fiber ##{fid}") @@ -331,7 +375,7 @@ def dataloader_spawn_source_fiber(pending_sources) track_uuid: fid, name: "Create Source Fiber", category_iids: DATALOADER_CATEGORY_IIDS, - extra_counter_track_uuids: [@fibers_counter_id, @objects_counter_id], + extra_counter_track_uuids: @counts_fibers_and_objects, extra_counter_values: [count_fibers(1), count_allocations] ) @packets << track_descriptor_packet(@did, fid, "Source Fiber ##{fid}") @@ -385,7 +429,7 @@ def dataloader_fiber_exit track_uuid: fid, name: "Fiber Exit", category_iids: DATALOADER_CATEGORY_IIDS, - extra_counter_track_uuids: [@fibers_counter_id], + extra_counter_track_uuids: @counts_fibers, extra_counter_values: [count_fibers(-1)], ) super @@ -415,31 +459,34 @@ def begin_dataloader_source(source) fds = @flow_ids[source] fds_copy = fds.dup fds.clear + packet = trace_packet( type: TrackEvent::Type::TYPE_SLICE_BEGIN, track_uuid: fid, name_iid: @source_name_iids[source.class], category_iids: DATALOADER_CATEGORY_IIDS, flow_ids: fds_copy, - extra_counter_track_uuids: [@objects_counter_id], - extra_counter_values: [count_allocations], - debug_annotations: [ - payload_to_debug(nil, source.pending.values, iid: DA_FETCH_KEYS_IID, intern_value: true), - *(source.instance_variables - [:@pending, :@fetching, :@results, :@dataloader]).map { |iv| - payload_to_debug(iv.to_s, source.instance_variable_get(iv), intern_value: true) - } - ] - ) + extra_counter_track_uuids: @counts_objects, + extra_counter_values: [count_allocations]) { + [ + payload_to_debug(nil, source.pending.values, iid: DA_FETCH_KEYS_IID, intern_value: true), + *(source.instance_variables - [:@pending, :@fetching, :@results, :@dataloader]).map { |iv| + payload_to_debug(iv.to_s, source.instance_variable_get(iv), intern_value: true) + } + ] + } @packets << packet fiber_flow_stack << packet super end def end_dataloader_source(source) + end_ts = ts @packets << trace_packet( + timestamp: end_ts, type: TrackEvent::Type::TYPE_SLICE_END, track_uuid: fid, - extra_counter_track_uuids: [@objects_counter_id], + extra_counter_track_uuids: @counts_objects, extra_counter_values: [count_allocations], ) fiber_flow_stack.pop @@ -451,7 +498,7 @@ def begin_authorized(type, obj, ctx) type: TrackEvent::Type::TYPE_SLICE_BEGIN, track_uuid: fid, category_iids: AUTHORIZED_CATEGORY_IIDS, - extra_counter_track_uuids: [@objects_counter_id], + extra_counter_track_uuids: @counts_objects, extra_counter_values: [count_allocations], name_iid: @auth_name_iids[type], ) @@ -461,14 +508,18 @@ def begin_authorized(type, obj, ctx) end def end_authorized(type, obj, ctx, is_authorized) + end_ts = ts @packets << trace_packet( + timestamp: end_ts, type: TrackEvent::Type::TYPE_SLICE_END, track_uuid: fid, - extra_counter_track_uuids: [@objects_counter_id], + extra_counter_track_uuids: @counts_objects, extra_counter_values: [count_allocations], ) beg_auth = fiber_flow_stack.pop - beg_auth.track_event = dup_with(beg_auth.track_event, { debug_annotations: [payload_to_debug("authorized?", is_authorized)] }) + if @create_debug_annotations + beg_auth.track_event = dup_with(beg_auth.track_event, { debug_annotations: [payload_to_debug("authorized?", is_authorized)] }) + end super end @@ -477,7 +528,7 @@ def begin_resolve_type(type, value, context) type: TrackEvent::Type::TYPE_SLICE_BEGIN, track_uuid: fid, category_iids: RESOLVE_TYPE_CATEGORY_IIDS, - extra_counter_track_uuids: [@objects_counter_id], + extra_counter_track_uuids: @counts_objects, extra_counter_values: [count_allocations], name_iid: @resolve_type_name_iids[type], ) @@ -487,14 +538,18 @@ def begin_resolve_type(type, value, context) end def end_resolve_type(type, value, context, resolved_type) + end_ts = ts @packets << trace_packet( + timestamp: end_ts, type: TrackEvent::Type::TYPE_SLICE_END, track_uuid: fid, - extra_counter_track_uuids: [@objects_counter_id], + extra_counter_track_uuids: @counts_objects, extra_counter_values: [count_allocations], ) rt_begin = fiber_flow_stack.pop - rt_begin.track_event = dup_with(rt_begin.track_event, { debug_annotations: [payload_to_debug("resolved_type", resolved_type, intern_value: true)] }) + if @create_debug_annotations + rt_begin.track_event = dup_with(rt_begin.track_event, { debug_annotations: [payload_to_debug("resolved_type", resolved_type, intern_value: true)] }) + end super end @@ -546,7 +601,6 @@ def debug_annotation(iid, value_key, value) def payload_to_debug(k, v, iid: nil, intern_value: false) if iid.nil? iid = @interned_da_name_ids[k] - k = nil end case v when String @@ -578,15 +632,41 @@ def payload_to_debug(k, v, iid: nil, intern_value: false) when Symbol debug_annotation(iid, :string_value, v.inspect) when Array - debug_annotation(iid, :array_values, v.map { |v2| payload_to_debug(nil, v2, intern_value: intern_value) }.compact) + debug_annotation(iid, :array_values, v.each_with_index.map { |v2, idx| payload_to_debug((k ? "#{k}.#{idx}" : String(idx)), v2, intern_value: intern_value) }.compact) when Hash debug_annotation(iid, :dict_entries, v.map { |k2, v2| payload_to_debug(k2, v2, intern_value: intern_value) }.compact) else - debug_str = if defined?(ActiveRecord::Relation) && v.is_a?(ActiveRecord::Relation) - "#{v.class}, .to_sql=#{v.to_sql.inspect}" - else - v.inspect + class_name_iid = @interned_da_string_values[v.class.name] + da = [ + debug_annotation(DA_DEBUG_INSPECT_CLASS_IID, :string_value_iid, class_name_iid), + ] + if k + k_str_value_iid = @interned_da_string_values[k] + da << debug_annotation(DA_DEBUG_INSPECT_FOR_IID, :string_value_iid, k_str_value_iid) + elsif iid + k = REVERSE_DEBUG_NAME_LOOKUP[iid] || @interned_da_name_ids.key(iid) + if k.nil? + da << debug_annotation(DA_DEBUG_INSPECT_FOR_IID, :string_value_iid, DA_STR_VAL_NIL_IID) + else + k_str_value_iid = @interned_da_string_values[k] + da << debug_annotation(DA_DEBUG_INSPECT_FOR_IID, :string_value_iid, k_str_value_iid) + end end + + @packets << trace_packet( + type: TrackEvent::Type::TYPE_SLICE_BEGIN, + track_uuid: fid, + name_iid: DEBUG_INSPECT_EVENT_NAME_IID, + category_iids: DEBUG_INSPECT_CATEGORY_IIDS, + extra_counter_track_uuids: @counts_objects, + extra_counter_values: [count_allocations], + debug_annotations: da, + ) + debug_str = @detailed_trace.inspect_object(v) + @packets << trace_packet( + type: TrackEvent::Type::TYPE_SLICE_END, + track_uuid: fid, + ) if intern_value str_iid = @interned_da_string_values[debug_str] debug_annotation(iid, :string_value_iid, str_iid) @@ -622,10 +702,14 @@ def fiber_flow_stack Fiber[:graphql_flow_stack] ||= [] end - def trace_packet(event_attrs) + def trace_packet(timestamp: ts, **event_attrs) + if @create_debug_annotations && block_given? + event_attrs[:debug_annotations] = yield + end + track_event = TrackEvent.new(event_attrs) TracePacket.new( - timestamp: ts, - track_event: TrackEvent.new(event_attrs), + timestamp: timestamp, + track_event: track_event, trusted_packet_sequence_id: @sequence_id, sequence_flags: 2, interned_data: new_interned_data @@ -690,9 +774,9 @@ def unsubscribe_from_active_support_notifications def subscribe_to_active_support_notifications(pattern) @as_subscriber = ActiveSupport::Notifications.monotonic_subscribe(pattern) do |name, start, finish, id, payload| - metadata = payload.map { |k, v| payload_to_debug(k, v, intern_value: true) } - metadata.compact! - te = if metadata.empty? + metadata = @create_debug_annotations ? payload.map { |k, v| payload_to_debug(String(k), v, intern_value: true) } : nil + metadata&.compact! + te = if metadata.nil? || metadata.empty? TrackEvent.new( type: TrackEvent::Type::TYPE_SLICE_BEGIN, track_uuid: fid, @@ -721,7 +805,7 @@ def subscribe_to_active_support_notifications(pattern) type: TrackEvent::Type::TYPE_SLICE_END, track_uuid: fid, name: name, - extra_counter_track_uuids: [@objects_counter_id], + extra_counter_track_uuids: @counts_objects, extra_counter_values: [count_allocations] ), trusted_packet_sequence_id: @sequence_id, diff --git a/spec/graphql/dataloader/snapshots/example.json b/spec/graphql/dataloader/snapshots/example.json index 1117679b89..0bd66ce0dd 100644 --- a/spec/graphql/dataloader/snapshots/example.json +++ b/spec/graphql/dataloader/snapshots/example.json @@ -34,6 +34,16 @@ { "iid": "10101010101010", "name": "Resolve Type" + }, + { + "iid": "10101010101010", + "name": "Debug Inspect" + } + ], + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" } ], "debugAnnotationNames": [ @@ -43,15 +53,23 @@ }, { "iid": "10101010101010", - "name": "arguments" + "name": "result" }, { "iid": "10101010101010", - "name": "result" + "name": "arguments" }, { "iid": "10101010101010", "name": "fetch keys" + }, + { + "iid": "10101010101010", + "name": "inspect instance of" + }, + { + "iid": "10101010101010", + "name": "inspecting for" } ], "debugAnnotationStringValues": [ @@ -697,7 +715,8 @@ ], "debugAnnotationNames": [ { - "iid": "10101010101010" + "iid": "10101010101010", + "name": "10101010101010" }, { "iid": "10101010101010", diff --git a/spec/graphql/tracing/perfetto_trace_spec.rb b/spec/graphql/tracing/perfetto_trace_spec.rb index 3f7c9ed985..140197ace1 100644 --- a/spec/graphql/tracing/perfetto_trace_spec.rb +++ b/spec/graphql/tracing/perfetto_trace_spec.rb @@ -5,6 +5,7 @@ if testing_rails? describe GraphQL::Tracing::PerfettoTrace do include PerfettoSnapshot + class PerfettoSchema < GraphQL::Schema class BaseObject < GraphQL::Schema::Object end @@ -113,6 +114,10 @@ def crash def self.resolve_type(type, obj, ctx) self.const_get(obj.class.name) end + + def self.detailed_trace?(q) + true + end end it "traces fields, dataloader, and activesupport notifications" do @@ -169,5 +174,24 @@ def self.resolve_type(type, obj, ctx) end refute ActiveSupport::Notifications.notifier.listening?("event.nonsense") end + + it "doesn't create DebugAnnotations when `debug: false` or `detailed_trace_debug: false`" do + res = PerfettoSchema.execute("{ authors { name } }") + json = res.context.query.current_trace.write(file: nil, debug_json: true) + assert_includes json, "debugAnnotations", "it includes them by default" + + res = PerfettoSchema.execute("{ authors { name } }", context: { detailed_trace_debug: false }) + json = res.context.query.current_trace.write(file: nil, debug_json: true) + assert_nil json["debugAnnotations"], "doesn't write debug annotations with detailed_trace_debug: false" + + # Ususally this would be `use DetailedTrace, debug: false` + PerfettoSchema.detailed_trace = GraphQL::Tracing::DetailedTrace.new(storage: nil, trace_mode: nil, debug: false) + res = PerfettoSchema.execute("{ authors { name } }") + assert_equal 4, res["data"]["authors"].size + json = res.context.query.current_trace.write(file: nil, debug_json: true) + assert_nil json["debugAnnotations"], "doesn't write them when top-level setting is false " + ensure + PerfettoSchema.detailed_trace = nil + end end end diff --git a/spec/graphql/tracing/snapshots/example-rails-7-1.json b/spec/graphql/tracing/snapshots/example-rails-7-1.json deleted file mode 100644 index f54d737abc..0000000000 --- a/spec/graphql/tracing/snapshots/example-rails-7-1.json +++ /dev/null @@ -1,18795 +0,0 @@ -{ - "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" - } - ], - "debugAnnotationNames": [ - { - "iid": "10101010101010", - "name": "object" - }, - { - "iid": "10101010101010", - "name": "arguments" - }, - { - "iid": "10101010101010", - "name": "result" - }, - { - "iid": "10101010101010", - "name": "fetch keys" - } - ], - "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": "validate?" - } - ], - "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": { - "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": [ - "ActiveSupport::Notifications" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", - "name": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "query_string" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": "valid?" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "name": "type_casted_binds" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "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": "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": "analyzers" - }, - { - "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": "authorized?" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "sql" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.0.name", - "extraCounterTrackUuids": [ - "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": "authorized?" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "name\n" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.0.books", - "extraCounterTrackUuids": [ - "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": [ - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationNames": [ - { - "iid": "10101010101010" - } - ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\nYXV0aG9yX2lkIiA9ID8gTElNSVQgPw==\n" - }, - { - "iid": "10101010101010", - "str": "Qm9vayBMb2Fk\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": "connection" - }, - { - "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": "record_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "class_name" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.1.name", - "extraCounterTrackUuids": [ - "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": "record_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.1.books", - "extraCounterTrackUuids": [ - "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": [ - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": "connection" - }, - { - "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": { - "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": { - "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": [ - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": "connection" - }, - { - "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": null - }, - { - "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": { - "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": null - }, - { - "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": { - "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": [ - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": "connection" - }, - { - "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": { - "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", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.0.books.0.reviews", - "extraCounterTrackUuids": [ - "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEgTElNSVQgMiI=\n" - } - ] - }, - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJyZXZpZXdzIi4qIEZST00gInJldmlld3MiIFdIRVJFICJyZXZp\nZXdzIi4iYm9va19pZCIgPSA/IExJTUlUID8=\n" - }, - { - "iid": "10101010101010", - "str": "UmV2aWV3IExvYWQ=\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": 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": [ - "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": "authorized?" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.0.books.0.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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": { - "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", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.0.books.1.reviews", - "extraCounterTrackUuids": [ - "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIgTElNSVQgMiI=\n" - } - ] - }, - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": 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": [ - "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": [ - "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": "connection" - }, - { - "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": { - "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": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI6OlNRTGl0ZTNJbnRlZ2Vy\n" - } - ] - }, - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\naWQiID0gPw==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\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": "connection" - }, - { - "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" - ], - "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" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "PerfettoSchema::AverageReview" - } - ] - }, - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "name": "type_casted_binds" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUIGJvb2tzLmlkLCBBVkcoc3RhcnMpIGFzIGF2Z19yZXZpZXcgIEZS\nT00gImJvb2tzIiBJTk5FUiBKT0lOICJyZXZpZXdzIiBPTiAicmV2aWV3cyIu\nImJvb2tfaWQiID0gImJvb2tzIi4iaWQiIEdST1VQIEJZICJib29rcyIuImlk\nIg==\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": "connection" - }, - { - "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" - ], - "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" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "PerfettoSchema::OtherBook" - } - ] - }, - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiA9ID8gQU5EICJib29r\ncyIuImlkIiAhPSA/IEdST1VQIEJZICJib29rcyIuImF1dGhvcl9pZCI=\n" - }, - { - "iid": "10101010101010", - "str": "Qm9vayBNYXhpbXVt\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\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": { - "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": [ - "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": "connection" - }, - { - "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": [ - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\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": "connection" - }, - { - "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": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationNames": [ - { - "iid": "10101010101010", - "name": "id" - } - ] - }, - "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": "authorized?" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.0.books.1.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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": { - "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": { - "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", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.1.books.0.reviews", - "extraCounterTrackUuids": [ - "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEwIExJTUlUIDIi\n" - } - ] - }, - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": 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": [ - "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": { - "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": "record_count" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.1.books.0.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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": { - "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": { - "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", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.1.books.1.reviews", - "extraCounterTrackUuids": [ - "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDExIExJTUlUIDIi\n" - } - ] - }, - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": 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": [ - "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": [ - "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": [ - "ActiveSupport::Notifications" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", - "name": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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": "connection" - }, - { - "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" - ], - "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": [ - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiBJTiAoPywgPykgQU5E\nICJib29rcyIuImlkIiBOT1QgSU4gKD8sID8pIEdST1VQIEJZICJib29rcyIu\nImF1dGhvcl9pZCI=\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": { - "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": [ - "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": "connection" - }, - { - "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": [ - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\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": "connection" - }, - { - "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": { - "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": "record_count" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.1.books.1.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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": { - "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": { - "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", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.2.books.0.reviews", - "extraCounterTrackUuids": [ - "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDE5IExJTUlUIDIi\n" - } - ] - }, - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": 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": [ - "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": { - "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": { - "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": { - "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": { - "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", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.2.books.1.reviews", - "extraCounterTrackUuids": [ - "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIwIExJTUlUIDIi\n" - } - ] - }, - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": 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": [ - "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": [ - "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": [ - "ActiveSupport::Notifications" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", - "name": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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": "connection" - }, - { - "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" - ], - "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": [ - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": { - "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": [ - "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": "connection" - }, - { - "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": [ - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\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": "connection" - }, - { - "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": { - "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": { - "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": { - "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": { - "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", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.3.books.0.reviews", - "extraCounterTrackUuids": [ - "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI2IExJTUlUIDIi\n" - } - ] - }, - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": 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": [ - "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": { - "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": null - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.3.books.0.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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": { - "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": { - "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", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.3.books.1.reviews", - "extraCounterTrackUuids": [ - "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI3IExJTUlUIDIi\n" - } - ] - }, - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": 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": [ - "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": [ - "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": [ - "ActiveSupport::Notifications" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", - "name": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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": "connection" - }, - { - "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" - ], - "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": [ - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": { - "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": [ - "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": "connection" - }, - { - "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": [ - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\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": "connection" - }, - { - "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": { - "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": null - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.3.books.1.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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": { - "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": { - "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": { - "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": "authorized?" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "sql" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.0.books.0.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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": [ - "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": [ - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\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": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "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", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "PerfettoSchema::Authorized" - } - ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAxPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDIsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAxPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDUsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAyPg==\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": [ - "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": { - "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" - ], - "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": [ - "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", - "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": { - "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": "authorized?" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "sql" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.0.books.1.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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", - "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": [ - "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": [ - "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", - "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": { - "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": "record_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "class_name" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.1.books.0.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "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", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDYsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAyPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDM3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDM4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDQxLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTE+\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": [ - "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": [ - "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": [ - "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": [ - "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", - "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": { - "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": "record_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "class_name" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.1.books.1.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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", - "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": [ - "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": [ - "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", - "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": { - "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": { - "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": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "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", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDQyLCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTE+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDczLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTk+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc0LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTk+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMjA+\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": [ - "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": [ - "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": [ - "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": [ - "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", - "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": { - "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": { - "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", - "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": [ - "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": [ - "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", - "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": { - "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": null - }, - { - "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": { - "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": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "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", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMjA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwMSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI2Pg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwMiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI2Pg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwNSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI3Pg==\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": [ - "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": [ - "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": [ - "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": [ - "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", - "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": { - "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.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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": { - "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": { - "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", - "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": { - "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.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", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "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": { - "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.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", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "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": { - "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.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": [ - "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", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" - } - ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "VXNlcg==\n" - } - ] - }, - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiIElOICg/LCA/KQ==\n" - }, - { - "iid": "10101010101010", - "str": "VXNlciBMb2Fk\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": 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": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "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::Authorized" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwNiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI3Pg==\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": [ - "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": [ - "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", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "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": { - "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.0.books.1.reviews.1.user", - "extraCounterTrackUuids": [ - "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": [ - "Authorized" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" - } - ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "Authorize: User" - } - ] - }, - "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", - "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": { - "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.reviews.0.user", - "extraCounterTrackUuids": [ - "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": "IzxVc2VyIGlkOiAxLCB1c2VybmFtZTogIm1hdHoiPg==\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: User" - }, - "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", - "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": { - "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.reviews.1.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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: User" - }, - "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", - "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": { - "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.reviews.0.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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: User" - }, - "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", - "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": { - "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.reviews.1.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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: User" - }, - "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", - "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": { - "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.reviews.0.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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: User" - }, - "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", - "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": { - "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.reviews.1.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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: User" - }, - "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", - "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": { - "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.reviews.0.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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: User" - }, - "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", - "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": { - "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.reviews.1.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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: User" - }, - "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", - "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": { - "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.reviews.0.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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: User" - }, - "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", - "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": { - "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.reviews.1.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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: User" - }, - "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", - "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": { - "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.reviews.0.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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: User" - }, - "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", - "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": { - "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.reviews.1.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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: User" - }, - "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.reviews.1.user.username", - "extraCounterTrackUuids": [ - "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": "dGVuZGVybG92ZQ==\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.reviews.0.user.username", - "extraCounterTrackUuids": [ - "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": "bWF0eg==\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.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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", - "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.reviews.0.user", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "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: User" - }, - "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.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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", - "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.reviews.1.user", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "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: User" - }, - "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.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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", - "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.reviews.0.user", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "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: User" - }, - "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.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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-7-0.json b/spec/graphql/tracing/snapshots/example-rails-7-2.json similarity index 56% rename from spec/graphql/tracing/snapshots/example-rails-7-0.json rename to spec/graphql/tracing/snapshots/example-rails-7-2.json index 7e28d59bea..e738251dd8 100644 --- a/spec/graphql/tracing/snapshots/example-rails-7-0.json +++ b/spec/graphql/tracing/snapshots/example-rails-7-2.json @@ -34,6 +34,16 @@ { "iid": "10101010101010", "name": "Resolve Type" + }, + { + "iid": "10101010101010", + "name": "Debug Inspect" + } + ], + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" } ], "debugAnnotationNames": [ @@ -43,15 +53,23 @@ }, { "iid": "10101010101010", - "name": "arguments" + "name": "result" }, { "iid": "10101010101010", - "name": "result" + "name": "arguments" }, { "iid": "10101010101010", "name": "fetch keys" + }, + { + "iid": "10101010101010", + "name": "inspect instance of" + }, + { + "iid": "10101010101010", + "name": "inspecting for" } ], "debugAnnotationStringValues": [ @@ -430,7 +448,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "validate?" + "stringValue": "query_string" } ], "type": "TYPE_SLICE_BEGIN", @@ -453,6 +471,64 @@ }, "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, @@ -483,53 +559,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", - "name": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "analyzers_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "query_string" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": "valid?" + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { "debugAnnotationNames": [ @@ -573,7 +631,104 @@ }, { "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI=\n" + "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" } ] }, @@ -610,7 +765,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "analyzers" + "stringValue": "binds" }, { "nameIid": "10101010101010", @@ -943,13 +1098,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "authorized?" + "stringValue": "statement_name" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "sql" + "stringValue": "async" } ], "type": "TYPE_SLICE_BEGIN", @@ -964,6 +1119,60 @@ }, "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, @@ -1012,13 +1221,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "authorized?" + "stringValue": "statement_name" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "name\n" + "stringValue": "transaction" } ], "type": "TYPE_SLICE_BEGIN", @@ -1033,132 +1242,40 @@ }, "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": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", + "name": "inspect instance of", "stringValue": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationNames": [ - { - "iid": "10101010101010" - } + "extraCounterValues": [ + "10101010101010" ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\nYXV0aG9yX2lkIiA9ID8gTElNSVQgPw==\n" - }, - { - "iid": "10101010101010", - "str": "Qm9vayBMb2Fk\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI=\n" - } - ] + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -1167,14 +1284,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "sql.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1183,7 +1293,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -1192,29 +1302,46 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "record_count" + "name": "inspect instance of", + "stringValue": "connection" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "Qm9vaw==\n" + "str": "QWN0aXZlUmVjb3JkOjpBc3NvY2lhdGlvblJlbGF0aW9u\n" } ] }, "sequenceFlags": 101010101010 }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -1222,13 +1349,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDEgTElNSVQgMiI=\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -1236,106 +1372,128 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": "class_name" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "binds.0" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.name", "extraCounterTrackUuids": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.0" + } + ], "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxBdXRob3IgaWQ6IDIsIG5hbWU6ICJCZWF0cml4IFBvdHRlciI+\n" + "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\nYXV0aG9yX2lkIiA9ICQxIExJTUlUICQy\n" }, { "iid": "10101010101010", - "str": "QmVhdHJpeCBQb3R0ZXI=\n" + "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": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "class_name" + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "@model_class" + "name": "inspecting for", + "stringValue": "type_casted_binds.1" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books", "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 @@ -1345,23 +1503,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDIgTElNSVQgMiI=\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1370,7 +1512,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -1378,8 +1520,76 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": false, - "name": "async" + "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", @@ -1399,24 +1609,35 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "connection" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": "binds" + "stringValue": "row_count" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "statement_name", + "stringValue": "@model_class" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", "stringValue": null }, { @@ -1438,18 +1659,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -1483,7 +1692,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "record_count" + "stringValue": "@find_by" }, { "nameIid": "10101010101010", @@ -1495,6 +1704,14 @@ "trackUuid": "10101010101010", "name": "instantiation.active_record" }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vaw==\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -1532,13 +1749,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "@type_for_column" + "stringValue": "@find_by_many" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "id" + "stringValue": "@type_for_column" } ], "type": "TYPE_SLICE_BEGIN", @@ -1546,40 +1763,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.name", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBdXRob3IgaWQ6IDMsIG5hbWU6ICJDaGFybGVzIERpY2tlbnMiPg==\n" - }, - { - "iid": "10101010101010", - "str": "Q2hhcmxlcyBEaWNrZW5z\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -1587,38 +1775,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "@type_for_column" + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "resolved_type" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1641,7 +1835,11 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDMgTElNSVQgMiI=\n" + "str": "IzxBdXRob3IgaWQ6IDIsIG5hbWU6ICJCZWF0cml4IFBvdHRlciI+\n" + }, + { + "iid": "10101010101010", + "str": "QmVhdHJpeCBQb3R0ZXI=\n" } ] }, @@ -1652,7 +1850,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -1660,90 +1858,27 @@ "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": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": "binds" + "name": "object", + "stringValue": "@find_by_many" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "result", + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", + "name": "authors.1.books", "extraCounterTrackUuids": [ "10101010101010" ] @@ -1755,7 +1890,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -1764,18 +1899,26 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "record_count" + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -1784,14 +1927,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1800,38 +1936,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "connection" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.name", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1854,11 +1996,7 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxBdXRob3IgaWQ6IDQsIG5hbWU6ICLtlZzqsJUiPg==\n" - }, - { - "iid": "10101010101010", - "str": "7ZWc6rCV\n" + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDIgTElNSVQgMiI=\n" } ] }, @@ -1869,7 +2007,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -1877,29 +2015,80 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "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": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds.1" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } ] }, "sequenceFlags": 101010101010 @@ -1909,26 +2098,64 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", + "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", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDQgTElNSVQgMiI=\n" + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" } ] }, "sequenceFlags": 101010101010 }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -1963,24 +2190,35 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "connection" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": "binds" + "stringValue": "row_count" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "statement_name", + "stringValue": "@model_class" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", "stringValue": null }, { @@ -2002,18 +2240,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -2047,7 +2273,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "record_count" + "stringValue": "@find_by" }, { "nameIid": "10101010101010", @@ -2082,7 +2308,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -2090,40 +2316,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "binds.2" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "binds.3" } ], "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" ], + "name": "authors.2.name", "extraCounterTrackUuids": [ "10101010101010" ] @@ -2135,7 +2348,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2143,8 +2356,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -2156,7 +2376,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2167,12 +2396,26 @@ "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 }, { @@ -2180,7 +2423,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -2188,35 +2431,30 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "binds.2" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "type_casted_binds.2" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.2.books", "extraCounterTrackUuids": [ "10101010101010" - ], - "name": "Authorize: Book" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + ] }, "sequenceFlags": 101010101010 }, @@ -2225,7 +2463,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2233,8 +2471,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -2246,7 +2491,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2255,13 +2500,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2270,7 +2509,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2278,8 +2517,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -2291,7 +2537,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2302,12 +2557,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDMgTElNSVQgMiI=\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -2315,7 +2580,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2323,8 +2588,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" } ], "type": "TYPE_SLICE_BEGIN", @@ -2336,7 +2608,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2345,13 +2617,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2360,7 +2626,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2368,8 +2634,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", @@ -2381,7 +2654,15 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -2390,13 +2671,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2405,7 +2680,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2413,8 +2688,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", @@ -2426,7 +2708,15 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -2435,13 +2725,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2450,7 +2734,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -2458,30 +2742,76 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "connection", + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "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": "@model_class" + }, + { + "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", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.0.books.0.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "sql.active_record" }, "sequenceFlags": 101010101010 }, @@ -2492,26 +2822,13 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxLCB0aXRsZTogIkEgTWlkc3VtbWVyIE5pZ2h0J3MgRHJl\nYW0iLCBhdXRob3JfaWQ6IDE+\n" - }, - { - "iid": "10101010101010", - "str": "QSBNaWRzdW1tZXIgTmlnaHQncyBEcmVhbQ==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -2519,38 +2836,27 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "class_name", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "record_count" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.0.books.0.reviews", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "instantiation.active_record" }, "sequenceFlags": 101010101010 }, @@ -2561,22 +2867,13 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "instantiation.active_record", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEgTElNSVQgMiI=\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -2584,7 +2881,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -2592,98 +2889,27 @@ "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": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "object", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "statement_name", + "name": "result", "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJyZXZpZXdzIi4qIEZST00gInJldmlld3MiIFdIRVJFICJyZXZp\nZXdzIi4iYm9va19pZCIgPSA/IExJTUlUID8=\n" - }, - { - "iid": "10101010101010", - "str": "UmV2aWV3IExvYWQ=\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", + "name": "authors.3.name", "extraCounterTrackUuids": [ "10101010101010" ] @@ -2695,7 +2921,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2704,61 +2930,26 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "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", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "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.averageReview", - "flowIds": [ - "10101010101010" - ] + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2775,52 +2966,31 @@ "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", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Execution Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDQsIG5hbWU6ICLtlZzqsJUiPg==\n" + }, + { + "iid": "10101010101010", + "str": "7ZWc6rCV\n" + } + ] + }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Exec Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -2840,13 +3010,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": null + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "authorized?" + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -2854,7 +3024,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.author", + "name": "authors.3.books", "extraCounterTrackUuids": [ "10101010101010" ] @@ -2865,16 +3035,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2883,7 +3082,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2891,8 +3090,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -2904,7 +3110,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2915,12 +3130,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDQgTElNSVQgMiI=\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -2928,17 +3153,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.0.books.0.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2956,87 +3199,42 @@ "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds.1" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.title", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } ] }, "sequenceFlags": 101010101010 @@ -3046,27 +3244,7 @@ "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -3075,37 +3253,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } ] }, "sequenceFlags": 101010101010 @@ -3115,23 +3298,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIgTElNSVQgMiI=\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -3169,24 +3336,35 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "connection" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": null + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": null + "stringValue": "row_count" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "statement_name", + "stringValue": "@model_class" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", "stringValue": null }, { @@ -3208,18 +3386,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -3253,7 +3419,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": null + "stringValue": "@find_by" }, { "nameIid": "10101010101010", @@ -3288,16 +3454,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.0.books.1.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Book" + } ] }, "sequenceFlags": 101010101010 @@ -3307,7 +3492,13 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -3316,14 +3507,28 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3331,42 +3536,23 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "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": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3374,36 +3560,8 @@ "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": "record_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@type_for_column", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -3415,45 +3573,21 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + "name": "Authorize: Book" }, - "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" - } + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "aWQ=\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI6OlNRTGl0ZTNJbnRlZ2Vy\n" - } + "extraCounterTrackUuids": [ + "10101010101010" ] }, "sequenceFlags": 101010101010 @@ -3463,7 +3597,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3471,69 +3605,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\naWQiID0gPw==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3546,7 +3631,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -3558,7 +3642,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3566,35 +3650,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "record_count" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3618,7 +3687,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3626,17 +3695,8 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -3648,18 +3708,21 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "name": "PerfettoSchema::AverageReview" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "PerfettoSchema::AverageReview" - } + "extraCounterTrackUuids": [ + "10101010101010" ] }, "sequenceFlags": 101010101010 @@ -3669,7 +3732,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3677,53 +3740,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", - "name": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "name": "type_casted_binds" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUIGJvb2tzLmlkLCBBVkcoc3RhcnMpIGFzIGF2Z19yZXZpZXcgIEZS\nT00gImJvb2tzIiBJTk5FUiBKT0lOICJyZXZpZXdzIiBPTiAicmV2aWV3cyIu\nImJvb2tfaWQiID0gImJvb2tzIi4iaWQiIEdST1VQIEJZICJib29rcyIuImlk\nIg==\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3736,7 +3766,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -3748,7 +3777,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3756,19 +3785,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "record_count" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3781,7 +3811,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -3792,11 +3821,36 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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" ] @@ -3808,7 +3862,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -3816,13 +3870,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -3834,16 +3890,43 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "PerfettoSchema::OtherBook" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "internedData": { - "eventNames": [ + "debugAnnotationStringValues": [ { "iid": "10101010101010", - "name": "PerfettoSchema::OtherBook" + "str": "IzxCb29rIGlkOiAxLCB0aXRsZTogIkEgTWlkc3VtbWVyIE5pZ2h0J3MgRHJl\nYW0iLCBhdXRob3JfaWQ6IDE+\n" + }, + { + "iid": "10101010101010", + "str": "QSBNaWRzdW1tZXIgTmlnaHQncyBEcmVhbQ==\n" } ] }, @@ -3854,7 +3937,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -3862,84 +3945,29 @@ "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": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", + "name": "object", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "statement_name", + "name": "result", "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiA9ID8gQU5EICJib29r\ncyIuImlkIiAhPSA/IEdST1VQIEJZICJib29rcyIuImF1dGhvcl9pZCI=\n" - }, - { - "iid": "10101010101010", - "str": "Qm9vayBNYXhpbXVt\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" ] }, "sequenceFlags": 101010101010 @@ -3948,15 +3976,36 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -3974,14 +4023,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -3989,42 +4059,42 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEgTElNSVQgMiI=\n" + } + ] + }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -4033,35 +4103,72 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@find_by", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "@find_by_many" + "name": "inspect instance of", + "stringValue": "class_name" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@model_class", - "stringValue": "record_count" - }, + "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": "@type_for_column", - "stringValue": null + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" } ], "type": "TYPE_SLICE_BEGIN", @@ -4073,10 +4180,82 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ + "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" ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + "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 }, @@ -4099,6 +4278,10 @@ { "nameIid": "10101010101010", "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -4110,13 +4293,18 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "connection" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" }, { "nameIid": "10101010101010", @@ -4130,9 +4318,19 @@ "name": "statement_name", "stringValue": null }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, { "nameIid": "10101010101010", "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, { "nameIid": "10101010101010", "intValue": "10101010101010" @@ -4145,14 +4343,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -4186,7 +4376,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "record_count" + "stringValue": null }, { "nameIid": "10101010101010", @@ -4198,6 +4388,14 @@ "trackUuid": "10101010101010", "name": "instantiation.active_record" }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -4220,17 +4418,30 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ + "categories": [ + "Field Execution" + ], + "categoryIids": [ "10101010101010" ], - "extraCounterTrackUuids": [ + "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, @@ -4243,13 +4454,7 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "Fiber Exit", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -4265,16 +4470,34 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -4282,39 +4505,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "statement_name" } ], "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" ], + "name": "authors.0.books.0.author", "extraCounterTrackUuids": [ "10101010101010" ] @@ -4326,122 +4537,23 @@ "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "dictEntries": [ - { - "nameIid": "10101010101010", - "stringValue": "Book-1" - } - ], - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "t5", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationNames": [ - { - "iid": "10101010101010", - "name": "id" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Resolve Type" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "resolved_type", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -4453,15 +4565,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Resolve Type: Thing" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "Resolve Type: Thing" - } - ] + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -4470,13 +4574,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4485,7 +4583,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -4493,8 +4591,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -4506,21 +4611,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" - }, - "internedData": { - "debugAnnotationNames": [ - { - "iid": "10101010101010", - "name": "resolved_type" - } - ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UGVyZmV0dG9TY2hlbWE6OkJvb2s=\n" - } - ] + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -4529,53 +4620,7 @@ "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": "authorized?" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.0.books.1.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4653,7 +4698,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.1.otherBook", + "name": "authors.0.books.0.otherBook", "flowIds": [ "10101010101010" ] @@ -4697,10 +4742,28 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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, @@ -4724,30 +4787,18 @@ }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "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": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.0.books.1.title", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -4758,38 +4809,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4812,11 +4869,11 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxMCwgdGl0bGU6ICJUaGUgVGFsZSBvZiBQZXRlciBSYWJi\naXQiLCBhdXRob3JfaWQ6IDI+\n" + "str": "IzxCb29rIGlkOiAyLCB0aXRsZTogIlRoZSBNZXJyeSBXaXZlcyBvZiBXaW5k\nc29yIiwgYXV0aG9yX2lkOiAxPg==\n" }, { "iid": "10101010101010", - "str": "VGhlIFRhbGUgb2YgUGV0ZXIgUmFiYml0\n" + "str": "VGhlIE1lcnJ5IFdpdmVzIG9mIFdpbmRzb3I=\n" } ] }, @@ -4855,13 +4912,105 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews", + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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, @@ -4881,12 +5030,166 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEwIExJTUlUIDIi\n" + "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIgTElNSVQgMiI=\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, @@ -4921,7 +5224,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "connection" + "stringValue": "name\n" }, { "nameIid": "10101010101010", @@ -4929,6 +5232,11 @@ "name": "name\n", "stringValue": null }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", @@ -4941,6 +5249,12 @@ "name": "statement_name", "stringValue": null }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, { "nameIid": "10101010101010", "arrayValues": [ @@ -4960,18 +5274,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -5047,7 +5349,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.1.books.0.averageReview", + "name": "authors.0.books.1.averageReview", "flowIds": [ "10101010101010" ] @@ -5091,77 +5393,118 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "authors.0.books.0.otherBook", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + }, + { + "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": "IzxCb29rIGlkOiA5LCB0aXRsZTogIk90aGVsbG8iLCBhdXRob3JfaWQ6IDE+\n" + "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": [ - "Authorized" + "Dataloader" ], "categoryIids": [ "10101010101010" @@ -5169,8 +5512,36 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@model_class", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", @@ -5182,21 +5553,23 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ + "flowIds": [ "10101010101010" ], - "extraCounterTrackUuids": [ - "10101010101010" + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Dataloader::ActiveRecordSource" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6VHlwZTo6SW50ZWdlcg==\n" + } ] }, "sequenceFlags": 101010101010 @@ -5206,37 +5579,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "class_name" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "class_name" + "name": "inspecting for", + "stringValue": "binds.0" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.author", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\naWQiID0gJDE=\n" + } ] }, "sequenceFlags": 101010101010 @@ -5246,15 +5624,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5263,7 +5633,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -5271,8 +5641,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", @@ -5284,40 +5661,18 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "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" + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + }, + { + "iid": "10101010101010", + "str": "YTQ=\n" + } ] }, "sequenceFlags": 101010101010 @@ -5336,39 +5691,7 @@ "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" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -5376,27 +5699,70 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "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", - "doubleValue": 101010101010, - "name": "result" + "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": "authors.0.books.1.averageReview", - "flowIds": [ - "10101010101010" - ] - } + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -5405,11 +5771,10 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -5420,35 +5785,40 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "class_name", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "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": "authors.1.books.1.title", + "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -5462,26 +5832,12 @@ "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 }, { @@ -5489,37 +5845,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MA==\n" + } ] }, "sequenceFlags": 101010101010 @@ -5529,23 +5890,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDExIExJTUlUIDIi\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5554,83 +5899,47 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "statement_name", + "name": "inspecting for", "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { - "debugAnnotationStringValues": [ + "debugAnnotationNames": [ { "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, + "name": "10101010101010" + } + ], + "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "str": "MQ==\n" } ] }, @@ -5641,14 +5950,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "sql.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5657,7 +5959,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Dataloader" ], "categoryIids": [ "10101010101010" @@ -5665,34 +5967,40 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::AverageReview" + } ] }, "sequenceFlags": 101010101010 @@ -5702,119 +6010,52 @@ "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIGJvb2tzLmlkLCBBVkcoc3RhcnMpIGFzIGF2Z19yZXZpZXcgIEZS\nT00gImJvb2tzIiBJTk5FUiBKT0lOICJyZXZpZXdzIiBPTiAicmV2aWV3cyIu\nImJvb2tfaWQiID0gImJvb2tzIi4iaWQiIEdST1VQIEJZICJib29rcyIuImlk\nIg==\n" + } ] }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "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" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5842,13 +6083,18 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "connection" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" }, { "nameIid": "10101010101010", @@ -5862,6 +6108,12 @@ "name": "statement_name", "stringValue": null }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, { "nameIid": "10101010101010", "name": "type_casted_binds" @@ -5904,7 +6156,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "record_count" + "stringValue": "@find_by" }, { "nameIid": "10101010101010", @@ -5949,6 +6201,52 @@ }, "sequenceFlags": 101010101010 }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -5963,10 +6261,6 @@ { "nameIid": "10101010101010", "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -5985,11 +6279,18 @@ "10101010101010" ], "flowIds": [ - "10101010101010", "10101010101010" ], "name": "PerfettoSchema::OtherBook" }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::OtherBook" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -5997,7 +6298,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -6005,36 +6306,194 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": false, - "name": "async" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "binds" + "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": "connection", - "stringValue": "connection" + "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", @@ -6042,6 +6501,11 @@ "name": "name\n", "stringValue": null }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", @@ -6054,17 +6518,15 @@ "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" @@ -6081,30 +6543,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiBJTiAoPywgPykgQU5E\nICJib29rcyIuImlkIiBOT1QgSU4gKD8sID8pIEdST1VQIEJZICJib29rcyIu\nImF1dGhvcl9pZCI=\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -6187,7 +6625,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -6196,35 +6634,14 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@find_by", + "name": "inspect instance of", "stringValue": null }, - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "@find_by_many" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@model_class", - "stringValue": "record_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@type_for_column", + "name": "inspecting for", "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", @@ -6236,10 +6653,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -6248,49 +6671,33 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Dataloader" ], "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": "connection" + "name": "@find_by", + "stringValue": null }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" + "boolValue": false, + "name": "@find_by_many" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "@model_class", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "statement_name", + "name": "@type_for_column", "stringValue": null }, { @@ -6301,36 +6708,122 @@ "intValue": "10101010101010" } ], - "name": "type_casted_binds" + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "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 }, @@ -6345,12 +6838,106 @@ "10101010101010" ], "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", + "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": "@find_by" + }, { "nameIid": "10101010101010", "intValue": "10101010101010", @@ -6446,10 +7033,6 @@ { "nameIid": "10101010101010", "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -6468,7 +7051,6 @@ "10101010101010" ], "flowIds": [ - "10101010101010", "10101010101010" ], "name": "PerfettoSchema::OtherBook" @@ -6540,6 +7122,12 @@ "debugAnnotations": [ { "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "stringValue": "Book-1" + } + ], "name": "arguments" }, { @@ -6557,35 +7145,18 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.1.otherBook", + "name": "t5", "flowIds": [ "10101010101010" ] } }, - { - "timestamp": "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -6593,8 +7164,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -6606,7 +7184,24 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "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 }, @@ -6617,9 +7212,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -6630,37 +7227,36 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Resolve Type" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "resolved_type", "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.author", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "Resolve Type: Thing" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Resolve Type: Thing" + } ] }, "sequenceFlags": 101010101010 @@ -6672,11 +7268,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -6708,7 +7302,21 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "name": "Authorize: Book" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "resolved_type" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UGVyZmV0dG9TY2hlbWE6OkJvb2s=\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -6737,37 +7345,70 @@ "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", - "name": "authors.1.books.1.otherBook", - "flowIds": [ + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.1.author", + "extraCounterTrackUuids": [ "10101010101010" ] }, "sequenceFlags": 101010101010 }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" - }, - "sequenceFlags": 101010101010 - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -6775,15 +7416,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -6792,35 +7426,46 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.1.books.0.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -6844,7 +7489,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -6852,30 +7497,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: Author" }, "sequenceFlags": 101010101010 }, @@ -6886,26 +7521,12 @@ "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 }, { @@ -6918,31 +7539,10 @@ "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.reviews", - "extraCounterTrackUuids": [ + "name": "authors.0.books.1.otherBook", + "flowIds": [ "10101010101010" ] }, @@ -6953,23 +7553,39 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ - "10101010101010", + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDE5IExJTUlUIDIi\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -6978,7 +7594,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -6986,102 +7602,35 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "binds" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "connection" + "name": "object", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", + "name": "result", "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "sql.active_record", - "extraCounterTrackUuids": [ + "name": "authors.0.books.0.averageReview", + "flowIds": [ "10101010101010" ] - }, - "sequenceFlags": 101010101010 + } }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -7090,18 +7639,26 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -7110,14 +7667,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7126,16 +7676,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.2.books.0.averageReview", - "flowIds": [ + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "QmlnRGVjaW1hbA==\n" + } ] }, "sequenceFlags": 101010101010 @@ -7153,31 +7729,24 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MC4yNWUx\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -7211,35 +7780,14 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.1.books.0.otherBook", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.1.books.0.title", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxOCwgdGl0bGU6ICJUaGUgU3Rvcnkgb2YgYSBGaWVyY2Ug\nQmFkIFJhYmJpdCIsIGF1dGhvcl9pZDogMj4=\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -7247,7 +7795,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -7255,8 +7803,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -7268,7 +7823,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7279,12 +7843,26 @@ "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 }, { @@ -7312,7 +7890,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "@type_for_column" + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -7320,25 +7898,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.0.reviews", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -7349,7 +7910,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -7357,8 +7918,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -7370,7 +7938,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -7379,13 +7947,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7394,17 +7956,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.2.books.0.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -7421,31 +8001,24 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEwIExJTUlUIDIi\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -7454,50 +8027,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "class_name" }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.0" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.1.books.1.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7506,37 +8073,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds.1" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.title", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } ] }, "sequenceFlags": 101010101010 @@ -7546,27 +8118,7 @@ "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7575,37 +8127,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } ] }, "sequenceFlags": 101010101010 @@ -7615,23 +8172,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIwIExJTUlUIDIi\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7669,7 +8210,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "connection" + "stringValue": "name\n" }, { "nameIid": "10101010101010", @@ -7677,6 +8218,11 @@ "name": "name\n", "stringValue": null }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", @@ -7689,6 +8235,12 @@ "name": "statement_name", "stringValue": null }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, { "nameIid": "10101010101010", "arrayValues": [ @@ -7708,18 +8260,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -7795,7 +8335,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.2.books.1.averageReview", + "name": "authors.1.books.0.averageReview", "flowIds": [ "10101010101010" ] @@ -7839,34 +8379,16 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "name": "Create Source Fiber", - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -7874,88 +8396,63 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], + "name": "authors.0.books.0.otherBook", "flowIds": [ - "10101010101010", "10101010101010" - ], - "name": "PerfettoSchema::AverageReview" - }, - "sequenceFlags": 101010101010 + ] + } }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", - "name": "binds" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "connection" + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "name\n", + "name": "inspecting for", "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "name": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -7964,14 +8461,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "sql.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7980,7 +8470,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -7989,18 +8479,26 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "record_count" + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8009,14 +8507,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8027,12 +8518,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiA5LCB0aXRsZTogIk90aGVsbG8iLCBhdXRob3JfaWQ6IDE+\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -8040,7 +8541,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -8048,17 +8549,8 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -8070,11 +8562,22 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "name": "PerfettoSchema::OtherBook" + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -8083,7 +8586,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -8091,100 +8594,29 @@ "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": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", + "name": "object", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "statement_name", - "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" + "name": "result", + "stringValue": "@find_by_many" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.author", + "extraCounterTrackUuids": [ + "10101010101010" ] }, "sequenceFlags": 101010101010 @@ -8193,15 +8625,36 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8219,14 +8672,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8234,19 +8708,21 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" @@ -8255,21 +8731,11 @@ "sequenceFlags": 101010101010 }, { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, - { - "timestamp": "10101010101010", + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -8277,36 +8743,8 @@ "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": "record_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@type_for_column", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -8318,85 +8756,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" - }, - "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": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] + "name": "Authorize: Author" }, "sequenceFlags": 101010101010 }, @@ -8409,7 +8769,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -8421,41 +8780,15 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "record_count" - }, - { - "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": [ + "name": "authors.1.books.0.otherBook", + "flowIds": [ "10101010101010" ] }, @@ -8466,13 +8799,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8488,13 +8815,7 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "Fiber Exit", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -8519,7 +8840,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -8527,69 +8848,63 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], + "name": "authors.0.books.1.averageReview", "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8597,15 +8912,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8614,51 +8922,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "authors.1.books.1.otherBook", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8666,29 +8958,8 @@ "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" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8699,9 +8970,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -8732,7 +9005,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "@type_for_column" + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -8740,25 +9013,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.1.title", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -8769,7 +9025,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8777,8 +9033,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -8790,7 +9053,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8799,13 +9062,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8813,59 +9070,28 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Field Execution" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_SLICE_BEGIN", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "authors.2.books.1.otherBook", - "flowIds": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" ], - "categoryIids": [ + "extraCounterTrackUuids": [ + "10101010101010", "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" + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxMSwgdGl0bGU6ICJUaGUgVGFsZSBvZiBTcXVpcnJlbCBO\ndXRraW4iLCBhdXRob3JfaWQ6IDI+\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIFRhbGUgb2YgU3F1aXJyZWwgTnV0a2lu\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -8892,30 +9118,18 @@ }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "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": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.1.books.1.reviews", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -8926,38 +9140,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8966,27 +9177,7 @@ "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8995,38 +9186,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "connection" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9049,7 +9246,7 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI2IExJTUlUIDIi\n" + "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDExIExJTUlUIDIi\n" } ] }, @@ -9060,7 +9257,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -9068,28 +9265,182 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "binds" + "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": "connection" + "stringValue": "name\n" }, { "nameIid": "10101010101010", @@ -9097,6 +9448,11 @@ "name": "name\n", "stringValue": null }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", @@ -9109,6 +9465,12 @@ "name": "statement_name", "stringValue": null }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "transaction", + "stringValue": null + }, { "nameIid": "10101010101010", "arrayValues": [ @@ -9128,18 +9490,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -9215,7 +9565,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.3.books.0.averageReview", + "name": "authors.1.books.1.averageReview", "flowIds": [ "10101010101010" ] @@ -9259,68 +9609,71 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.2.books.0.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9329,7 +9682,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -9337,8 +9690,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -9350,7 +9710,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -9359,13 +9719,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9374,7 +9728,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "categoryIids": [ "10101010101010" @@ -9382,47 +9736,33 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.author", "extraCounterTrackUuids": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" ], - "extraCounterTrackUuids": [ + "flowIds": [ "10101010101010", "10101010101010" - ] + ], + "name": "PerfettoSchema::AverageReview" }, "sequenceFlags": 101010101010 }, @@ -9431,7 +9771,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -9439,8 +9779,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", @@ -9452,7 +9799,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -9461,13 +9808,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9476,17 +9817,64 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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": "authors.3.books.0.otherBook", - "flowIds": [ - "10101010101010" - ] + "name": "sql.active_record" }, "sequenceFlags": 101010101010 }, @@ -9495,39 +9883,14 @@ "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": [ + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -9536,35 +9899,45 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "class_name", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "intValue": "10101010101010", + "name": "record_count" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.2.books.1.averageReview", - "flowIds": [ + "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", @@ -9573,11 +9946,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -9588,38 +9959,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -9628,27 +9996,7 @@ "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9657,38 +10005,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -9697,23 +10042,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI3IExJTUlUIDIi\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9722,17 +10051,12 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Dataloader" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, { "nameIid": "10101010101010", "arrayValues": [ @@ -9745,60 +10069,66 @@ "stringValueIid": "10101010101010" } ], - "name": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, + "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": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "binds.0" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiBJTiAoJDEsICQyKSBB\nTkQgImJvb2tzIi4iaWQiIE5PVCBJTiAoJDMsICQ0KSBHUk9VUCBCWSAiYm9v\na3MiLiJhdXRob3JfaWQi\n" } ] }, @@ -9809,14 +10139,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "sql.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9825,7 +10148,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -9834,18 +10157,34 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": null + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds.1" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -9854,14 +10193,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9870,16 +10202,52 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.3.books.1.averageReview", - "flowIds": [ + "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 @@ -9898,14 +10266,62 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "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 }, @@ -9914,46 +10330,81 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "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, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, { "nameIid": "10101010101010", "arrayValues": [ @@ -9964,59 +10415,34 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010" - } + }, + { + "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": [ - "ActiveSupport::Notifications" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", "name": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "connection" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "row_count" }, { "nameIid": "10101010101010", @@ -10032,6 +10458,30 @@ }, { "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" } ], @@ -10057,32 +10507,28 @@ }, "sequenceFlags": 101010101010 }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Dataloader" ], "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "record_count" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" - } - ], - "type": "TYPE_SLICE_BEGIN", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -10090,30 +10536,79 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "instantiation.active_record", + "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": { - "type": "TYPE_SLICE_END", + "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 }, @@ -10128,16 +10623,35 @@ "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "@type_for_column", + "stringValue": null + }, { "nameIid": "10101010101010", "arrayValues": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" + "intValue": "10101010101010" } ], "name": "fetch keys" @@ -10153,10 +10667,9 @@ "10101010101010" ], "flowIds": [ - "10101010101010", "10101010101010" ], - "name": "PerfettoSchema::OtherBook" + "name": "GraphQL::Dataloader::ActiveRecordSource" }, "sequenceFlags": 101010101010 }, @@ -10165,7 +10678,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -10173,42 +10686,135 @@ "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" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "class_name" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "connection" - }, + "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": "name\n", - "stringValue": null + "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", @@ -10222,21 +10828,15 @@ "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" @@ -10249,25 +10849,50 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": [ { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "@find_by" }, { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" } - ] + ], + "type": "TYPE_SLICE_BEGIN", + "trackUuid": "10101010101010", + "name": "instantiation.active_record" }, "sequenceFlags": 101010101010 }, @@ -10280,7 +10905,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", + "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -10292,7 +10917,13 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -10308,7 +10939,86 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "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 }, @@ -10324,34 +11034,12797 @@ ], "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "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.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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDE5IExJTUlUIDIi\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": 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": [ + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "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": "binds.2" + } + ], + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIwIExJTUlUIDIi\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": 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": [ + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "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.2" + } + ], + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI2IExJTUlUIDIi\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": 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": [ + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "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": "10101010101010" + } + ], + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI3IExJTUlUIDIi\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": 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": [ + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "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.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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::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" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "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": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAxPg==\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": "IzxSZXZpZXcgaWQ6IDIsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAxPg==\n" + }, + { + "iid": "10101010101010", + "str": "Mg==\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" + }, + { + "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" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::Authorized" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDUsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAyPg==\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": [ + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "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" + ], + "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": [ + "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", + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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" + ], + "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": [ + "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": [ + "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": [ + "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", + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@type_for_column" + } + ], + "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" + ], + "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": 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" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDYsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAyPg==\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": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDM3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTA+\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": "IzxSZXZpZXcgaWQ6IDM4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTA+\n" + }, + { + "iid": "10101010101010", + "str": "Mw==\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" + }, + { + "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", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDQxLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTE+\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": [ + "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": [ + "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": [ + "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": [ + "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", + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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.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" + ], + "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": [ + "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": [ + "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": [ + "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", + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "binds.2" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "binds.3" + } + ], + "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" + ], + "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": 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" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDQyLCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTE+\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": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDczLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTk+\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": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDc0LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTk+\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" + }, + { + "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", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDc3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMjA+\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": [ + "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": [ + "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": [ + "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": [ + "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", + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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.2" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "binds.3" + } + ], + "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" + ], + "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": [ + "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": [ + "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": [ + "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", + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "R3JlYXQgRXhwZWN0YXRpb25z\n" + } + ] + }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -10359,51 +23832,30 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@find_by", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "@find_by_many" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@model_class", - "stringValue": "record_count" + "name": "object", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@type_for_column", + "name": "result", "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.3.books.0.author.name", "extraCounterTrackUuids": [ "10101010101010" - ], - "flowIds": [ - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + ] }, "sequenceFlags": 101010101010 }, @@ -10412,73 +23864,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "connection" + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "name\n", + "name": "inspecting for", "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "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 }, @@ -10489,10 +23912,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -10503,27 +23927,18 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "record_count" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" - } - ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" }, "sequenceFlags": 101010101010 }, @@ -10532,14 +23947,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10547,14 +23955,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -10571,28 +23980,70 @@ "type": "TYPE_INSTANT", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "Fiber Exit", + "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": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10601,7 +24052,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -10609,17 +24060,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -10631,25 +24080,24 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::OtherBook" - } + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDc4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMjA+\n" + } + ] + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10658,19 +24106,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwMSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI2Pg==\n" + } ] }, "sequenceFlags": 101010101010 @@ -10679,15 +24150,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10696,51 +24160,52 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.2.books.1.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwMiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI2Pg==\n" + } ] - } + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10749,7 +24214,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Dataloader" ], "categoryIids": [ "10101010101010" @@ -10757,8 +24222,25 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", @@ -10770,7 +24252,21 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "flowIds": [ + "10101010101010", + "10101010101010", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwNSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI3Pg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -10794,35 +24290,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "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", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.author", + "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -10833,16 +24311,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ - "10101010101010", + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -10866,15 +24343,11 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ + "flowIds": [ "10101010101010" ], - "name": "Authorize: Author" - }, - "sequenceFlags": 101010101010 + "name": "Authorize: Review" + } }, { "timestamp": "10101010101010", @@ -10896,17 +24369,18 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.3.books.1.otherBook", "flowIds": [ "10101010101010" - ] + ], + "name": "Authorize: Review" }, "sequenceFlags": 101010101010 }, @@ -10956,7 +24430,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -10964,26 +24438,17 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.3.books.0.averageReview", "flowIds": [ "10101010101010" - ] + ], + "name": "Authorize: Review" } }, { @@ -10993,11 +24458,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -11008,67 +24471,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "flowIds": [ - "10101010101010" - ], - "name": "Authorize: Review" - }, - "internedData": { - "eventNames": [ + "debugAnnotations": [ { - "iid": "10101010101010", - "name": "Authorize: Review" + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } - ] - }, - "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", + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "name": "authors.2.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -11077,36 +24511,46 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.3.books.0.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -11123,14 +24567,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAyOSwgdGl0bGU6ICLrhbjrnpHrrLTriqzsmIHsm5AiLCBh\ndXRob3JfaWQ6IDQ+\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -11138,7 +24574,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -11146,32 +24582,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "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" ], + "name": "authors.3.books.1.author.name", "extraCounterTrackUuids": [ "10101010101010" ] @@ -11183,18 +24614,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -11211,15 +24659,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -11228,14 +24677,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -11244,35 +24717,46 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.3.books.1.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -11289,6 +24773,14 @@ "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "64W4656R66y064qs7JiB7JuQ\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -11310,13 +24802,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "authorized?" + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "sql" + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -11324,25 +24816,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.otherBook.title", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -11353,18 +24828,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -11381,58 +24873,25 @@ "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", + "type": "TYPE_SLICE_END", "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" - } + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -11440,28 +24899,29 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.0.books.0.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ], - "flowIds": [ - "10101010101010" - ], - "name": "PerfettoSchema::OtherBook" + ] }, "sequenceFlags": 101010101010 }, @@ -11470,85 +24930,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -11557,14 +24967,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "sql.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11575,9 +24978,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -11588,67 +24993,16 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" - } - ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], + "name": "authors.0.books.0.reviews.0.user", "flowIds": [ - "10101010101010", - "10101010101010", "10101010101010" - ], - "name": "PerfettoSchema::Authorized" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "PerfettoSchema::Authorized" - } - ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAxPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDIsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAxPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDUsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAyPg==\n" - } ] }, "sequenceFlags": 101010101010 @@ -11658,13 +25012,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11680,13 +25028,7 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "Fiber Exit", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -11706,6 +25048,47 @@ }, "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, @@ -11729,31 +25112,17 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.3.books.1.otherBook", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.0.books.0.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -11764,7 +25133,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -11772,8 +25141,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -11785,7 +25161,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11796,9 +25181,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -11809,18 +25196,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", + "name": "authors.0.books.0.reviews.1.user", "flowIds": [ "10101010101010" - ], - "name": "Authorize: Review" + ] }, "sequenceFlags": 101010101010 }, @@ -11929,9 +25315,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -11939,25 +25324,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "t5.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.1.reviews.0.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -11968,38 +25336,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "authorized?" + "name": "inspect instance of", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "sql" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.author.name", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12025,18 +25399,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", + "name": "authors.0.books.1.reviews.0.user", "flowIds": [ "10101010101010" - ], - "name": "Authorize: Review" + ] }, "sequenceFlags": 101010101010 }, @@ -12077,16 +25450,34 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -12094,51 +25485,35 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", - "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": [ - "Authorized" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "flowIds": [ - "10101010101010" ], - "name": "Authorize: Review" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "VXNlcg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -12161,131 +25536,60 @@ "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": [ + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, { "nameIid": "10101010101010", - "name": "arguments" + "boolValue": false, + "name": "@find_by_many" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "@model_class", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "@type_for_column", "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.otherBook.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", "10101010101010", "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "T3RoZWxsbw==\n" - } - ] + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" }, "sequenceFlags": 101010101010 }, @@ -12294,37 +25598,46 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "class_name" + "name": "inspect instance of", + "stringValue": "type_casted_binds.0" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "binds.0" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.author.name", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiIElOICgkMSwgJDIp\n" + }, + { + "iid": "10101010101010", + "str": "VXNlciBMb2Fk\n" + } ] }, "sequenceFlags": 101010101010 @@ -12334,15 +25647,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12351,18 +25656,43 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -12380,62 +25710,71 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } ] }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, { "nameIid": "10101010101010", "arrayValues": [ @@ -12446,55 +25785,63 @@ { "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", - "stringValueIid": "10101010101010" + "intValue": "10101010101010" }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010" + "intValue": "10101010101010" } ], - "name": "fetch keys" + "name": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDYsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAyPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDM3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDM4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDQxLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTE+\n" - } - ] + "name": "sql.active_record" }, "sequenceFlags": 101010101010 }, @@ -12507,6 +25854,7 @@ "extraCounterValues": [ "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -12518,17 +25866,40 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Exit", + "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -12539,15 +25910,14 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -12556,7 +25926,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -12564,31 +25934,36 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12597,18 +25972,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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": "Authorize: Review" + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwNiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI3Pg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -12617,7 +26018,13 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -12633,7 +26040,13 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -12717,9 +26130,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -12727,25 +26139,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.otherBook.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.1.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -12756,75 +26151,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "class_name" + "name": "inspect instance of", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -12841,31 +26196,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -12874,7 +26214,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -12882,28 +26222,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "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" ], + "name": "authors.0.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -12915,18 +26254,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -12944,14 +26300,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12959,15 +26345,24 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAyLCB1c2VybmFtZTogInRlbmRlcmxvdmUiPg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -12991,11 +26386,23 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: User" + } + ] + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -13035,9 +26442,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -13045,36 +26451,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.otherBook.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.0.reviews.0.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "VGhlIFN0b3J5IG9mIGEgRmllcmNlIEJhZCBSYWJiaXQ=\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -13082,38 +26463,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "@type_for_column" + "name": "inspect instance of", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "id" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.author.name", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13139,43 +26526,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "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": [ + "name": "authors.1.books.0.reviews.0.user", + "extraCounterTrackUuids": [ "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + ] }, "sequenceFlags": 101010101010 }, @@ -13184,41 +26566,53 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -13226,25 +26620,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -13256,33 +26640,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDQyLCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTE+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDczLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTk+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc0LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTk+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMjA+\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13293,12 +26660,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAxLCB1c2VybmFtZTogIm1hdHoiPg==\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -13306,20 +26683,28 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -13327,15 +26712,14 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13344,7 +26728,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -13352,28 +26736,26 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" } ], "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" ], + "name": "authors.1.books.0.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" ] @@ -13385,18 +26767,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13413,15 +26812,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13430,14 +26830,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13446,7 +26870,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -13454,31 +26878,36 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13487,38 +26916,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13544,7 +26979,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -13552,30 +26987,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "@type_for_column" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "id" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.author.name", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -13586,11 +27011,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -13601,27 +27024,37 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "name": "authors.1.books.1.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13630,14 +27063,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13645,15 +27108,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13662,7 +27126,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -13670,28 +27134,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "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" ], + "name": "authors.1.books.1.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -13703,18 +27166,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13732,14 +27212,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13747,15 +27248,25 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13779,11 +27290,15 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -13821,22 +27336,67 @@ "name": "object", "stringValue": null }, + { + "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": "result", + "name": "inspect instance of", "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13855,14 +27415,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "R3JlYXQgRXhwZWN0YXRpb25z\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -13898,25 +27450,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.1.reviews.1.user", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -13927,18 +27462,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13956,14 +27508,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13971,19 +27544,21 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" @@ -13991,22 +27566,12 @@ }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -14014,25 +27579,8 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -14044,33 +27592,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMjA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwMSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI2Pg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwMiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI2Pg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwNSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI3Pg==\n" - } - ] + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -14094,17 +27616,34 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", + "name": "authors.2.books.0.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" ] @@ -14116,23 +27655,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -14140,18 +27663,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -14160,9 +27703,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -14173,27 +27718,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "name": "authors.2.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14202,14 +27758,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14217,15 +27794,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14234,7 +27804,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -14242,18 +27812,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -14262,9 +27852,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -14275,7 +27867,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -14283,30 +27875,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -14317,11 +27899,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -14350,9 +27930,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -14360,25 +27939,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.0.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -14389,38 +27951,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14439,14 +28007,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "64W4656R66y064qs7JiB7JuQ\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -14482,25 +28042,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.otherBook.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.0.reviews.1.user", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -14511,37 +28054,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14550,15 +28091,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14567,17 +28100,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.0.books.0.reviews.0.user", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14594,31 +28145,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14642,11 +28178,15 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -14695,96 +28235,19 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.1.reviews.0.stars", "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.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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -14792,18 +28255,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Review" - } + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -14812,9 +28295,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -14843,8 +28328,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -14852,7 +28338,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.0.stars", + "name": "authors.2.books.1.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -14863,16 +28349,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14881,17 +28396,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.0.books.1.reviews.0.user", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14908,15 +28441,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14925,41 +28459,52 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -14967,64 +28512,28 @@ "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 + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@type_for_column", + "name": "object", "stringValue": null }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.2.books.1.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" - ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "VXNlcg==\n" - } ] }, "sequenceFlags": 101010101010 @@ -15034,93 +28543,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "statement_name", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiIElOICg/LCA/KQ==\n" - }, - { - "iid": "10101010101010", - "str": "VXNlciBMb2Fk\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15131,10 +28591,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -15145,27 +28606,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", + "name": "object", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -15173,15 +28645,36 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -15190,13 +28683,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15205,7 +28692,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -15213,13 +28700,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -15231,18 +28720,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwNiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI3Pg==\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15253,9 +28740,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -15266,17 +28755,40 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -15288,14 +28800,37 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -15304,7 +28839,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -15312,18 +28847,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -15332,9 +28887,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -15363,8 +28920,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -15372,7 +28930,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.1.stars", + "name": "authors.3.books.0.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -15383,16 +28941,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15401,38 +28988,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15451,14 +29044,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxVc2VyIGlkOiAyLCB1c2VybmFtZTogInRlbmRlcmxvdmUiPg==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -15489,14 +29074,6 @@ ], "name": "Authorize: User" }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "Authorize: User" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -15546,25 +29123,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.0.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.0.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -15575,38 +29135,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15625,14 +29191,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxVc2VyIGlkOiAxLCB1c2VybmFtZTogIm1hdHoiPg==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -15640,7 +29198,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -15648,32 +29206,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.3.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -15685,37 +29238,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -15724,15 +29275,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15741,38 +29284,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15870,13 +29419,59 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.0.stars", + "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": "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, @@ -15927,7 +29522,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.0.user", + "name": "authors.3.books.1.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -15938,16 +29533,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15956,7 +29580,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -15964,8 +29588,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -15977,7 +29608,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15988,9 +29628,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -16001,7 +29643,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -16009,29 +29651,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -16042,11 +29675,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16075,9 +29706,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -16085,25 +29715,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.1.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16114,7 +29727,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -16122,8 +29735,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -16135,7 +29755,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16146,9 +29775,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -16177,8 +29808,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -16186,7 +29818,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.0.stars", + "name": "authors.3.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16197,16 +29829,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16215,38 +29876,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16335,8 +30002,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -16344,25 +30012,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16373,38 +30024,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16423,6 +30080,14 @@ "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "dGVuZGVybG92ZQ==\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -16430,7 +30095,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -16438,32 +30103,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.1.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16475,37 +30135,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16524,6 +30191,14 @@ "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "bWF0eg==\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -16549,35 +30224,18 @@ }, { "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": { - "type": "TYPE_SLICE_END", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.1.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16588,7 +30246,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -16596,8 +30254,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -16609,7 +30274,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16620,9 +30294,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -16651,8 +30327,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -16660,25 +30337,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16689,38 +30349,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16746,7 +30412,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -16754,32 +30420,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.1.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16791,37 +30452,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16875,25 +30543,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.0.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16904,7 +30555,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -16912,8 +30563,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -16925,7 +30583,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16936,9 +30603,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -16967,8 +30636,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -16976,25 +30646,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17005,38 +30658,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17062,7 +30721,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -17070,32 +30729,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" - } - ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "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.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" ] @@ -17107,37 +30761,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17191,25 +30852,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.0.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17220,7 +30864,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -17228,8 +30872,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -17241,7 +30892,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17252,9 +30912,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -17283,8 +30945,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -17292,13 +30955,59 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.1.stars", + "name": "authors.3.books.0.reviews.0.user.username", "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": "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, @@ -17349,25 +31058,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.1.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17378,7 +31070,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -17386,8 +31078,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -17399,7 +31098,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17410,9 +31118,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -17451,36 +31161,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "dGVuZGVybG92ZQ==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -17488,38 +31173,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17538,14 +31229,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "bWF0eg==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -17581,25 +31264,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17610,38 +31276,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17667,35 +31339,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "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", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.1.user.username", + "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -17706,16 +31360,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ - "10101010101010", + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -17749,70 +31402,46 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.2.books.0.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", + "name": "authors.0.books.0.reviews.0.user", + "flowIds": [ "10101010101010" ] - }, - "sequenceFlags": 101010101010 + } }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -17821,15 +31450,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17838,38 +31459,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17895,7 +31522,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -17903,30 +31530,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -17937,11 +31554,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17980,25 +31595,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -18009,38 +31607,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18066,35 +31670,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "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", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.0.user.username", + "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -18105,16 +31691,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ - "10101010101010", + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -18148,52 +31733,46 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.3.books.1.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", + "name": "authors.0.books.0.reviews.1.user", + "flowIds": [ "10101010101010" ] - }, - "sequenceFlags": 101010101010 + } }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -18201,15 +31780,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18218,36 +31790,46 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.0.books.0.reviews.0.user", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -18344,13 +31926,59 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.0.user.username", + "name": "authors.0.books.0.reviews.1.user.username", "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": "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, @@ -18436,35 +32064,18 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.0.reviews.1.user", + "name": "authors.0.books.1.reviews.0.user", "flowIds": [ "10101010101010" ] } }, - { - "timestamp": "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -18472,8 +32083,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -18485,7 +32103,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -18494,13 +32112,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18509,38 +32121,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18566,20 +32184,28 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -18587,15 +32213,14 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -18629,24 +32254,11 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.1.reviews.0.user", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.0.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -18657,7 +32269,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -18665,8 +32277,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -18678,7 +32297,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -18687,53 +32306,7 @@ "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.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, diff --git a/spec/graphql/tracing/snapshots/example-rails-8-0.json b/spec/graphql/tracing/snapshots/example-rails-8-0.json index 9ec234eed1..58cf06197b 100644 --- a/spec/graphql/tracing/snapshots/example-rails-8-0.json +++ b/spec/graphql/tracing/snapshots/example-rails-8-0.json @@ -34,6 +34,16 @@ { "iid": "10101010101010", "name": "Resolve Type" + }, + { + "iid": "10101010101010", + "name": "Debug Inspect" + } + ], + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" } ], "debugAnnotationNames": [ @@ -43,15 +53,23 @@ }, { "iid": "10101010101010", - "name": "arguments" + "name": "result" }, { "iid": "10101010101010", - "name": "result" + "name": "arguments" }, { "iid": "10101010101010", "name": "fetch keys" + }, + { + "iid": "10101010101010", + "name": "inspect instance of" + }, + { + "iid": "10101010101010", + "name": "inspecting for" } ], "debugAnnotationStringValues": [ @@ -430,7 +448,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "validate?" + "stringValue": "query_string" } ], "type": "TYPE_SLICE_BEGIN", @@ -453,6 +471,64 @@ }, "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, @@ -478,6 +554,98 @@ }, "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, @@ -502,13 +670,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "query_string" + "stringValue": "analyzers" }, { "nameIid": "10101010101010", @@ -519,7 +687,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": "valid?" + "stringValue": "analyzers_count" }, { "nameIid": "10101010101010", @@ -538,30 +706,6 @@ }, "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" - }, { "iid": "10101010101010", "name": "transaction" @@ -572,14 +716,6 @@ } ], "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJhdXRob3JzIi4qIEZST00gImF1dGhvcnMi\n" - }, - { - "iid": "10101010101010", - "str": "QXV0aG9yIExvYWQ=\n" - }, { "iid": "10101010101010", "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI=\n" @@ -619,7 +755,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "analyzers" + "stringValue": "binds" }, { "nameIid": "10101010101010", @@ -952,13 +1088,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "authorized?" + "stringValue": "async" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "sql" + "stringValue": "connection" } ], "type": "TYPE_SLICE_BEGIN", @@ -973,6 +1109,60 @@ }, "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, @@ -1021,13 +1211,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "authorized?" + "stringValue": "async" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "name\n" + "stringValue": "row_count" } ], "type": "TYPE_SLICE_BEGIN", @@ -1042,133 +1232,40 @@ }, "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": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", + "name": "inspect instance of", "stringValue": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationNames": [ - { - "iid": "10101010101010" - } + "extraCounterValues": [ + "10101010101010" ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\nYXV0aG9yX2lkIiA9ID8gTElNSVQgPw==\n" - }, - { - "iid": "10101010101010", - "str": "Qm9vayBMb2Fk\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -1177,14 +1274,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "sql.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1193,7 +1283,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -1202,29 +1292,46 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", + "name": "inspect instance of", "stringValue": "transaction" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "Qm9vaw==\n" + "str": "QWN0aXZlUmVjb3JkOjpBc3NvY2lhdGlvblJlbGF0aW9u\n" } ] }, "sequenceFlags": 101010101010 }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -1232,13 +1339,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDEgTElNSVQgMiI=\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -1246,106 +1362,128 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "row_count" + "name": "inspect instance of", + "stringValue": "binds.0" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "record_count" + "name": "inspecting for", + "stringValue": "binds.1" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.name", "extraCounterTrackUuids": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.0" + } + ], "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxBdXRob3IgaWQ6IDIsIG5hbWU6ICJCZWF0cml4IFBvdHRlciI+\n" + "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\nYXV0aG9yX2lkIiA9ID8gTElNSVQgPw==\n" }, { "iid": "10101010101010", - "str": "QmVhdHJpeCBQb3R0ZXI=\n" + "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": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "row_count" + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "class_name" + "name": "inspecting for", + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books", "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 @@ -1355,23 +1493,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDIgTElNSVQgMiI=\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1380,7 +1502,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -1388,12 +1510,76 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": false, - "name": "async" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", - "arrayValues": [ + "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" @@ -1409,13 +1595,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": "class_name" }, { "nameIid": "10101010101010", @@ -1426,7 +1612,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": "binds" + "stringValue": "record_count" }, { "nameIid": "10101010101010", @@ -1453,18 +1639,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -1498,7 +1672,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "transaction" + "stringValue": "@find_by" }, { "nameIid": "10101010101010", @@ -1510,6 +1684,14 @@ "trackUuid": "10101010101010", "name": "instantiation.active_record" }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vaw==\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -1547,13 +1729,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "@find_by" + "stringValue": "@find_by_many" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "@find_by_many" + "stringValue": "@type_for_column" } ], "type": "TYPE_SLICE_BEGIN", @@ -1561,40 +1743,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.name", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBdXRob3IgaWQ6IDMsIG5hbWU6ICJDaGFybGVzIERpY2tlbnMiPg==\n" - }, - { - "iid": "10101010101010", - "str": "Q2hhcmxlcyBEaWNrZW5z\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -1602,38 +1755,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "@find_by" + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "@type_for_column" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1656,7 +1815,11 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDMgTElNSVQgMiI=\n" + "str": "IzxBdXRob3IgaWQ6IDIsIG5hbWU6ICJCZWF0cml4IFBvdHRlciI+\n" + }, + { + "iid": "10101010101010", + "str": "QmVhdHJpeCBQb3R0ZXI=\n" } ] }, @@ -1667,7 +1830,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -1675,95 +1838,27 @@ "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": "binds" + "name": "object", + "stringValue": "@find_by_many" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "result", + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", + "name": "authors.1.books", "extraCounterTrackUuids": [ "10101010101010" ] @@ -1775,7 +1870,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -1784,34 +1879,35 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "transaction" + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1820,38 +1916,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "transaction" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.name", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1874,11 +1976,7 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxBdXRob3IgaWQ6IDQsIG5hbWU6ICLtlZzqsJUiPg==\n" - }, - { - "iid": "10101010101010", - "str": "7ZWc6rCV\n" + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDIgTElNSVQgMiI=\n" } ] }, @@ -1889,7 +1987,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -1897,29 +1995,80 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "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": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } ] }, "sequenceFlags": 101010101010 @@ -1929,26 +2078,64 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", + "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", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDQgTElNSVQgMiI=\n" + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" } ] }, "sequenceFlags": 101010101010 }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -1983,13 +2170,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": "class_name" }, { "nameIid": "10101010101010", @@ -2000,7 +2187,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": "binds" + "stringValue": "record_count" }, { "nameIid": "10101010101010", @@ -2027,18 +2214,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -2072,7 +2247,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "transaction" + "stringValue": "@find_by" }, { "nameIid": "10101010101010", @@ -2107,7 +2282,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -2115,40 +2290,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "binds.2" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "binds.3" } ], "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" ], + "name": "authors.2.name", "extraCounterTrackUuids": [ "10101010101010" ] @@ -2160,7 +2322,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2168,8 +2330,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -2181,7 +2350,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2192,12 +2370,26 @@ "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 }, { @@ -2205,7 +2397,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -2213,20 +2405,30 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "binds.2" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "type_casted_binds.2" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.2.books", "extraCounterTrackUuids": [ "10101010101010" - ], - "name": "Authorize: Book" + ] }, "sequenceFlags": 101010101010 }, @@ -2234,32 +2436,24 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" + "categories": [ + "Debug Inspect" ], - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Authorized" - ], - "categoryIids": [ + "categoryIids": [ "10101010101010" ], "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -2271,7 +2465,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2280,13 +2474,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2295,7 +2483,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2303,8 +2491,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "transaction" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -2316,7 +2511,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2325,43 +2520,7 @@ "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" + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2372,55 +2531,20 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Authorized" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ + "internedData": { + "debugAnnotationStringValues": [ { - "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDMgTElNSVQgMiI=\n" } - ], - "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 @@ -2430,7 +2554,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2438,8 +2562,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" } ], "type": "TYPE_SLICE_BEGIN", @@ -2451,7 +2582,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2460,13 +2591,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2475,37 +2600,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.title", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } ] }, "sequenceFlags": 101010101010 @@ -2515,27 +2645,7 @@ "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2544,37 +2654,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } ] }, "sequenceFlags": 101010101010 @@ -2584,23 +2699,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEgTElNSVQgMiI=\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2638,13 +2737,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": null + "stringValue": "class_name" }, { "nameIid": "10101010101010", @@ -2655,7 +2754,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": null + "stringValue": "record_count" }, { "nameIid": "10101010101010", @@ -2682,26 +2781,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJyZXZpZXdzIi4qIEZST00gInJldmlld3MiIFdIRVJFICJyZXZp\nZXdzIi4iYm9va19pZCIgPSA/IExJTUlUID8=\n" - }, - { - "iid": "10101010101010", - "str": "UmV2aWV3IExvYWQ=\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -2735,7 +2814,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": null + "stringValue": "@find_by" }, { "nameIid": "10101010101010", @@ -2747,14 +2826,6 @@ "trackUuid": "10101010101010", "name": "instantiation.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -2783,10 +2854,31 @@ "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.0.averageReview", - "flowIds": [ + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.name", + "extraCounterTrackUuids": [ "10101010101010" ] }, @@ -2796,8 +2888,36 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "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 }, @@ -2805,15 +2925,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2821,36 +2934,31 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Execution Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDQsIG5hbWU6ICLtlZzqsJUiPg==\n" + }, + { + "iid": "10101010101010", + "str": "7ZWc6rCV\n" + } + ] + }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Exec Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -2870,13 +2978,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": null + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "authorized?" + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -2884,25 +2992,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -2913,7 +3004,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2921,8 +3012,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -2934,7 +3032,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2943,13 +3041,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2958,17 +3050,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.0.books.0.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2985,89 +3095,61 @@ "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", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Execution Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDQgTElNSVQgMiI=\n" + } + ] + }, "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds.0" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "binds.1" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -3076,27 +3158,7 @@ "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -3105,66 +3167,109 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", + "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", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIgTElNSVQgMiI=\n" + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" } ] }, "sequenceFlags": 101010101010 }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -3199,13 +3304,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": null + "stringValue": "class_name" }, { "nameIid": "10101010101010", @@ -3216,7 +3321,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": null + "stringValue": "record_count" }, { "nameIid": "10101010101010", @@ -3243,18 +3348,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -3288,7 +3381,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": null + "stringValue": "@find_by" }, { "nameIid": "10101010101010", @@ -3323,16 +3416,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.0.books.1.averageReview", - "flowIds": [ + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "Authorize: Book" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Book" + } ] }, "sequenceFlags": 101010101010 @@ -3342,7 +3454,13 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -3351,14 +3469,28 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3366,42 +3498,23 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "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": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3409,36 +3522,8 @@ "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": "transaction" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@type_for_column", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -3450,45 +3535,21 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + "name": "Authorize: Book" }, - "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" - } + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "aWQ=\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI6OlNRTGl0ZTNJbnRlZ2Vy\n" - } + "extraCounterTrackUuids": [ + "10101010101010" ] }, "sequenceFlags": 101010101010 @@ -3498,7 +3559,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3506,74 +3567,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "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" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\naWQiID0gPw==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3586,7 +3593,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -3598,7 +3604,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3606,35 +3612,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "transaction" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3658,7 +3649,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3666,17 +3657,8 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -3688,18 +3670,21 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "name": "PerfettoSchema::AverageReview" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "PerfettoSchema::AverageReview" - } + "extraCounterTrackUuids": [ + "10101010101010" ] }, "sequenceFlags": 101010101010 @@ -3709,7 +3694,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3717,58 +3702,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", - "name": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "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" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUIGJvb2tzLmlkLCBBVkcoc3RhcnMpIGFzIGF2Z19yZXZpZXcgIEZS\nT00gImJvb2tzIiBJTk5FUiBKT0lOICJyZXZpZXdzIiBPTiAicmV2aWV3cyIu\nImJvb2tfaWQiID0gImJvb2tzIi4iaWQiIEdST1VQIEJZICJib29rcyIuImlk\nIg==\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3781,7 +3728,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -3793,7 +3739,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3801,35 +3747,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "transaction" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3853,7 +3784,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -3861,35 +3792,29 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.0.books.0.title", "extraCounterTrackUuids": [ "10101010101010" - ], - "flowIds": [ - "10101010101010" - ], - "name": "PerfettoSchema::OtherBook" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "PerfettoSchema::OtherBook" - } ] }, "sequenceFlags": 101010101010 @@ -3899,7 +3824,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -3907,106 +3832,27 @@ "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiA9ID8gQU5EICJib29r\ncyIuImlkIiAhPSA/IEdST1VQIEJZICJib29rcyIuImF1dGhvcl9pZCI=\n" - }, - { - "iid": "10101010101010", - "str": "Qm9vayBNYXhpbXVt\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -4023,58 +3869,37 @@ "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", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxLCB0aXRsZTogIkEgTWlkc3VtbWVyIE5pZ2h0J3MgRHJl\nYW0iLCBhdXRob3JfaWQ6IDE+\n" + }, + { + "iid": "10101010101010", + "str": "QSBNaWRzdW1tZXIgTmlnaHQncyBEcmVhbQ==\n" + } + ] + }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -4082,51 +3907,30 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@find_by", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "@find_by_many" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@model_class", - "stringValue": "transaction" + "name": "object", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@type_for_column", + "name": "result", "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.0.books.0.reviews", "extraCounterTrackUuids": [ "10101010101010" - ], - "flowIds": [ - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + ] }, "sequenceFlags": 101010101010 }, @@ -4135,78 +3939,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "name\n", + "name": "inspecting for", "stringValue": "type_casted_binds" - }, - { - "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", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -4215,14 +3976,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "sql.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4231,7 +3985,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -4240,18 +3994,26 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", + "name": "inspect instance of", "stringValue": "transaction" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -4260,14 +4022,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4278,12 +4033,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEgTElNSVQgMiI=\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -4291,19 +4056,46 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJyZXZpZXdzIi4qIEZST00gInJldmlld3MiIFdIRVJFICJyZXZp\nZXdzIi4iYm9va19pZCIgPSA/IExJTUlUID8=\n" + }, + { + "iid": "10101010101010", + "str": "UmV2aWV3IExvYWQ=\n" + } ] }, "sequenceFlags": 101010101010 @@ -4312,15 +4104,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4329,7 +4114,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -4337,13 +4122,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", @@ -4355,24 +4142,24 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010" - ], - "name": "PerfettoSchema::OtherBook" - } + "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", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4381,19 +4168,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } ] }, "sequenceFlags": 101010101010 @@ -4402,15 +4212,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4419,7 +4222,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -4427,34 +4230,72 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "dictEntries": [ + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ { "nameIid": "10101010101010", - "stringValue": "Book-1" + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" } ], - "name": "arguments" + "name": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "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": "result", + "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": "t5", - "flowIds": [ - "10101010101010" - ] - } + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -4463,22 +4304,13 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationNames": [ - { - "iid": "10101010101010", - "name": "id" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -4486,7 +4318,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Resolve Type" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -4495,26 +4327,24 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "resolved_type", + "name": "class_name", "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Resolve Type: Thing" + "name": "instantiation.active_record" }, "internedData": { - "eventNames": [ + "debugAnnotationStringValues": [ { "iid": "10101010101010", - "name": "Resolve Type: Thing" + "str": "UmV2aWV3\n" } ] }, @@ -4529,6 +4359,7 @@ "extraCounterValues": [ "10101010101010" ], + "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -4540,41 +4371,16 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" - } - ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ + "name": "authors.0.books.0.averageReview", + "flowIds": [ "10101010101010" - ], - "name": "Authorize: Book" - }, - "internedData": { - "debugAnnotationNames": [ - { - "iid": "10101010101010", - "name": "resolved_type" - } - ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UGVyZmV0dG9TY2hlbWE6OkJvb2s=\n" - } ] }, "sequenceFlags": 101010101010 @@ -4584,13 +4390,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4599,12 +4399,62 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ + "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" @@ -4619,7 +4469,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "authorized?" + "stringValue": "async" } ], "type": "TYPE_SLICE_BEGIN", @@ -4627,13 +4477,105 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.author", + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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, @@ -4708,7 +4650,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.1.otherBook", + "name": "authors.0.books.0.otherBook", "flowIds": [ "10101010101010" ] @@ -4752,10 +4694,28 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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, @@ -4779,30 +4739,18 @@ }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "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": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.0.books.1.title", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -4813,38 +4761,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4867,11 +4821,11 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxMCwgdGl0bGU6ICJUaGUgVGFsZSBvZiBQZXRlciBSYWJi\naXQiLCBhdXRob3JfaWQ6IDI+\n" + "str": "IzxCb29rIGlkOiAyLCB0aXRsZTogIlRoZSBNZXJyeSBXaXZlcyBvZiBXaW5k\nc29yIiwgYXV0aG9yX2lkOiAxPg==\n" }, { "iid": "10101010101010", - "str": "VGhlIFRhbGUgb2YgUGV0ZXIgUmFiYml0\n" + "str": "VGhlIE1lcnJ5IFdpdmVzIG9mIFdpbmRzb3I=\n" } ] }, @@ -4910,7 +4864,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews", + "name": "authors.0.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" ] @@ -4921,24 +4875,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEwIExJTUlUIDIi\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4947,7 +4922,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -4955,13 +4930,238 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": false, - "name": "async" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "transaction" }, { "nameIid": "10101010101010", - "arrayValues": [ - { + "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIgTElNSVQgMiI=\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" }, @@ -4976,7 +5176,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", @@ -5020,18 +5220,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -5107,7 +5295,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.1.books.0.averageReview", + "name": "authors.0.books.1.averageReview", "flowIds": [ "10101010101010" ] @@ -5151,66 +5339,182 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.0.books.0.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Dataloader::ActiveRecordSource" + } + ], + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + }, + { + "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": "@find_by" + }, + { + "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", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxCb29rIGlkOiA5LCB0aXRsZTogIk90aGVsbG8iLCBhdXRob3JfaWQ6IDE+\n" + "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI6OlNRTGl0ZTNJbnRlZ2Vy\n" } ] }, @@ -5221,7 +5525,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -5229,8 +5533,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.0" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" } ], "type": "TYPE_SLICE_BEGIN", @@ -5242,7 +5553,15 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\naWQiID0gPw==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -5251,22 +5570,70 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", + "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": [ - "Field Execution" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -5274,30 +5641,62 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "boolValue": false, + "name": "async" + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "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": "result", - "stringValue": "row_count" + "name": "transaction", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.1.books.0.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "sql.active_record" }, "sequenceFlags": 101010101010 }, @@ -5308,11 +5707,10 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -5323,7 +5721,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -5331,20 +5729,35 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", + "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" - ], - "name": "Authorize: Author" + ] }, "sequenceFlags": 101010101010 }, @@ -5368,42 +5781,49 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.1.books.0.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" ], - "categoryIids": [ + "extraCounterTrackUuids": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::AverageReview" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MA==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -5411,15 +5831,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5428,7 +5841,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -5436,42 +5849,50 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspecting for", "stringValue": null - }, - { - "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.0.books.1.averageReview", - "flowIds": [ + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MQ==\n" + } ] - } + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5480,7 +5901,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "categoryIids": [ "10101010101010" @@ -5488,59 +5909,33 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.title", "extraCounterTrackUuids": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" ], - "extraCounterTrackUuids": [ + "flowIds": [ "10101010101010", "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxMSwgdGl0bGU6ICJUaGUgVGFsZSBvZiBTcXVpcnJlbCBO\ndXRraW4iLCBhdXRob3JfaWQ6IDI+\n" - }, - { - "iid": "10101010101010", - "str": "VGhlIFRhbGUgb2YgU3F1aXJyZWwgTnV0a2lu\n" - } - ] + ], + "name": "PerfettoSchema::AverageReview" }, "sequenceFlags": 101010101010 }, @@ -5549,37 +5944,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIGJvb2tzLmlkLCBBVkcoc3RhcnMpIGFzIGF2Z19yZXZpZXcgIEZS\nT00gImJvb2tzIiBJTk5FUiBKT0lOICJyZXZpZXdzIiBPTiAicmV2aWV3cyIu\nImJvb2tfaWQiID0gImJvb2tzIi4iaWQiIEdST1VQIEJZICJib29rcyIuImlk\nIg==\n" + } ] }, "sequenceFlags": 101010101010 @@ -5589,23 +5989,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDExIExJTUlUIDIi\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5627,29 +6011,19 @@ }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], "name": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": null + "stringValue": "class_name" }, { "nameIid": "10101010101010", @@ -5670,16 +6044,6 @@ }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], "name": "type_casted_binds" } ], @@ -5687,18 +6051,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -5732,7 +6084,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": null + "stringValue": "@find_by" }, { "nameIid": "10101010101010", @@ -5766,79 +6118,70 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Field Execution" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "authors.1.books.1.averageReview", - "flowIds": [ + "extraCounterTrackUuids": [ "10101010101010" ] }, "sequenceFlags": 101010101010 }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" - }, - "sequenceFlags": 101010101010 - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "PerfettoSchema::OtherBook" + } ] }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -5854,10 +6197,6 @@ { "nameIid": "10101010101010", "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -5876,10 +6215,9 @@ "10101010101010" ], "flowIds": [ - "10101010101010", "10101010101010" ], - "name": "PerfettoSchema::AverageReview" + "name": "PerfettoSchema::OtherBook" }, "sequenceFlags": 101010101010 }, @@ -5888,58 +6226,47 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", - "name": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds.0" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "binds.1" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "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 }, @@ -5948,14 +6275,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "sql.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5964,7 +6284,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -5973,33 +6293,33 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "transaction" + "name": "inspect instance of", + "stringValue": "binds.0" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } ] }, "sequenceFlags": 101010101010 @@ -6009,13 +6329,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -6024,7 +6338,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -6032,17 +6346,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", @@ -6054,11 +6366,24 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::OtherBook" + "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 }, @@ -6081,14 +6406,6 @@ { "nameIid": "10101010101010", "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -6104,7 +6421,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", @@ -6132,14 +6449,6 @@ { "nameIid": "10101010101010", "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, { "nameIid": "10101010101010", "intValue": "10101010101010" @@ -6156,30 +6465,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiBJTiAoPywgPykgQU5E\nICJib29rcyIuImlkIiBOT1QgSU4gKD8sID8pIEdST1VQIEJZICJib29rcyIu\nImF1dGhvcl9pZCI=\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -6262,7 +6547,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -6271,19 +6556,65 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@find_by", + "name": "inspect instance of", "stringValue": null }, - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "@find_by_many" - }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::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": "transaction" + "stringValue": "@find_by" }, { "nameIid": "10101010101010", @@ -6318,6 +6649,106 @@ }, "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, @@ -6348,13 +6779,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": "class_name" }, { "nameIid": "10101010101010", @@ -6388,14 +6819,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -6429,7 +6852,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "transaction" + "stringValue": "@find_by" }, { "nameIid": "10101010101010", @@ -6526,10 +6949,6 @@ { "nameIid": "10101010101010", "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -6548,7 +6967,6 @@ "10101010101010" ], "flowIds": [ - "10101010101010", "10101010101010" ], "name": "PerfettoSchema::OtherBook" @@ -6620,6 +7038,12 @@ "debugAnnotations": [ { "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "stringValue": "Book-1" + } + ], "name": "arguments" }, { @@ -6637,35 +7061,18 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.1.otherBook", + "name": "t5", "flowIds": [ "10101010101010" ] } }, - { - "timestamp": "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -6673,8 +7080,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -6686,7 +7100,24 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "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 }, @@ -6697,9 +7128,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -6710,37 +7143,36 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Resolve Type" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "resolved_type", "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "row_count" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.author", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "Resolve Type: Thing" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Resolve Type: Thing" + } ] }, "sequenceFlags": 101010101010 @@ -6752,11 +7184,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -6788,40 +7218,20 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "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" + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "resolved_type" + } ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "authors.1.books.1.otherBook", - "flowIds": [ - "10101010101010" + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UGVyZmV0dG9TY2hlbWE6OkJvb2s=\n" + } ] }, "sequenceFlags": 101010101010 @@ -6831,39 +7241,13 @@ "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": [ + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -6890,30 +7274,18 @@ }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "async" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.1.books.0.averageReview", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.0.books.1.author", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -6924,38 +7296,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -6964,27 +7333,7 @@ "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -6993,38 +7342,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7043,14 +7398,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDE5IExJTUlUIDIi\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -7058,7 +7405,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -7066,82 +7413,20 @@ "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": "analyzers_count" - }, - { - "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" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" }, "sequenceFlags": 101010101010 }, @@ -7154,7 +7439,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -7166,59 +7450,14 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "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": [ - "Field Execution" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "authors.2.books.0.averageReview", + "name": "authors.0.books.1.otherBook", "flowIds": [ "10101010101010" ] @@ -7289,50 +7528,24 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "doubleValue": 101010101010, + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.1.books.0.otherBook", + "name": "authors.0.books.0.averageReview", "flowIds": [ "10101010101010" ] } }, - { - "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -7340,8 +7553,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -7353,7 +7573,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7364,9 +7593,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -7397,7 +7628,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "@find_by" + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -7405,25 +7636,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.0.title", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -7434,7 +7648,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -7442,8 +7656,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -7455,7 +7676,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -7464,13 +7685,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7478,59 +7693,28 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Field Execution" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_SLICE_BEGIN", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "authors.2.books.0.otherBook", - "flowIds": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" ], - "categoryIids": [ + "extraCounterTrackUuids": [ + "10101010101010", "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" + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxMCwgdGl0bGU6ICJUaGUgVGFsZSBvZiBQZXRlciBSYWJi\naXQiLCBhdXRob3JfaWQ6IDI+\n" + }, + { + "iid": "10101010101010", + "str": "VGhlIFRhbGUgb2YgUGV0ZXIgUmFiYml0\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -7557,30 +7741,18 @@ }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "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": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.1.books.0.reviews", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -7591,38 +7763,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -7631,27 +7800,7 @@ "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7660,38 +7809,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "transaction" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7714,12 +7869,166 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIwIExJTUlUIDIi\n" + "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEwIExJTUlUIDIi\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, @@ -7754,7 +8063,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", @@ -7798,18 +8107,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -7885,7 +8182,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.2.books.1.averageReview", + "name": "authors.1.books.0.averageReview", "flowIds": [ "10101010101010" ] @@ -7929,26 +8226,44 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "name": "Create Source Fiber", - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" + "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" + ] } }, { @@ -7956,7 +8271,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -7964,17 +8279,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -7986,11 +8299,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::AverageReview" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7999,7 +8317,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8007,50 +8325,36 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, - { - "nameIid": "10101010101010", - "name": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8061,13 +8365,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiA5LCB0aXRsZTogIk90aGVsbG8iLCBhdXRob3JfaWQ6IDE+\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -8075,7 +8388,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -8083,35 +8396,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "transaction" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -8135,7 +8433,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -8143,33 +8441,30 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@find_by_many" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.1.books.0.author", "extraCounterTrackUuids": [ "10101010101010" - ], - "flowIds": [ - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::OtherBook" + ] }, "sequenceFlags": 101010101010 }, @@ -8178,130 +8473,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "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" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8319,14 +8519,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8334,19 +8555,21 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" @@ -8354,22 +8577,12 @@ }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -8377,36 +8590,8 @@ "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": "transaction" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@type_for_column", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -8418,90 +8603,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" - }, - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "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" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] + "name": "Authorize: Author" }, "sequenceFlags": 101010101010 }, @@ -8514,7 +8616,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -8526,41 +8627,15 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "transaction" - }, - { - "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": [ + "name": "authors.1.books.0.otherBook", + "flowIds": [ "10101010101010" ] }, @@ -8571,13 +8646,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8593,13 +8662,7 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "Fiber Exit", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -8624,7 +8687,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -8632,47 +8695,62 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "doubleValue": 101010101010, + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], + "name": "authors.0.books.1.averageReview", "flowIds": [ - "10101010101010", "10101010101010" - ], - "name": "PerfettoSchema::OtherBook" + ] } }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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 }, @@ -8680,21 +8758,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "Fiber Exit", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8702,15 +8767,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -8744,24 +8810,11 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.1.books.1.otherBook", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.1.books.1.title", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -8772,7 +8825,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8780,8 +8833,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -8793,7 +8853,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8804,12 +8873,26 @@ "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 }, { @@ -8837,7 +8920,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "@find_by" + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -8845,25 +8928,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.1.reviews", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -8874,7 +8940,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8882,8 +8948,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -8895,7 +8968,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8904,13 +8977,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8919,17 +8986,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.2.books.1.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8946,31 +9031,24 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDExIExJTUlUIDIi\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -8979,50 +9057,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds.0" }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "binds.1" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.2.books.0.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9031,37 +9103,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.title", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } ] }, "sequenceFlags": 101010101010 @@ -9071,27 +9148,7 @@ "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9100,7 +9157,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -9108,29 +9165,34 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } ] }, "sequenceFlags": 101010101010 @@ -9140,23 +9202,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI2IExJTUlUIDIi\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9194,7 +9240,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", @@ -9238,18 +9284,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -9325,7 +9359,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.3.books.0.averageReview", + "name": "authors.1.books.1.averageReview", "flowIds": [ "10101010101010" ] @@ -9369,68 +9403,71 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.2.books.0.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9439,7 +9476,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -9447,8 +9484,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -9460,7 +9504,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -9469,13 +9513,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9484,7 +9522,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "categoryIids": [ "10101010101010" @@ -9492,47 +9530,33 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.author", "extraCounterTrackUuids": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" ], - "extraCounterTrackUuids": [ + "flowIds": [ "10101010101010", "10101010101010" - ] + ], + "name": "PerfettoSchema::AverageReview" }, "sequenceFlags": 101010101010 }, @@ -9541,7 +9565,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -9549,8 +9573,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", @@ -9562,7 +9593,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -9571,13 +9602,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9586,17 +9611,58 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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": "authors.3.books.0.otherBook", - "flowIds": [ - "10101010101010" - ] + "name": "sql.active_record" }, "sequenceFlags": 101010101010 }, @@ -9605,7 +9671,14 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "name": "sql.active_record", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -9614,67 +9687,45 @@ "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" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "class_name", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "intValue": "10101010101010", + "name": "record_count" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.2.books.1.averageReview", - "flowIds": [ + "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", @@ -9683,11 +9734,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -9698,38 +9747,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -9738,27 +9784,7 @@ "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9767,38 +9793,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "@find_by" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -9807,23 +9830,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI3IExJTUlUIDIi\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9832,17 +9839,12 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Dataloader" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, { "nameIid": "10101010101010", "arrayValues": [ @@ -9855,65 +9857,66 @@ "stringValueIid": "10101010101010" } ], - "name": "binds" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, + "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": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "binds.1" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiBJTiAoPywgPykgQU5E\nICJib29rcyIuImlkIiBOT1QgSU4gKD8sID8pIEdST1VQIEJZICJib29rcyIu\nImF1dGhvcl9pZCI=\n" } ] }, @@ -9924,14 +9927,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "sql.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9940,7 +9936,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -9949,52 +9945,33 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": null + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "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.averageReview", - "flowIds": [ - "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } ] }, "sequenceFlags": 101010101010 @@ -10013,57 +9990,7 @@ "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": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -10071,17 +9998,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -10093,71 +10018,25 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::AverageReview" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, + "internedData": { + "debugAnnotationNames": [ { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, + "iid": "10101010101010", + "name": "binds.2" + } + ], + "debugAnnotationStringValues": [ { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" }, { - "nameIid": "10101010101010", - "name": "type_casted_binds" + "iid": "10101010101010", + "str": "YmluZHMuMg==\n" } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "sql.active_record" + ] }, "sequenceFlags": 101010101010 }, @@ -10166,14 +10045,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "sql.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10182,7 +10054,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -10191,33 +10063,43 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "transaction" + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "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 @@ -10227,13 +10109,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10242,7 +10118,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -10250,17 +10126,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", @@ -10272,11 +10146,34 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "type_casted_binds.2" + }, + { + "iid": "10101010101010", + "name": "type_casted_binds.3" + } ], - "name": "PerfettoSchema::OtherBook" + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10322,7 +10219,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", @@ -10374,26 +10271,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -10471,6 +10348,52 @@ "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, @@ -10497,7 +10420,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "@model_class", - "stringValue": "transaction" + "stringValue": "@find_by" }, { "nameIid": "10101010101010", @@ -10532,6 +10455,106 @@ }, "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, @@ -10562,13 +10585,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": "class_name" }, { "nameIid": "10101010101010", @@ -10600,15 +10623,12334 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] + "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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "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.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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDE5IExJTUlUIDIi\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": 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": [ + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "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": "binds.2" + } + ], + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIwIExJTUlUIDIi\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": 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": [ + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "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.2" + } + ], + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI2IExJTUlUIDIi\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": 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": [ + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "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": "10101010101010" + } + ], + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI3IExJTUlUIDIi\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": 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": [ + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "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.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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::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" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAxPg==\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": "IzxSZXZpZXcgaWQ6IDIsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAxPg==\n" + }, + { + "iid": "10101010101010", + "str": "Mg==\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" + }, + { + "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" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDUsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAyPg==\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": [ + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by" + }, + { + "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" + ], + "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": [ + "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", + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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" + ], + "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": [ + "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": [ + "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": [ + "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", + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "@find_by_many" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@type_for_column" + } + ], + "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" + ], + "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": 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" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDYsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAyPg==\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": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDM3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTA+\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": "IzxSZXZpZXcgaWQ6IDM4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTA+\n" + }, + { + "iid": "10101010101010", + "str": "Mw==\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" + }, + { + "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", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDQxLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTE+\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": [ + "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": [ + "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": [ + "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": [ + "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", + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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.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" + ], + "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": [ + "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": [ + "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": [ + "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", + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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": "binds.2" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "binds.3" + } + ], + "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" + ], + "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": 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" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDQyLCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTE+\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": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDczLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTk+\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": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDc0LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTk+\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" + }, + { + "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", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDc3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMjA+\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": [ + "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": [ + "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": [ + "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": [ + "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", + "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": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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.2" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "binds.3" + } + ], + "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" + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" }, "sequenceFlags": 101010101010 }, @@ -10617,14 +22959,39 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Dataloader" + ], + "categoryIids": [ "10101010101010" ], - "name": "sql.active_record", - "extraCounterTrackUuids": [ + "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 }, @@ -10633,7 +23000,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -10641,21 +23008,18 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "transaction" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "sequenceFlags": 101010101010 + "flowIds": [ + "10101010101010" + ], + "name": "Authorize: Review" + } }, { "timestamp": "10101010101010", @@ -10666,7 +23030,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -10677,14 +23040,28 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ + "categories": [ + "Authorized" + ], + "categoryIids": [ "10101010101010" ], - "extraCounterTrackUuids": [ + "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 }, @@ -10700,13 +23077,7 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "Fiber Exit", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -10731,7 +23102,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -10739,33 +23110,17 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], "flowIds": [ - "10101010101010", "10101010101010" ], - "name": "PerfettoSchema::OtherBook" + "name": "Authorize: Review" } }, { @@ -10788,17 +23143,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Exit", + "name": "authors.2.books.0.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" ] @@ -10810,14 +23183,69 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "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 }, @@ -10840,7 +23268,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": null + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -10851,11 +23279,61 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.2.books.1.otherBook", - "flowIds": [ + "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", @@ -10884,23 +23362,13 @@ "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" - } - ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ + "flowIds": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "Authorize: Review" }, "sequenceFlags": 101010101010 }, @@ -10909,13 +23377,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10924,38 +23386,14 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "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", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.3.books.1.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -10963,12 +23401,19 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Dataloader" + ], + "categoryIids": [ + "10101010101010" + ], + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], + "name": "Create Source Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" @@ -10976,12 +23421,22 @@ }, "sequenceFlags": 101010101010 }, + { + "trustedPacketSequenceId": 101010101010, + "sequenceFlags": 101010101010, + "trackDescriptor": { + "uuid": "10101010101010", + "name": "Source Fiber #1010", + "parentUuid": "10101010101010", + "childOrdering": "CHRONOLOGICAL" + } + }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -10989,8 +23444,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -11002,7 +23464,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -11011,13 +23473,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11026,16 +23482,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.3.books.1.otherBook", - "flowIds": [ + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDc4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMjA+\n" + } ] }, "sequenceFlags": 101010101010 @@ -11054,14 +23536,43 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwMSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI2Pg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -11069,15 +23580,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11086,50 +23590,52 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.3.books.0.averageReview", - "flowIds": [ + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwMiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI2Pg==\n" + } ] - } + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11138,24 +23644,57 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Dataloader" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "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", + "10101010101010", "10101010101010" ], - "name": "Authorize: Review" + "name": "PerfettoSchema::Authorized" }, "internedData": { - "eventNames": [ + "debugAnnotationStringValues": [ { "iid": "10101010101010", - "name": "Authorize: Review" + "str": "IzxSZXZpZXcgaWQ6IDEwNSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI3Pg==\n" } ] }, @@ -11165,24 +23704,14 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -11198,7 +23727,13 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -11207,59 +23742,14 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "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": { - "type": "TYPE_SLICE_END", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAyOSwgdGl0bGU6ICLrhbjrnpHrrLTriqzsmIHsm5AiLCBh\ndXRob3JfaWQ6IDQ+\n" - } - ] + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -11283,15 +23773,11 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ + "flowIds": [ "10101010101010" ], - "name": "Authorize: Book" - }, - "sequenceFlags": 101010101010 + "name": "Authorize: Review" + } }, { "timestamp": "10101010101010", @@ -11374,7 +23860,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -11382,26 +23868,17 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.3.books.1.averageReview", "flowIds": [ "10101010101010" - ] + ], + "name": "Authorize: Review" } }, { @@ -11411,11 +23888,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -11440,13 +23915,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "authorized?" + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "sql" + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -11454,25 +23929,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.1.otherBook.title", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -11483,18 +23941,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -11511,35 +23986,12 @@ "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", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" @@ -11547,22 +23999,12 @@ }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -11570,28 +24012,30 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.3.books.1.author.name", "extraCounterTrackUuids": [ "10101010101010" - ], - "flowIds": [ - "10101010101010" - ], - "name": "PerfettoSchema::OtherBook" + ] }, "sequenceFlags": 101010101010 }, @@ -11600,90 +24044,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null - }, + ], + "debugAnnotations": [ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11694,10 +24092,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -11707,11 +24106,36 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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" ] @@ -11723,7 +24147,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -11731,21 +24155,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -11757,32 +24175,39 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "PerfettoSchema::Authorized" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "PerfettoSchema::Authorized" - } - ], "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAxPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDIsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAxPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDUsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAyPg==\n" + "str": "64W4656R66y064qs7JiB7JuQ\n" } ] }, @@ -11792,11 +24217,36 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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" ] @@ -11808,20 +24258,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "@find_by" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -11829,15 +24294,25 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -11864,31 +24339,17 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.3.books.1.otherBook", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.0.books.0.reviews.0.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -11899,7 +24360,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -11907,8 +24368,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -11920,7 +24388,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11931,9 +24408,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -11944,18 +24423,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", + "name": "authors.0.books.0.reviews.0.user", "flowIds": [ "10101010101010" - ], - "name": "Authorize: Review" + ] }, "sequenceFlags": 101010101010 }, @@ -12064,9 +24542,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -12074,25 +24551,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "t5.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.0.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -12103,38 +24563,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "authorized?" + "name": "inspect instance of", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "sql" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.author.name", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12160,18 +24626,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", + "name": "authors.0.books.0.reviews.1.user", "flowIds": [ "10101010101010" - ], - "name": "Authorize: Review" + ] }, "sequenceFlags": 101010101010 }, @@ -12262,18 +24727,74 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "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": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -12290,15 +24811,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -12307,14 +24829,26 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "name": "authors.0.books.1.reviews.0.user", + "flowIds": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12323,78 +24857,92 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Dataloader" ], "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" - } - ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "flowIds": [ - "10101010101010" - ], - "name": "Authorize: Review" - } + "name": "Fiber Yield" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "VXNlcg==\n" + } ] }, "sequenceFlags": 101010101010 @@ -12404,23 +24952,74 @@ "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", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010", "10101010101010", "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "T3RoZWxsbw==\n" - } - ] + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" }, "sequenceFlags": 101010101010 }, @@ -12429,37 +25028,46 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "row_count" + "name": "inspect instance of", + "stringValue": "type_casted_binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "record_count" + "name": "inspecting for", + "stringValue": "binds.1" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.author.name", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiIElOICg/LCA/KQ==\n" + }, + { + "iid": "10101010101010", + "str": "VXNlciBMb2Fk\n" + } ] }, "sequenceFlags": 101010101010 @@ -12469,15 +25077,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12486,18 +25086,43 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -12515,62 +25140,71 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } ] }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": false, + "name": "async" + }, { "nameIid": "10101010101010", "arrayValues": [ @@ -12581,55 +25215,57 @@ { "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", - "stringValueIid": "10101010101010" + "intValue": "10101010101010" }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010" + "intValue": "10101010101010" } ], - "name": "fetch keys" + "name": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDYsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAyPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDM3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDM4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDQxLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTE+\n" - } - ] + "name": "sql.active_record" }, "sequenceFlags": 101010101010 }, @@ -12642,6 +25278,7 @@ "extraCounterValues": [ "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -12653,17 +25290,40 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Exit", + "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -12674,15 +25334,14 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -12691,7 +25350,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -12699,31 +25358,36 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12732,18 +25396,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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": "Authorize: Review" + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwNiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI3Pg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -12752,7 +25442,13 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -12768,7 +25464,13 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -12852,9 +25554,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -12862,25 +25563,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.otherBook.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.1.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -12891,75 +25575,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "row_count" + "name": "inspect instance of", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "record_count" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -12976,31 +25620,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13009,7 +25638,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -13017,28 +25646,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "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" ], + "name": "authors.0.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -13050,18 +25678,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13079,14 +25724,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13094,15 +25769,24 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAyLCB1c2VybmFtZTogInRlbmRlcmxvdmUiPg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -13126,11 +25810,23 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: User" + } + ] + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -13168,22 +25864,67 @@ "name": "object", "stringValue": null }, + { + "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": "result", + "name": "inspect instance of", "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13202,14 +25943,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "VGhlIFN0b3J5IG9mIGEgRmllcmNlIEJhZCBSYWJiaXQ=\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -13231,13 +25964,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "@find_by" + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "@find_by_many" + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -13245,25 +25978,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.0.reviews.0.user", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -13274,18 +25990,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13303,14 +26036,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13318,42 +26072,42 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAxLCB1c2VybmFtZTogIm1hdHoiPg==\n" + } + ] + }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -13361,25 +26115,8 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -13391,33 +26128,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDQyLCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTE+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDczLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTk+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc0LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTk+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMjA+\n" - } - ] + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -13441,17 +26152,34 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", + "name": "authors.1.books.0.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" ] @@ -13463,23 +26191,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -13487,18 +26199,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -13507,9 +26239,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -13520,27 +26254,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "name": "authors.1.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13549,14 +26294,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13564,15 +26330,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13581,7 +26340,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -13589,18 +26348,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -13609,9 +26388,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -13622,7 +26403,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -13630,30 +26411,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -13664,11 +26435,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -13693,13 +26462,12 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "@find_by" + "stringValue": null }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "@find_by_many" + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -13707,25 +26475,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.1.reviews.0.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -13736,18 +26487,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13756,23 +26524,7 @@ "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" + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13780,15 +26532,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13797,7 +26550,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -13805,28 +26558,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "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" ], + "name": "authors.1.books.1.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -13838,18 +26590,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13867,14 +26636,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13882,15 +26672,25 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13914,11 +26714,15 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -13956,22 +26760,67 @@ "name": "object", "stringValue": null }, + { + "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": "result", + "name": "inspect instance of", "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13990,14 +26839,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "R3JlYXQgRXhwZWN0YXRpb25z\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -14033,25 +26874,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.1.reviews.1.user", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -14062,18 +26886,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14091,14 +26932,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14106,19 +26968,21 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" @@ -14126,22 +26990,12 @@ }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -14149,25 +27003,8 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -14179,33 +27016,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMjA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwMSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI2Pg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwMiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI2Pg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwNSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI3Pg==\n" - } - ] + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -14229,17 +27040,34 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", + "name": "authors.2.books.0.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" ] @@ -14251,23 +27079,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -14275,18 +27087,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -14295,9 +27127,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -14308,27 +27142,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "name": "authors.2.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14337,14 +27182,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14352,15 +27218,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14369,7 +27228,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -14377,18 +27236,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -14397,9 +27276,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -14410,7 +27291,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -14418,30 +27299,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -14452,11 +27323,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -14485,9 +27354,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -14495,25 +27363,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.0.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -14524,38 +27375,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14574,14 +27431,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "64W4656R66y064qs7JiB7JuQ\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -14617,25 +27466,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.otherBook.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.0.reviews.1.user", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -14646,37 +27478,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14685,15 +27515,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14702,17 +27524,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.0.books.0.reviews.0.user", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14729,31 +27569,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14777,11 +27602,15 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -14830,96 +27659,19 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.1.reviews.0.stars", "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.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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -14927,18 +27679,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -14947,9 +27719,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -14978,8 +27752,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -14987,7 +27762,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.0.stars", + "name": "authors.2.books.1.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -14998,16 +27773,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15016,17 +27820,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.0.books.1.reviews.0.user", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -15043,15 +27865,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -15060,41 +27883,52 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -15102,64 +27936,28 @@ "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 + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@type_for_column", + "name": "object", "stringValue": null }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.2.books.1.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" - ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "VXNlcg==\n" - } ] }, "sequenceFlags": 101010101010 @@ -15169,98 +27967,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", + "name": "inspect instance of", "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" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiIElOICg/LCA/KQ==\n" - }, - { - "iid": "10101010101010", - "str": "VXNlciBMb2Fk\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15271,10 +28015,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -15285,27 +28030,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", + "name": "object", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -15313,15 +28069,36 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -15330,13 +28107,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15345,7 +28116,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -15353,13 +28124,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -15371,18 +28144,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwNiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI3Pg==\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15393,9 +28164,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -15406,17 +28179,40 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -15428,14 +28224,37 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -15444,7 +28263,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -15452,18 +28271,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -15472,9 +28311,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -15503,8 +28344,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -15512,7 +28354,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.1.stars", + "name": "authors.3.books.0.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -15523,16 +28365,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15541,38 +28412,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15591,14 +28468,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxVc2VyIGlkOiAyLCB1c2VybmFtZTogInRlbmRlcmxvdmUiPg==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -15629,14 +28498,6 @@ ], "name": "Authorize: User" }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "Authorize: User" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -15686,25 +28547,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.0.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.0.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -15715,38 +28559,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15765,14 +28615,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxVc2VyIGlkOiAxLCB1c2VybmFtZTogIm1hdHoiPg==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -15780,7 +28622,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -15788,32 +28630,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.3.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -15825,37 +28662,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -15864,15 +28699,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15881,38 +28708,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16010,13 +28843,59 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.0.stars", + "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": "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, @@ -16067,7 +28946,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.0.user", + "name": "authors.3.books.1.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16078,16 +28957,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16096,7 +29004,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -16104,8 +29012,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -16117,7 +29032,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16128,9 +29052,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -16141,7 +29067,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -16149,29 +29075,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -16182,11 +29099,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16215,9 +29130,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -16225,25 +29139,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.1.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16254,7 +29151,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -16262,8 +29159,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -16275,7 +29179,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16286,9 +29199,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -16317,8 +29232,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -16326,7 +29242,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.0.stars", + "name": "authors.3.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16337,16 +29253,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16355,38 +29300,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16475,8 +29426,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -16484,25 +29436,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16513,38 +29448,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16563,6 +29504,14 @@ "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "dGVuZGVybG92ZQ==\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -16570,7 +29519,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -16578,32 +29527,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.1.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16615,37 +29559,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16664,6 +29615,14 @@ "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "bWF0eg==\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -16689,35 +29648,18 @@ }, { "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": { - "type": "TYPE_SLICE_END", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.1.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16728,7 +29670,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -16736,8 +29678,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -16749,7 +29698,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16760,9 +29718,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -16791,8 +29751,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -16800,25 +29761,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16829,38 +29773,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16886,7 +29836,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -16894,32 +29844,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.1.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16931,37 +29876,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17015,25 +29967,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.0.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17044,7 +29979,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -17052,8 +29987,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -17065,7 +30007,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17076,9 +30027,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -17107,8 +30060,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -17116,25 +30070,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17145,38 +30082,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17202,7 +30145,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -17210,32 +30153,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" - } - ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "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.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" ] @@ -17247,37 +30185,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17331,25 +30276,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.0.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17360,7 +30288,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -17368,8 +30296,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -17381,7 +30316,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17392,9 +30336,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -17423,8 +30369,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -17432,13 +30379,59 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.1.stars", + "name": "authors.3.books.0.reviews.0.user.username", "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": "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, @@ -17489,25 +30482,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.1.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17518,7 +30494,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -17526,8 +30502,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -17539,7 +30522,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17550,9 +30542,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -17591,36 +30585,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "dGVuZGVybG92ZQ==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -17628,38 +30597,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17678,14 +30653,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "bWF0eg==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -17721,25 +30688,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17750,38 +30700,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17807,35 +30763,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "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", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.1.user.username", + "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -17846,16 +30784,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ - "10101010101010", + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -17889,70 +30826,46 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.2.books.0.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", + "name": "authors.0.books.0.reviews.0.user", + "flowIds": [ "10101010101010" ] - }, - "sequenceFlags": 101010101010 + } }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -17961,15 +30874,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17978,38 +30883,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18035,7 +30946,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -18043,30 +30954,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -18077,11 +30978,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -18120,25 +31019,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -18149,38 +31031,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18206,35 +31094,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "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", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.0.user.username", + "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -18245,16 +31115,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ - "10101010101010", + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -18288,52 +31157,46 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.3.books.1.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", + "name": "authors.0.books.0.reviews.1.user", + "flowIds": [ "10101010101010" ] - }, - "sequenceFlags": 101010101010 + } }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -18341,15 +31204,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18358,36 +31214,46 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.0.books.0.reviews.0.user", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -18484,13 +31350,59 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.0.user.username", + "name": "authors.0.books.0.reviews.1.user.username", "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": "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, @@ -18576,35 +31488,18 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.0.reviews.1.user", + "name": "authors.0.books.1.reviews.0.user", "flowIds": [ "10101010101010" ] } }, - { - "timestamp": "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -18612,8 +31507,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -18625,7 +31527,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -18634,13 +31536,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18649,38 +31545,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18706,20 +31608,28 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -18727,15 +31637,14 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -18769,24 +31678,11 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.1.reviews.0.user", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.0.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -18797,7 +31693,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -18805,8 +31701,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -18818,7 +31721,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -18827,53 +31730,7 @@ "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.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, diff --git a/spec/graphql/tracing/snapshots/example-rails-8-1.json b/spec/graphql/tracing/snapshots/example-rails-8-1.json index 79fa536a3d..aa630e12e1 100644 --- a/spec/graphql/tracing/snapshots/example-rails-8-1.json +++ b/spec/graphql/tracing/snapshots/example-rails-8-1.json @@ -34,6 +34,16 @@ { "iid": "10101010101010", "name": "Resolve Type" + }, + { + "iid": "10101010101010", + "name": "Debug Inspect" + } + ], + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" } ], "debugAnnotationNames": [ @@ -43,15 +53,23 @@ }, { "iid": "10101010101010", - "name": "arguments" + "name": "result" }, { "iid": "10101010101010", - "name": "result" + "name": "arguments" }, { "iid": "10101010101010", "name": "fetch keys" + }, + { + "iid": "10101010101010", + "name": "inspect instance of" + }, + { + "iid": "10101010101010", + "name": "inspecting for" } ], "debugAnnotationStringValues": [ @@ -430,7 +448,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "validate?" + "stringValue": "query_string" } ], "type": "TYPE_SLICE_BEGIN", @@ -453,6 +471,64 @@ }, "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, @@ -478,6 +554,102 @@ }, "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, @@ -512,13 +684,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "query_string" + "stringValue": "analyzers" }, { "nameIid": "10101010101010", @@ -529,7 +701,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": "valid?" + "stringValue": "analyzers_count" }, { "nameIid": "10101010101010", @@ -548,34 +720,6 @@ }, "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" - }, { "iid": "10101010101010", "name": "transaction" @@ -590,14 +734,6 @@ } ], "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJhdXRob3JzIi4qIEZST00gImF1dGhvcnMi\n" - }, - { - "iid": "10101010101010", - "str": "QXV0aG9yIExvYWQ=\n" - }, { "iid": "10101010101010", "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI=\n" @@ -637,7 +773,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "analyzers" + "stringValue": "binds" }, { "nameIid": "10101010101010", @@ -970,13 +1106,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "authorized?" + "stringValue": "async" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "sql" + "stringValue": "allow_retry" } ], "type": "TYPE_SLICE_BEGIN", @@ -991,77 +1127,62 @@ }, "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "authorized?" + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "name\n" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", + "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", @@ -1079,7 +1200,11 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDEgTElNSVQgMiI=\n" + "str": "IzxBdXRob3IgaWQ6IDEsIG5hbWU6ICJXaWxsaWFtIFNoYWtlc3BlYXJlIj4=\n" + }, + { + "iid": "10101010101010", + "str": "V2lsbGlhbSBTaGFrZXNwZWFyZQ==\n" } ] }, @@ -1090,7 +1215,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -1098,118 +1223,27 @@ "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": "binds" + "name": "object", + "stringValue": "async" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "result", + "stringValue": "transaction" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationNames": [ - { - "iid": "10101010101010" - } - ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\nYXV0aG9yX2lkIiA9ID8gTElNSVQgPw==\n" - }, - { - "iid": "10101010101010", - "str": "Qm9vayBMb2Fk\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", + "name": "authors.0.books", "extraCounterTrackUuids": [ "10101010101010" ] @@ -1221,7 +1255,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -1230,26 +1264,26 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "Qm9vaw==\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -1258,14 +1292,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1274,41 +1301,55 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "transaction" + "name": "inspect instance of", + "stringValue": "connection" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "affected_rows" + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.name", "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, @@ -1328,11 +1369,7 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxBdXRob3IgaWQ6IDIsIG5hbWU6ICJCZWF0cml4IFBvdHRlciI+\n" - }, - { - "iid": "10101010101010", - "str": "QmVhdHJpeCBQb3R0ZXI=\n" + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDEgTElNSVQgMiI=\n" } ] }, @@ -1343,37 +1380,60 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "transaction" + "name": "inspect instance of", + "stringValue": "record_count" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "row_count" + "name": "inspecting for", + "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books", "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 @@ -1383,23 +1443,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDIgTElNSVQgMiI=\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1408,7 +1452,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -1416,82 +1460,35 @@ "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": "binds" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "type_casted_binds.0" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.1" + } + ], "debugAnnotationStringValues": [ { "iid": "10101010101010", @@ -1499,54 +1496,13 @@ }, { "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": "connection" + "str": "QWN0aXZlTW9kZWw6OkF0dHJpYnV0ZTo6V2l0aENhc3RWYWx1ZQ==\n" }, { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "iid": "10101010101010", + "str": "YmluZHMuMQ==\n" } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" + ] }, "sequenceFlags": 101010101010 }, @@ -1555,14 +1511,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1571,106 +1520,52 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "@model_class" + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.name", "extraCounterTrackUuids": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { - "debugAnnotationStringValues": [ + "debugAnnotationNames": [ { "iid": "10101010101010", - "str": "IzxBdXRob3IgaWQ6IDMsIG5hbWU6ICJDaGFybGVzIERpY2tlbnMiPg==\n" + "name": "type_casted_binds.0" }, { "iid": "10101010101010", - "str": "Q2hhcmxlcyBEaWNrZW5z\n" + "name": "type_casted_binds.1" } - ] - }, - "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 - }, + "debugAnnotationStringValues": [ { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "@find_by" + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.2.books", - "extraCounterTrackUuids": [ - "10101010101010" ] }, "sequenceFlags": 101010101010 @@ -1680,23 +1575,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDMgTElNSVQgMiI=\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1744,13 +1623,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": "row_count" }, { "nameIid": "10101010101010", @@ -1761,7 +1640,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": "binds" + "stringValue": "affected_rows" }, { "nameIid": "10101010101010", @@ -1788,18 +1667,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -1833,7 +1700,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "connection" + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -1845,6 +1712,14 @@ "trackUuid": "10101010101010", "name": "instantiation.active_record" }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vaw==\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -1882,13 +1757,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "id" + "stringValue": "@model_class" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "resolved_type" + "stringValue": "@find_by" } ], "type": "TYPE_SLICE_BEGIN", @@ -1896,79 +1771,56 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.name", + "name": "authors.1.name", "extraCounterTrackUuids": [ "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "id" + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1991,7 +1843,11 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDQgTElNSVQgMiI=\n" + "str": "IzxBdXRob3IgaWQ6IDIsIG5hbWU6ICJCZWF0cml4IFBvdHRlciI+\n" + }, + { + "iid": "10101010101010", + "str": "QmVhdHJpeCBQb3R0ZXI=\n" } ] }, @@ -2002,7 +1858,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -2010,105 +1866,27 @@ "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": "binds" + "name": "object", + "stringValue": "@model_class" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "result", + "stringValue": "@find_by_many" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", + "name": "authors.1.books", "extraCounterTrackUuids": [ "10101010101010" ] @@ -2120,7 +1898,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2129,18 +1907,26 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2149,14 +1935,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2165,7 +1944,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2173,8 +1952,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -2186,15 +1972,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "Authorize: Book" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2205,12 +1992,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDIgTElNSVQgMiI=\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -2218,7 +2015,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2226,8 +2023,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", @@ -2239,7 +2043,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2248,13 +2052,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2263,7 +2061,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2271,8 +2069,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", @@ -2284,7 +2089,15 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -2293,13 +2106,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2308,7 +2115,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2316,10 +2123,17 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" - } - ], + "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", @@ -2329,7 +2143,15 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -2338,13 +2160,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2353,28 +2169,88 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, { "nameIid": "10101010101010", "boolValue": true, - "name": "authorized?" + "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", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: Book" + "name": "sql.active_record" }, "sequenceFlags": 101010101010 }, @@ -2387,6 +2263,7 @@ "extraCounterValues": [ "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -2398,7 +2275,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -2406,20 +2283,19 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: Book" + "name": "instantiation.active_record" }, "sequenceFlags": 101010101010 }, @@ -2432,6 +2308,7 @@ "extraCounterValues": [ "10101010101010" ], + "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -2443,7 +2320,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -2451,32 +2328,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "resolved_type" } ], "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" ], + "name": "authors.2.name", "extraCounterTrackUuids": [ "10101010101010" ] @@ -2488,7 +2360,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2496,8 +2368,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -2509,7 +2388,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2520,12 +2408,26 @@ "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 }, { @@ -2547,13 +2449,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": null + "stringValue": "id" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": null + "stringValue": "binds.2" } ], "type": "TYPE_SLICE_BEGIN", @@ -2561,40 +2463,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxLCB0aXRsZTogIkEgTWlkc3VtbWVyIE5pZ2h0J3MgRHJl\nYW0iLCBhdXRob3JfaWQ6IDE+\n" - }, - { - "iid": "10101010101010", - "str": "QSBNaWRzdW1tZXIgTmlnaHQncyBEcmVhbQ==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -2602,38 +2475,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2642,26 +2512,235 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEgTElNSVQgMiI=\n" + "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, @@ -2706,13 +2785,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": null + "stringValue": "row_count" }, { "nameIid": "10101010101010", @@ -2723,7 +2802,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": null + "stringValue": "affected_rows" }, { "nameIid": "10101010101010", @@ -2750,26 +2829,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJyZXZpZXdzIi4qIEZST00gInJldmlld3MiIFdIRVJFICJyZXZp\nZXdzIi4iYm9va19pZCIgPSA/IExJTUlUID8=\n" - }, - { - "iid": "10101010101010", - "str": "UmV2aWV3IExvYWQ=\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -2803,7 +2862,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": null + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -2815,14 +2874,6 @@ "trackUuid": "10101010101010", "name": "instantiation.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -2851,21 +2902,33 @@ "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": "10101010101010" + } + ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.0.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + ], + "name": "authors.3.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -2874,14 +2937,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2889,36 +2973,40 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Execution Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDQsIG5hbWU6ICLtlZzqsJUiPg==\n" + }, + { + "iid": "10101010101010", + "str": "7ZWc6rCV\n" + } + ] + }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Exec Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -2938,13 +3026,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": null + "stringValue": "type_casted_binds.3" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "authorized?" + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", @@ -2952,25 +3040,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -2981,7 +3052,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2989,8 +3060,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -3002,7 +3080,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -3011,13 +3089,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -3026,17 +3098,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.0.books.0.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -3053,89 +3143,61 @@ "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", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Execution Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDQgTElNSVQgMiI=\n" + } + ] + }, "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "record_count" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -3144,27 +3206,7 @@ "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -3173,37 +3215,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds.0" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } ] }, "sequenceFlags": 101010101010 @@ -3213,23 +3260,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIgTElNSVQgMiI=\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -3238,7 +3269,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -3246,9 +3277,63 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "affected_rows" - }, + "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, @@ -3277,13 +3362,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": null + "stringValue": "row_count" }, { "nameIid": "10101010101010", @@ -3294,7 +3379,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": null + "stringValue": "affected_rows" }, { "nameIid": "10101010101010", @@ -3321,18 +3406,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -3366,7 +3439,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": null + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -3401,16 +3474,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.0.books.1.averageReview", - "flowIds": [ + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "Authorize: Book" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Book" + } ] }, "sequenceFlags": 101010101010 @@ -3420,7 +3512,13 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -3429,14 +3527,28 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3444,42 +3556,23 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "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": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3487,36 +3580,8 @@ "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": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@type_for_column", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -3528,45 +3593,21 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + "name": "Authorize: Book" }, - "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" - } + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "aWQ=\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI6OlNRTGl0ZTNJbnRlZ2Vy\n" - } + "extraCounterTrackUuids": [ + "10101010101010" ] }, "sequenceFlags": 101010101010 @@ -3576,92 +3617,28 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "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" + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\naWQiID0gPw==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3674,7 +3651,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -3686,7 +3662,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3694,35 +3670,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3746,7 +3707,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3754,17 +3715,8 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -3776,18 +3728,21 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "name": "PerfettoSchema::AverageReview" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "PerfettoSchema::AverageReview" - } + "extraCounterTrackUuids": [ + "10101010101010" ] }, "sequenceFlags": 101010101010 @@ -3797,7 +3752,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3805,68 +3760,20 @@ "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "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" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUIGJvb2tzLmlkLCBBVkcoc3RhcnMpIGFzIGF2Z19yZXZpZXcgIEZS\nT00gImJvb2tzIiBJTk5FUiBKT0lOICJyZXZpZXdzIiBPTiAicmV2aWV3cyIu\nImJvb2tfaWQiID0gImJvb2tzIi4iaWQiIEdST1VQIEJZICJib29rcyIuImlk\nIg==\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3879,7 +3786,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -3891,7 +3797,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3899,35 +3805,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3951,7 +3842,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -3959,36 +3850,30 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.0.books.0.title", "extraCounterTrackUuids": [ "10101010101010" - ], - "flowIds": [ - "10101010101010" - ], - "name": "PerfettoSchema::OtherBook" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "PerfettoSchema::OtherBook" - } - ] + ] }, "sequenceFlags": 101010101010 }, @@ -3997,108 +3882,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "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" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4109,21 +3930,25 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxLCB0aXRsZTogIkEgTWlkc3VtbWVyIE5pZ2h0J3MgRHJl\nYW0iLCBhdXRob3JfaWQ6IDE+\n" + }, + { + "iid": "10101010101010", + "str": "QSBNaWRzdW1tZXIgTmlnaHQncyBEcmVhbQ==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -4132,14 +3957,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -4148,41 +3997,53 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -4191,35 +4052,14 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@find_by", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "@find_by_many" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@model_class", + "name": "inspect instance of", "stringValue": "connection" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@type_for_column", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -4231,10 +4071,41 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEgTElNSVQgMiI=\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -4243,7 +4114,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -4251,12 +4122,178 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "affected_rows" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" }, { "nameIid": "10101010101010", - "boolValue": true, + "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" }, { @@ -4267,6 +4304,10 @@ { "nameIid": "10101010101010", "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -4278,13 +4319,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": null }, { "nameIid": "10101010101010", @@ -4306,6 +4347,10 @@ { "nameIid": "10101010101010", "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, { "nameIid": "10101010101010", "intValue": "10101010101010" @@ -4318,14 +4363,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -4359,7 +4396,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "connection" + "stringValue": null }, { "nameIid": "10101010101010", @@ -4371,6 +4408,14 @@ "trackUuid": "10101010101010", "name": "instantiation.active_record" }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -4393,17 +4438,30 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ + "categories": [ + "Field Execution" + ], + "categoryIids": [ "10101010101010" ], - "extraCounterTrackUuids": [ + "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, @@ -4416,13 +4474,7 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "Fiber Exit", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -4438,16 +4490,34 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -4455,61 +4525,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "async" } ], "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", + "name": "authors.0.books.0.author", "extraCounterTrackUuids": [ "10101010101010" ] @@ -4521,100 +4557,23 @@ "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "dictEntries": [ - { - "nameIid": "10101010101010", - "stringValue": "Book-1" - } - ], - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "t5", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationNames": [ - { - "iid": "10101010101010", - "name": "id" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Resolve Type" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "resolved_type", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -4626,15 +4585,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Resolve Type: Thing" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "Resolve Type: Thing" - } - ] + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -4643,13 +4594,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4658,7 +4603,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -4666,8 +4611,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -4679,21 +4631,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" - }, - "internedData": { - "debugAnnotationNames": [ - { - "iid": "10101010101010", - "name": "resolved_type" - } - ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UGVyZmV0dG9TY2hlbWE6OkJvb2s=\n" - } - ] + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -4702,53 +4640,7 @@ "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": "authorized?" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.0.books.1.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4826,7 +4718,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.1.otherBook", + "name": "authors.0.books.0.otherBook", "flowIds": [ "10101010101010" ] @@ -4870,10 +4762,28 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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, @@ -4897,30 +4807,18 @@ }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "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": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.0.books.1.title", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -4931,38 +4829,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4985,11 +4889,11 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxMCwgdGl0bGU6ICJUaGUgVGFsZSBvZiBQZXRlciBSYWJi\naXQiLCBhdXRob3JfaWQ6IDI+\n" + "str": "IzxCb29rIGlkOiAyLCB0aXRsZTogIlRoZSBNZXJyeSBXaXZlcyBvZiBXaW5k\nc29yIiwgYXV0aG9yX2lkOiAxPg==\n" }, { "iid": "10101010101010", - "str": "VGhlIFRhbGUgb2YgUGV0ZXIgUmFiYml0\n" + "str": "VGhlIE1lcnJ5IFdpdmVzIG9mIFdpbmRzb3I=\n" } ] }, @@ -5028,36 +4932,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.1.reviews", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEwIExJTUlUIDIi\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -5065,100 +4944,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -5167,14 +4981,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "sql.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5183,7 +4990,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -5192,18 +4999,35 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": null + "name": "inspect instance of", + "stringValue": "connection" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5214,13 +5038,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIgTElNSVQgMiI=\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -5228,17 +5061,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.1.books.0.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -5256,14 +5107,43 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -5271,15 +5151,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5288,104 +5161,52 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "authors.0.books.0.otherBook", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxCb29rIGlkOiA5LCB0aXRsZTogIk90aGVsbG8iLCBhdXRob3JfaWQ6IDE+\n" + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5394,7 +5215,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -5402,30 +5223,80 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "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": "object", + "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": "result", - "stringValue": "transaction" + "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", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.1.books.0.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "sql.active_record" }, "sequenceFlags": 101010101010 }, @@ -5436,11 +5307,10 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -5451,7 +5321,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -5459,20 +5329,19 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: Author" + "name": "instantiation.active_record" }, "sequenceFlags": 101010101010 }, @@ -5485,6 +5354,7 @@ "extraCounterValues": [ "10101010101010" ], + "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -5503,7 +5373,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.1.books.0.otherBook", + "name": "authors.0.books.1.averageReview", "flowIds": [ "10101010101010" ] @@ -5547,59 +5417,115 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.0.books.1.averageReview", - "flowIds": [ + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Dataloader::ActiveRecordSource" + } + ], + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + }, + { + "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", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5608,65 +5534,65 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "@find_by", "stringValue": null }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", + "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" ], - "name": "authors.1.books.1.title", "extraCounterTrackUuids": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" ], - "extraCounterTrackUuids": [ - "10101010101010", + "flowIds": [ "10101010101010" - ] + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxMSwgdGl0bGU6ICJUaGUgVGFsZSBvZiBTcXVpcnJlbCBO\ndXRraW4iLCBhdXRob3JfaWQ6IDI+\n" - }, - { - "iid": "10101010101010", - "str": "VGhlIFRhbGUgb2YgU3F1aXJyZWwgTnV0a2lu\n" + "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI6OlNRTGl0ZTNJbnRlZ2Vy\n" } ] }, @@ -5677,37 +5603,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "record_count" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\naWQiID0gPw==\n" + } ] }, "sequenceFlags": 101010101010 @@ -5717,26 +5648,64 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", + "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", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDExIExJTUlUIDIi\n" + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" } ] }, "sequenceFlags": 101010101010 }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -5766,10 +5735,6 @@ { "nameIid": "10101010101010", "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -5781,13 +5746,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": null + "stringValue": "row_count" }, { "nameIid": "10101010101010", @@ -5809,10 +5774,6 @@ { "nameIid": "10101010101010", "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, { "nameIid": "10101010101010", "intValue": "10101010101010" @@ -5825,18 +5786,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -5870,7 +5819,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": null + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -5900,21 +5849,68 @@ }, "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" + "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", - "name": "authors.1.books.1.averageReview", - "flowIds": [ + "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 @@ -5933,50 +5929,60 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MQ==\n" + } ] }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -6026,7 +6032,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -6034,34 +6040,88 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "affected_rows" - }, - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "allow_retry" - }, - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "async" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", - "name": "binds" + "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": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": "row_count" }, { "nameIid": "10101010101010", @@ -6122,7 +6182,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "connection" + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -6167,6 +6227,60 @@ }, "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, @@ -6181,10 +6295,6 @@ { "nameIid": "10101010101010", "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -6203,7 +6313,6 @@ "10101010101010" ], "flowIds": [ - "10101010101010", "10101010101010" ], "name": "PerfettoSchema::OtherBook" @@ -6215,147 +6324,50 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "record_count" }, { "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" + "name": "inspecting for", + "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiBJTiAoPywgPykgQU5E\nICJib29rcyIuImlkIiBOT1QgSU4gKD8sID8pIEdST1VQIEJZICJib29rcyIu\nImF1dGhvcl9pZCI=\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiA9ID8gQU5EICJib29r\ncyIuImlkIiAhPSA/IEdST1VQIEJZICJib29rcyIuImF1dGhvcl9pZCI=\n" }, { "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "str": "Qm9vayBNYXhpbXVt\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, @@ -6370,57 +6382,61 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "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", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } ] }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -6429,35 +6445,14 @@ { "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": "connection" + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@type_for_column", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", @@ -6469,10 +6464,24 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + "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 }, @@ -6505,6 +6514,10 @@ { "nameIid": "10101010101010", "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -6516,13 +6529,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": null }, { "nameIid": "10101010101010", @@ -6544,6 +6557,10 @@ { "nameIid": "10101010101010", "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, { "nameIid": "10101010101010", "intValue": "10101010101010" @@ -6556,14 +6573,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -6586,28 +6595,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "ActiveSupport::Notifications" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -6615,15 +6604,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" + "categories": [ + "Dataloader" ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -6631,36 +6620,70 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -6668,15 +6691,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -6691,16 +6707,35 @@ "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", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" + "intValue": "10101010101010" } ], "name": "fetch keys" @@ -6716,24 +6751,46 @@ "10101010101010" ], "flowIds": [ - "10101010101010", "10101010101010" ], - "name": "PerfettoSchema::OtherBook" - } + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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 }, @@ -6741,20 +6798,52 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } ] }, "sequenceFlags": 101010101010 @@ -6763,15 +6852,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -6780,7 +6862,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -6788,28 +6870,74 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "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": "object", + "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": "result", + "name": "transaction", "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.1.otherBook", - "flowIds": [ - "10101010101010" - ] - } + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -6818,11 +6946,10 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -6833,7 +6960,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -6841,20 +6968,35 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", + "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" - ], - "name": "Authorize: Book" + ] }, "sequenceFlags": 101010101010 }, @@ -6878,35 +7020,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "transaction" - } - ], - "type": "TYPE_SLICE_BEGIN", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.author", + "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -6917,16 +7041,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ - "10101010101010", + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -6935,7 +7058,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Dataloader" ], "categoryIids": [ "10101010101010" @@ -6943,8 +7066,13 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", @@ -6956,9 +7084,11 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" - }, - "sequenceFlags": 101010101010 + "flowIds": [ + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } }, { "timestamp": "10101010101010", @@ -6980,42 +7110,20 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_SLICE_BEGIN", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "authors.1.books.1.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" ], - "categoryIids": [ + "name": "Fiber Exit", + "extraCounterTrackUuids": [ "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + ] }, "sequenceFlags": 101010101010 }, @@ -7048,6 +7156,12 @@ "debugAnnotations": [ { "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "stringValue": "Book-1" + } + ], "name": "arguments" }, { @@ -7058,13 +7172,14 @@ }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.1.books.0.averageReview", + "name": "t5", "flowIds": [ "10101010101010" ] @@ -7074,59 +7189,56 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Debug Inspect" ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Field Execution" - ], - "categoryIids": [ + "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.title", "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, @@ -7142,18 +7254,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxOSwgdGl0bGU6ICJUaGUgUGlja3dpY2sgUGFwZXJzIiwg\nYXV0aG9yX2lkOiAzPg==\n" - }, - { - "iid": "10101010101010", - "str": "VGhlIFBpY2t3aWNrIFBhcGVycw==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -7161,37 +7261,36 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Resolve Type" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "resolved_type", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "Resolve Type: Thing" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Resolve Type: Thing" + } ] }, "sequenceFlags": 101010101010 @@ -7203,22 +7302,12 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDE5IExJTUlUIDIi\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -7226,98 +7315,40 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "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": "analyzers_count" - }, - { - "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" + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "internedData": { - "debugAnnotationStringValues": [ + "debugAnnotationNames": [ { "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, + "name": "resolved_type" + } + ], + "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "str": "UGVyZmV0dG9TY2hlbWE6OkJvb2s=\n" } ] }, @@ -7332,7 +7363,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -7344,40 +7374,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", + "name": "object", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "async" } ], "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", + "name": "authors.0.books.1.author", "extraCounterTrackUuids": [ "10101010101010" ] @@ -7389,17 +7414,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.2.books.0.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -7417,14 +7460,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -7432,54 +7496,11 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "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", - "name": "authors.1.books.0.otherBook", - "flowIds": [ - "10101010101010" - ] - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -7495,14 +7516,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxOCwgdGl0bGU6ICJUaGUgU3Rvcnkgb2YgYSBGaWVyY2Ug\nQmFkIFJhYmJpdCIsIGF1dGhvcl9pZDogMj4=\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -7531,7 +7544,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "Authorize: Author" }, "sequenceFlags": 101010101010 }, @@ -7560,31 +7573,10 @@ "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.author", - "extraCounterTrackUuids": [ + "name": "authors.0.books.1.otherBook", + "flowIds": [ "10101010101010" ] }, @@ -7595,15 +7587,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7612,28 +7596,14 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Dataloader" ], "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" - } - ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: Author" + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -7641,14 +7611,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -7662,21 +7633,65 @@ "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.otherBook", + "name": "authors.0.books.0.averageReview", "flowIds": [ "10101010101010" ] - }, - "sequenceFlags": 101010101010 + } }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "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 }, @@ -7684,15 +7699,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7700,15 +7708,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -7735,30 +7744,18 @@ }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "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": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.1.books.0.title", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -7769,38 +7766,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7823,11 +7826,11 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAyMCwgdGl0bGU6ICJPbGl2ZXIgVHdpc3QiLCBhdXRob3Jf\naWQ6IDM+\n" + "str": "IzxCb29rIGlkOiAxMCwgdGl0bGU6ICJUaGUgVGFsZSBvZiBQZXRlciBSYWJi\naXQiLCBhdXRob3JfaWQ6IDI+\n" }, { "iid": "10101010101010", - "str": "T2xpdmVyIFR3aXN0\n" + "str": "VGhlIFRhbGUgb2YgUGV0ZXIgUmFiYml0\n" } ] }, @@ -7866,7 +7869,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews", + "name": "authors.1.books.0.reviews", "extraCounterTrackUuids": [ "10101010101010" ] @@ -7877,27 +7880,273 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Debug Inspect" ], - "extraCounterTrackUuids": [ - "10101010101010", + "categoryIids": [ "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ + ], + "debugAnnotations": [ { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIwIExJTUlUIDIi\n" - } + "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": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEwIExJTUlUIDIi\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, @@ -7942,7 +8191,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", @@ -7986,18 +8235,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -8073,7 +8310,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.2.books.1.averageReview", + "name": "authors.1.books.0.averageReview", "flowIds": [ "10101010101010" ] @@ -8117,26 +8354,44 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "name": "Create Source Fiber", - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" + "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" + ] } }, { @@ -8144,7 +8399,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8152,17 +8407,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -8174,11 +8427,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::AverageReview" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8187,68 +8445,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8259,13 +8493,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiA5LCB0aXRsZTogIk90aGVsbG8iLCBhdXRob3JfaWQ6IDE+\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -8273,7 +8516,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -8281,19 +8524,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -8306,7 +8550,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -8317,11 +8560,36 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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": "@model_class" + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.1.books.0.author", "extraCounterTrackUuids": [ "10101010101010" ] @@ -8333,7 +8601,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8341,17 +8609,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -8363,11 +8629,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::OtherBook" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8376,7 +8647,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8384,116 +8655,83 @@ "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" }, { "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" + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "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": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" } - ] + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" }, "sequenceFlags": 101010101010 }, @@ -8506,13 +8744,31 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "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, @@ -8550,34 +8806,16 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "name": "Create Source Fiber", - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -8585,36 +8823,50 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@find_by", - "stringValue": null + "name": "arguments" }, { "nameIid": "10101010101010", - "boolValue": false, - "name": "@find_by_many" + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@model_class", - "stringValue": "connection" - }, + "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": "@type_for_column", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -8626,10 +8878,33 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -8638,7 +8913,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -8646,93 +8921,27 @@ "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", + "name": "object", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", + "name": "result", "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", + "name": "authors.1.books.1.title", "extraCounterTrackUuids": [ "10101010101010" ] @@ -8744,7 +8953,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8753,18 +8962,26 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8773,14 +8990,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8791,12 +9001,26 @@ "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 }, { @@ -8804,17 +9028,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Exit", + "name": "authors.1.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" ] @@ -8826,14 +9068,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8842,7 +9114,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8850,17 +9122,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -8872,12 +9142,18 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::OtherBook" - } + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -8886,12 +9162,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDExIExJTUlUIDIi\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -8899,20 +9185,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8920,15 +9221,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8937,60 +9231,61 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds.0" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "authors.1.books.1.otherBook", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "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": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8998,8 +9293,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", @@ -9011,7 +9313,15 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -9020,13 +9330,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9035,7 +9339,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -9043,30 +9347,80 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "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": "object", + "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": "result", + "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", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.2.books.1.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "sql.active_record" }, "sequenceFlags": 101010101010 }, @@ -9077,11 +9431,10 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -9092,7 +9445,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -9100,20 +9453,19 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: Author" + "name": "instantiation.active_record" }, "sequenceFlags": 101010101010 }, @@ -9126,6 +9478,7 @@ "extraCounterValues": [ "10101010101010" ], + "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -9144,7 +9497,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.2.books.1.otherBook", + "name": "authors.1.books.1.averageReview", "flowIds": [ "10101010101010" ] @@ -9188,16 +9541,34 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -9205,42 +9576,36 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspecting for", "stringValue": null - }, - { - "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.2.books.0.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9249,38 +9614,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -9289,27 +9651,7 @@ "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9318,7 +9660,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "categoryIids": [ "10101010101010" @@ -9326,30 +9668,33 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" }, "sequenceFlags": 101010101010 }, @@ -9357,24 +9702,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI2IExJTUlUIDIi\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9396,7 +9762,7 @@ }, { "nameIid": "10101010101010", - "boolValue": true, + "boolValue": false, "name": "allow_retry" }, { @@ -9406,29 +9772,19 @@ }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], "name": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": null + "stringValue": "row_count" }, { "nameIid": "10101010101010", @@ -9449,16 +9805,6 @@ }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], "name": "type_casted_binds" } ], @@ -9466,18 +9812,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -9511,7 +9845,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": null + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -9545,43 +9879,51 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Field Execution" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "authors.3.books.0.averageReview", - "flowIds": [ + "extraCounterTrackUuids": [ "10101010101010" ] }, "sequenceFlags": 101010101010 }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" - }, - "sequenceFlags": 101010101010 - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -9589,15 +9931,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9606,59 +9941,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.2.books.0.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9667,7 +9987,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Dataloader" ], "categoryIids": [ "10101010101010" @@ -9675,8 +9995,17 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", @@ -9688,22 +10017,11 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ + "flowIds": [ + "10101010101010", "10101010101010" ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "PerfettoSchema::OtherBook" }, "sequenceFlags": 101010101010 }, @@ -9712,37 +10030,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "id" + "name": "inspecting for", + "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.author", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiBJTiAoPywgPykgQU5E\nICJib29rcyIuImlkIiBOT1QgSU4gKD8sID8pIEdST1VQIEJZICJib29rcyIu\nImF1dGhvcl9pZCI=\n" + } ] }, "sequenceFlags": 101010101010 @@ -9752,15 +10075,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9769,7 +10084,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -9777,8 +10092,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", @@ -9790,40 +10112,14 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "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" + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } ] }, "sequenceFlags": 101010101010 @@ -9842,39 +10138,7 @@ "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -9882,42 +10146,54 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspecting for", "stringValue": null - }, - { - "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.2.books.1.averageReview", - "flowIds": [ + "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", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9926,106 +10202,116 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.title", "extraCounterTrackUuids": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.3" + } + ], "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAyNywgdGl0bGU6ICLtnbAiLCBhdXRob3JfaWQ6IDQ+\n" + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" }, { "iid": "10101010101010", - "str": "7Z2w\n" + "str": "YmluZHMuMw==\n" } ] }, "sequenceFlags": 101010101010 }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews", "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 @@ -10035,23 +10321,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI3IExJTUlUIDIi\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10084,6 +10354,14 @@ { "nameIid": "10101010101010", "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -10099,7 +10377,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", @@ -10127,6 +10405,14 @@ { "nameIid": "10101010101010", "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, { "nameIid": "10101010101010", "intValue": "10101010101010" @@ -10143,18 +10429,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -10177,28 +10451,8 @@ "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" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10206,34 +10460,86 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ + "categories": [ + "Dataloader" + ], + "categoryIids": [ "10101010101010" ], - "name": "instantiation.active_record", + "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": [ - "Field Execution" + "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", - "name": "authors.3.books.1.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -10256,9 +10562,54 @@ "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" }, "sequenceFlags": 101010101010 }, @@ -10267,41 +10618,53 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -10309,17 +10672,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", @@ -10331,11 +10692,24 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::AverageReview" + "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 }, @@ -10357,7 +10731,7 @@ }, { "nameIid": "10101010101010", - "boolValue": false, + "boolValue": true, "name": "allow_retry" }, { @@ -10367,19 +10741,25 @@ }, { "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], "name": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": "row_count" }, { "nameIid": "10101010101010", @@ -10400,6 +10780,12 @@ }, { "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], "name": "type_casted_binds" } ], @@ -10440,7 +10826,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "connection" + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -10485,6 +10871,44 @@ }, "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, @@ -10525,6 +10949,20 @@ "10101010101010" ], "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -10533,124 +10971,12227 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Dataloader" ], "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ + "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": "@model_class" + } + ], + "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "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": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDE5IExJTUlUIDIi\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": 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": [ + "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": "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": "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "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": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIwIExJTUlUIDIi\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": 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": [ + "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": "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": "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "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": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI2IExJTUlUIDIi\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": 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": [ + "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": "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": "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "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": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI3IExJTUlUIDIi\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": 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": [ + "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": "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": "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" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAxPg==\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": "IzxSZXZpZXcgaWQ6IDIsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAxPg==\n" + }, + { + "iid": "10101010101010", + "str": "Mg==\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" + }, + { + "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" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDUsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAyPg==\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": [ + "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" + ], + "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": [ + "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", + "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" + ], + "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": [ + "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": [ + "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": [ + "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", + "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": "@model_class" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@find_by" + } + ], + "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" + ], + "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": 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" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDYsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAyPg==\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": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDM3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTA+\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": "IzxSZXZpZXcgaWQ6IDM4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTA+\n" + }, + { + "iid": "10101010101010", + "str": "Mw==\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" + }, + { + "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", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDQxLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTE+\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": [ + "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": [ + "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": [ + "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": [ + "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", + "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": "@model_class" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@find_by" + } + ], + "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" + ], + "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": [ + "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": [ + "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": [ + "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", + "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": "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" + ], + "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": 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" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDQyLCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTE+\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": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDczLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTk+\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", - "intValue": "10101010101010", - "name": "affected_rows" + "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": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDc0LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTk+\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" + }, + { + "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", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDc3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMjA+\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": [ + "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": [ + "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": [ + "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": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ { "nameIid": "10101010101010", "boolValue": true, - "name": "allow_retry" - }, - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, + "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", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "binds" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "analyzers_count" + "name": "object", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "name\n", + "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", - "intValue": "10101010101010", - "name": "row_count" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "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": "transaction", - "stringValue": null + "name": "object", + "stringValue": "id" }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "resolved_type" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" }, { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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 }, @@ -10661,15 +23202,36 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "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, @@ -10707,27 +23269,95 @@ ], "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", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "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", @@ -10739,54 +23369,50 @@ "categoryIids": [ "10101010101010" ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "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": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@type_for_column", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ + "flowIds": [ "10101010101010" ], - "extraCounterTrackUuids": [ + "name": "Authorize: Review" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "flowIds": [ + "extraCounterTrackUuids": [ "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + ] }, "sequenceFlags": 101010101010 }, @@ -10795,7 +23421,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -10803,80 +23429,76 @@ "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": "analyzers_count" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" + "name": "object", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", + "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": "transaction", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "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 }, @@ -10887,13 +23509,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "R3JlYXQgRXhwZWN0YXRpb25z\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -10901,27 +23532,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" + "name": "object", + "stringValue": "type_casted_binds.3" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -10929,15 +23571,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10948,9 +23620,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -10961,20 +23635,27 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ + "flowIds": [ "10101010101010" ], - "name": "Fiber Exit", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10990,7 +23671,7 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -11004,72 +23685,64 @@ "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" - } - ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", + "type": "TYPE_INSTANT", "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" - ], + "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": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -11077,15 +23750,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11094,51 +23760,52 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.2.books.1.otherBook", - "flowIds": [ + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDc4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMjA+\n" + } ] - } + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11147,7 +23814,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -11155,8 +23822,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -11168,7 +23842,15 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwMSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI2Pg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -11177,13 +23859,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11192,37 +23868,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "id" + "name": "inspecting for", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.author", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwMiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI2Pg==\n" + } ] }, "sequenceFlags": 101010101010 @@ -11232,15 +23913,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11249,7 +23922,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Dataloader" ], "categoryIids": [ "10101010101010" @@ -11257,8 +23930,25 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", @@ -11270,7 +23960,21 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "flowIds": [ + "10101010101010", + "10101010101010", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwNSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI3Pg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -11294,42 +23998,20 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_SLICE_BEGIN", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "authors.3.books.1.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" ], - "categoryIids": [ + "name": "Fiber Exit", + "extraCounterTrackUuids": [ "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + ] }, "sequenceFlags": 101010101010 }, @@ -11354,7 +24036,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -11362,26 +24044,17 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.3.books.0.averageReview", "flowIds": [ "10101010101010" - ] + ], + "name": "Authorize: Review" } }, { @@ -11391,11 +24064,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -11419,14 +24090,6 @@ ], "name": "Authorize: Review" }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "Authorize: Review" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -11470,67 +24133,6 @@ }, "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": { - "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, @@ -11551,15 +24153,11 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ + "flowIds": [ "10101010101010" ], - "name": "Authorize: Book" - }, - "sequenceFlags": 101010101010 + "name": "Authorize: Review" + } }, { "timestamp": "10101010101010", @@ -11572,52 +24170,7 @@ ], "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 }, @@ -11626,14 +24179,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -11642,35 +24219,46 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.3.books.1.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -11708,13 +24296,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "authorized?" + "stringValue": "type_casted_binds.3" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "sql" + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", @@ -11722,25 +24310,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.author.name", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -11751,18 +24322,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -11779,15 +24367,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -11796,41 +24385,47 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", "10101010101010" ], - "name": "Create Source Fiber", + "name": "authors.3.books.0.otherBook.title", "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": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -11838,13 +24433,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -11856,10 +24453,41 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "PerfettoSchema::OtherBook" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "64W4656R66y064qs7JiB7JuQ\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -11868,7 +24496,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -11876,92 +24504,76 @@ "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" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "analyzers_count" + "name": "object", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "name\n", + "name": "result", "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, + } + ], + "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": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11972,10 +24584,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -11985,11 +24598,35 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.0.books.0.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" ] @@ -12001,7 +24638,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -12009,21 +24646,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -12035,34 +24666,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "PerfettoSchema::Authorized" - } - ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAxPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDIsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAxPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDUsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAyPg==\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12073,9 +24686,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -12086,20 +24701,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "extraCounterValues": [ + "name": "authors.0.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" ], - "name": "Fiber Exit", - "extraCounterTrackUuids": [ + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -12119,6 +24756,47 @@ }, "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, @@ -12142,31 +24820,17 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.3.books.1.otherBook", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.0.books.0.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -12177,7 +24841,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -12185,8 +24849,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -12198,7 +24869,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12209,9 +24889,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -12222,18 +24904,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", + "name": "authors.0.books.0.reviews.1.user", "flowIds": [ "10101010101010" - ], - "name": "Authorize: Review" + ] }, "sequenceFlags": 101010101010 }, @@ -12342,9 +25023,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -12352,25 +25032,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "t5.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.1.reviews.0.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -12381,38 +25044,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "authorized?" + "name": "inspect instance of", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "sql" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.author.name", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12438,18 +25107,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", + "name": "authors.0.books.1.reviews.0.user", "flowIds": [ "10101010101010" - ], - "name": "Authorize: Review" + ] }, "sequenceFlags": 101010101010 }, @@ -12490,16 +25158,34 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -12507,51 +25193,35 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", - "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": [ - "Authorized" - ], - "categoryIids": [ - "10101010101010" ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "flowIds": [ - "10101010101010" - ], - "name": "Authorize: Review" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "VXNlcg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -12574,131 +25244,60 @@ "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": [ + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, { "nameIid": "10101010101010", - "name": "arguments" + "boolValue": false, + "name": "@find_by_many" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "@model_class", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "@type_for_column", "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" ], - "extraCounterTrackUuids": [ + "flowIds": [ + "10101010101010", "10101010101010", "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "T3RoZWxsbw==\n" - } - ] + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" }, "sequenceFlags": 101010101010 }, @@ -12707,37 +25306,46 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "transaction" + "name": "inspect instance of", + "stringValue": "binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "affected_rows" + "name": "inspecting for", + "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.author.name", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiIElOICg/LCA/KQ==\n" + }, + { + "iid": "10101010101010", + "str": "VXNlciBMb2Fk\n" + } ] }, "sequenceFlags": 101010101010 @@ -12747,15 +25355,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12764,18 +25364,43 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -12793,62 +25418,81 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } ] }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "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": [ @@ -12859,55 +25503,57 @@ { "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", - "stringValueIid": "10101010101010" + "intValue": "10101010101010" }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010" + "intValue": "10101010101010" } ], - "name": "fetch keys" + "name": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDYsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAyPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDM3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDM4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDQxLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTE+\n" - } - ] + "name": "sql.active_record" }, "sequenceFlags": 101010101010 }, @@ -12920,6 +25566,7 @@ "extraCounterValues": [ "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -12931,17 +25578,40 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Exit", + "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -12952,15 +25622,14 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -12969,7 +25638,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -12977,31 +25646,36 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13010,18 +25684,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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": "Authorize: Review" + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwNiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI3Pg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -13030,7 +25730,13 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13046,7 +25752,13 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13130,9 +25842,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -13140,25 +25851,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.otherBook.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.1.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -13169,75 +25863,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "transaction" + "name": "inspect instance of", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "affected_rows" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13254,31 +25908,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13287,7 +25926,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -13295,28 +25934,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "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" ], + "name": "authors.0.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -13328,18 +25966,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13357,14 +26012,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13372,15 +26057,24 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAyLCB1c2VybmFtZTogInRlbmRlcmxvdmUiPg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -13404,11 +26098,23 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: User" + } + ] + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -13446,22 +26152,67 @@ "name": "object", "stringValue": null }, + { + "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": "result", + "name": "inspect instance of", "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13480,14 +26231,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "VGhlIFN0b3J5IG9mIGEgRmllcmNlIEJhZCBSYWJiaXQ=\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -13515,7 +26258,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "@model_class" + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -13523,25 +26266,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.0.reviews.0.user", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -13552,18 +26278,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13581,14 +26324,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13596,42 +26360,42 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAxLCB1c2VybmFtZTogIm1hdHoiPg==\n" + } + ] + }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -13639,25 +26403,8 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -13666,36 +26413,10 @@ "extraCounterValues": [ "10101010101010" ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDQyLCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTE+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDczLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTk+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc0LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTk+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMjA+\n" - } - ] + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -13719,17 +26440,34 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", + "name": "authors.1.books.0.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" ] @@ -13741,23 +26479,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -13765,18 +26487,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -13785,9 +26527,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -13798,27 +26542,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "name": "authors.1.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13827,14 +26582,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13842,15 +26618,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13859,7 +26628,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -13867,18 +26636,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -13887,9 +26676,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -13900,7 +26691,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -13908,30 +26699,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -13942,11 +26723,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -13975,9 +26754,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "@model_class" + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -13985,25 +26763,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.1.reviews.0.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -14014,18 +26775,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14042,15 +26820,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14059,14 +26838,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14075,7 +26878,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -14083,31 +26886,36 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14116,18 +26924,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14144,31 +26969,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14192,11 +27002,15 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -14236,9 +27050,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -14246,36 +27059,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.otherBook.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.1.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "R3JlYXQgRXhwZWN0YXRpb25z\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -14283,38 +27071,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "id" + "name": "inspect instance of", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "resolved_type" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.author.name", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14340,43 +27134,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "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": [ + "name": "authors.1.books.1.reviews.1.user", + "extraCounterTrackUuids": [ "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + ] }, "sequenceFlags": 101010101010 }, @@ -14385,41 +27174,53 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -14427,25 +27228,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -14457,33 +27248,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMjA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwMSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI2Pg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwMiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI2Pg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwNSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI3Pg==\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14494,9 +27268,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -14507,20 +27283,28 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -14528,15 +27312,14 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14545,7 +27328,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -14553,28 +27336,26 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" } ], "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" ], + "name": "authors.2.books.0.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" ] @@ -14586,18 +27367,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14614,15 +27412,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14631,14 +27430,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14647,7 +27470,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -14655,31 +27478,36 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14688,38 +27516,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14745,7 +27579,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -14753,30 +27587,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "id" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "resolved_type" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.author.name", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -14787,11 +27611,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -14820,9 +27642,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -14830,36 +27651,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.otherBook.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.0.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "64W4656R66y064qs7JiB7JuQ\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -14867,38 +27663,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14942,8 +27744,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -14951,7 +27754,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.0.stars", + "name": "authors.2.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -14962,16 +27765,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14980,17 +27812,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.0.books.0.reviews.0.user", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -15007,31 +27857,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -15055,11 +27890,15 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -15108,25 +27947,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.1.reviews.0.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -15137,42 +27959,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.0.books.0.reviews.1.user", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" ], - "categoryIids": [ + "extraCounterTrackUuids": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -15180,44 +27995,11 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "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", - "flowIds": [ - "10101010101010" - ], - "name": "Authorize: Review" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -15225,9 +28007,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -15256,8 +28040,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -15265,7 +28050,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.0.stars", + "name": "authors.2.books.1.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -15276,16 +28061,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15294,17 +28108,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.0.books.1.reviews.0.user", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -15321,15 +28153,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -15338,41 +28171,52 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -15380,64 +28224,28 @@ "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 + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@type_for_column", + "name": "object", "stringValue": null }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.2.books.1.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" - ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "VXNlcg==\n" - } ] }, "sequenceFlags": 101010101010 @@ -15447,108 +28255,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", + "name": "inspect instance of", "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" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiIElOICg/LCA/KQ==\n" - }, - { - "iid": "10101010101010", - "str": "VXNlciBMb2Fk\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15559,10 +28303,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -15573,27 +28318,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", + "name": "object", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -15601,15 +28357,36 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -15618,13 +28395,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15633,7 +28404,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -15641,13 +28412,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -15659,18 +28432,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwNiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI3Pg==\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15681,9 +28452,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -15694,17 +28467,40 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -15716,14 +28512,37 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -15732,7 +28551,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -15740,18 +28559,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -15760,9 +28599,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -15791,8 +28632,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -15800,7 +28642,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.1.stars", + "name": "authors.3.books.0.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -15811,16 +28653,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15829,38 +28700,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15879,14 +28756,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxVc2VyIGlkOiAyLCB1c2VybmFtZTogInRlbmRlcmxvdmUiPg==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -15917,14 +28786,6 @@ ], "name": "Authorize: User" }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "Authorize: User" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -15974,25 +28835,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.0.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.0.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16003,38 +28847,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16053,14 +28903,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxVc2VyIGlkOiAxLCB1c2VybmFtZTogIm1hdHoiPg==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -16068,7 +28910,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -16076,32 +28918,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.3.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16113,37 +28950,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -16152,15 +28987,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16169,38 +28996,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16298,13 +29131,59 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.0.stars", + "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": "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, @@ -16355,7 +29234,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.0.user", + "name": "authors.3.books.1.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16366,16 +29245,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16384,7 +29292,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -16392,8 +29300,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -16405,7 +29320,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16416,9 +29340,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -16429,7 +29355,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -16437,29 +29363,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -16470,11 +29387,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16503,9 +29418,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -16513,25 +29427,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.1.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16542,7 +29439,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -16550,8 +29447,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -16563,7 +29467,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16574,9 +29487,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -16605,8 +29520,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -16614,7 +29530,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.0.stars", + "name": "authors.3.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16625,16 +29541,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16643,38 +29588,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16763,8 +29714,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -16772,25 +29724,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16801,38 +29736,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16851,6 +29792,14 @@ "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "dGVuZGVybG92ZQ==\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -16858,7 +29807,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -16866,32 +29815,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.1.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16903,37 +29847,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16952,6 +29903,14 @@ "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "bWF0eg==\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -16977,35 +29936,18 @@ }, { "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": { - "type": "TYPE_SLICE_END", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.1.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17016,7 +29958,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -17024,8 +29966,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -17037,7 +29986,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17048,9 +30006,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -17079,8 +30039,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -17088,25 +30049,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17117,38 +30061,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17174,7 +30124,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -17182,32 +30132,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.1.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" ] @@ -17219,37 +30164,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17303,25 +30255,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.0.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17332,7 +30267,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -17340,8 +30275,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -17353,7 +30295,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17364,9 +30315,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -17395,8 +30348,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -17404,25 +30358,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17433,38 +30370,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17490,7 +30433,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -17498,32 +30441,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" - } - ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "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.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" ] @@ -17535,37 +30473,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17619,25 +30564,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.0.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17648,7 +30576,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -17656,8 +30584,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -17669,7 +30604,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17680,9 +30624,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -17711,8 +30657,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -17720,13 +30667,59 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.1.stars", + "name": "authors.3.books.0.reviews.0.user.username", "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": "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, @@ -17777,25 +30770,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.1.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17806,7 +30782,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -17814,8 +30790,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -17827,7 +30810,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17838,9 +30830,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -17879,36 +30873,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "dGVuZGVybG92ZQ==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -17916,38 +30885,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17966,14 +30941,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "bWF0eg==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -18009,25 +30976,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -18038,38 +30988,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18095,35 +31051,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "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", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.1.user.username", + "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -18134,16 +31072,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ - "10101010101010", + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -18177,70 +31114,46 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.2.books.0.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", + "name": "authors.0.books.0.reviews.0.user", + "flowIds": [ "10101010101010" ] - }, - "sequenceFlags": 101010101010 + } }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -18249,15 +31162,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18266,38 +31171,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18323,7 +31234,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -18331,30 +31242,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -18365,11 +31266,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -18408,25 +31307,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -18437,38 +31319,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18494,35 +31382,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "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", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.0.user.username", + "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -18533,16 +31403,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ - "10101010101010", + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -18576,52 +31445,46 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.3.books.1.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", + "name": "authors.0.books.0.reviews.1.user", + "flowIds": [ "10101010101010" ] - }, - "sequenceFlags": 101010101010 + } }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -18629,15 +31492,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18646,36 +31502,46 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.0.books.0.reviews.0.user", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -18772,13 +31638,59 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.0.user.username", + "name": "authors.0.books.0.reviews.1.user.username", "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": "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, @@ -18864,35 +31776,18 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.0.reviews.1.user", + "name": "authors.0.books.1.reviews.0.user", "flowIds": [ "10101010101010" ] } }, - { - "timestamp": "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -18900,8 +31795,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -18913,7 +31815,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -18922,13 +31824,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18937,38 +31833,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18994,20 +31896,28 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -19015,15 +31925,14 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -19057,24 +31966,11 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.1.reviews.0.user", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.0.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -19085,7 +31981,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -19093,8 +31989,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -19106,7 +32009,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -19115,53 +32018,7 @@ "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.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, diff --git a/spec/graphql/tracing/snapshots/example-rails-8-2.json b/spec/graphql/tracing/snapshots/example-rails-8-2.json index 79fa536a3d..aa630e12e1 100644 --- a/spec/graphql/tracing/snapshots/example-rails-8-2.json +++ b/spec/graphql/tracing/snapshots/example-rails-8-2.json @@ -34,6 +34,16 @@ { "iid": "10101010101010", "name": "Resolve Type" + }, + { + "iid": "10101010101010", + "name": "Debug Inspect" + } + ], + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" } ], "debugAnnotationNames": [ @@ -43,15 +53,23 @@ }, { "iid": "10101010101010", - "name": "arguments" + "name": "result" }, { "iid": "10101010101010", - "name": "result" + "name": "arguments" }, { "iid": "10101010101010", "name": "fetch keys" + }, + { + "iid": "10101010101010", + "name": "inspect instance of" + }, + { + "iid": "10101010101010", + "name": "inspecting for" } ], "debugAnnotationStringValues": [ @@ -430,7 +448,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "validate?" + "stringValue": "query_string" } ], "type": "TYPE_SLICE_BEGIN", @@ -453,6 +471,64 @@ }, "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, @@ -478,6 +554,102 @@ }, "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, @@ -512,13 +684,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "query_string" + "stringValue": "analyzers" }, { "nameIid": "10101010101010", @@ -529,7 +701,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": "valid?" + "stringValue": "analyzers_count" }, { "nameIid": "10101010101010", @@ -548,34 +720,6 @@ }, "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" - }, { "iid": "10101010101010", "name": "transaction" @@ -590,14 +734,6 @@ } ], "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJhdXRob3JzIi4qIEZST00gImF1dGhvcnMi\n" - }, - { - "iid": "10101010101010", - "str": "QXV0aG9yIExvYWQ=\n" - }, { "iid": "10101010101010", "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI=\n" @@ -637,7 +773,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "analyzers" + "stringValue": "binds" }, { "nameIid": "10101010101010", @@ -970,13 +1106,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "authorized?" + "stringValue": "async" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "sql" + "stringValue": "allow_retry" } ], "type": "TYPE_SLICE_BEGIN", @@ -991,77 +1127,62 @@ }, "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "authorized?" + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "name\n" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", + "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", @@ -1079,7 +1200,11 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDEgTElNSVQgMiI=\n" + "str": "IzxBdXRob3IgaWQ6IDEsIG5hbWU6ICJXaWxsaWFtIFNoYWtlc3BlYXJlIj4=\n" + }, + { + "iid": "10101010101010", + "str": "V2lsbGlhbSBTaGFrZXNwZWFyZQ==\n" } ] }, @@ -1090,7 +1215,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -1098,118 +1223,27 @@ "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": "binds" + "name": "object", + "stringValue": "async" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "result", + "stringValue": "transaction" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationNames": [ - { - "iid": "10101010101010" - } - ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\nYXV0aG9yX2lkIiA9ID8gTElNSVQgPw==\n" - }, - { - "iid": "10101010101010", - "str": "Qm9vayBMb2Fk\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", + "name": "authors.0.books", "extraCounterTrackUuids": [ "10101010101010" ] @@ -1221,7 +1255,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -1230,26 +1264,26 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "Qm9vaw==\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -1258,14 +1292,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1274,41 +1301,55 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "transaction" + "name": "inspect instance of", + "stringValue": "connection" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "affected_rows" + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.name", "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, @@ -1328,11 +1369,7 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxBdXRob3IgaWQ6IDIsIG5hbWU6ICJCZWF0cml4IFBvdHRlciI+\n" - }, - { - "iid": "10101010101010", - "str": "QmVhdHJpeCBQb3R0ZXI=\n" + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDEgTElNSVQgMiI=\n" } ] }, @@ -1343,37 +1380,60 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "transaction" + "name": "inspect instance of", + "stringValue": "record_count" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "row_count" + "name": "inspecting for", + "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books", "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 @@ -1383,23 +1443,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDIgTElNSVQgMiI=\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1408,7 +1452,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -1416,82 +1460,35 @@ "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": "binds" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "type_casted_binds.0" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.1" + } + ], "debugAnnotationStringValues": [ { "iid": "10101010101010", @@ -1499,54 +1496,13 @@ }, { "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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": "connection" + "str": "QWN0aXZlTW9kZWw6OkF0dHJpYnV0ZTo6V2l0aENhc3RWYWx1ZQ==\n" }, { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "iid": "10101010101010", + "str": "YmluZHMuMQ==\n" } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" + ] }, "sequenceFlags": 101010101010 }, @@ -1555,14 +1511,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1571,106 +1520,52 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "@model_class" + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.name", "extraCounterTrackUuids": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { - "debugAnnotationStringValues": [ + "debugAnnotationNames": [ { "iid": "10101010101010", - "str": "IzxBdXRob3IgaWQ6IDMsIG5hbWU6ICJDaGFybGVzIERpY2tlbnMiPg==\n" + "name": "type_casted_binds.0" }, { "iid": "10101010101010", - "str": "Q2hhcmxlcyBEaWNrZW5z\n" + "name": "type_casted_binds.1" } - ] - }, - "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 - }, + "debugAnnotationStringValues": [ { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "@find_by" + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.2.books", - "extraCounterTrackUuids": [ - "10101010101010" ] }, "sequenceFlags": 101010101010 @@ -1680,23 +1575,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDMgTElNSVQgMiI=\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1744,13 +1623,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": "row_count" }, { "nameIid": "10101010101010", @@ -1761,7 +1640,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": "binds" + "stringValue": "affected_rows" }, { "nameIid": "10101010101010", @@ -1788,18 +1667,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -1833,7 +1700,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "connection" + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -1845,6 +1712,14 @@ "trackUuid": "10101010101010", "name": "instantiation.active_record" }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vaw==\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -1882,13 +1757,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "id" + "stringValue": "@model_class" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "resolved_type" + "stringValue": "@find_by" } ], "type": "TYPE_SLICE_BEGIN", @@ -1896,79 +1771,56 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.name", + "name": "authors.1.name", "extraCounterTrackUuids": [ "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "id" + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -1991,7 +1843,11 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDQgTElNSVQgMiI=\n" + "str": "IzxBdXRob3IgaWQ6IDIsIG5hbWU6ICJCZWF0cml4IFBvdHRlciI+\n" + }, + { + "iid": "10101010101010", + "str": "QmVhdHJpeCBQb3R0ZXI=\n" } ] }, @@ -2002,7 +1858,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -2010,105 +1866,27 @@ "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": "binds" + "name": "object", + "stringValue": "@model_class" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "result", + "stringValue": "@find_by_many" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", + "name": "authors.1.books", "extraCounterTrackUuids": [ "10101010101010" ] @@ -2120,7 +1898,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2129,18 +1907,26 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2149,14 +1935,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2165,7 +1944,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2173,8 +1952,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -2186,15 +1972,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "Authorize: Book" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2205,12 +1992,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDIgTElNSVQgMiI=\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -2218,7 +2015,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2226,8 +2023,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", @@ -2239,7 +2043,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2248,13 +2052,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2263,7 +2061,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2271,8 +2069,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", @@ -2284,7 +2089,15 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -2293,13 +2106,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2308,7 +2115,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2316,10 +2123,17 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" - } - ], + "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", @@ -2329,7 +2143,15 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -2338,13 +2160,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2353,28 +2169,88 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "affected_rows" + }, { "nameIid": "10101010101010", "boolValue": true, - "name": "authorized?" + "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", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: Book" + "name": "sql.active_record" }, "sequenceFlags": 101010101010 }, @@ -2387,6 +2263,7 @@ "extraCounterValues": [ "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -2398,7 +2275,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -2406,20 +2283,19 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: Book" + "name": "instantiation.active_record" }, "sequenceFlags": 101010101010 }, @@ -2432,6 +2308,7 @@ "extraCounterValues": [ "10101010101010" ], + "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -2443,7 +2320,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -2451,32 +2328,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": "id" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "resolved_type" } ], "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" ], + "name": "authors.2.name", "extraCounterTrackUuids": [ "10101010101010" ] @@ -2488,7 +2360,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2496,8 +2368,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -2509,7 +2388,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -2520,12 +2408,26 @@ "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 }, { @@ -2547,13 +2449,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": null + "stringValue": "id" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": null + "stringValue": "binds.2" } ], "type": "TYPE_SLICE_BEGIN", @@ -2561,40 +2463,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxLCB0aXRsZTogIkEgTWlkc3VtbWVyIE5pZ2h0J3MgRHJl\nYW0iLCBhdXRob3JfaWQ6IDE+\n" - }, - { - "iid": "10101010101010", - "str": "QSBNaWRzdW1tZXIgTmlnaHQncyBEcmVhbQ==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -2602,38 +2475,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2642,26 +2512,235 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEgTElNSVQgMiI=\n" + "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, @@ -2706,13 +2785,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": null + "stringValue": "row_count" }, { "nameIid": "10101010101010", @@ -2723,7 +2802,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": null + "stringValue": "affected_rows" }, { "nameIid": "10101010101010", @@ -2750,26 +2829,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJyZXZpZXdzIi4qIEZST00gInJldmlld3MiIFdIRVJFICJyZXZp\nZXdzIi4iYm9va19pZCIgPSA/IExJTUlUID8=\n" - }, - { - "iid": "10101010101010", - "str": "UmV2aWV3IExvYWQ=\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -2803,7 +2862,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": null + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -2815,14 +2874,6 @@ "trackUuid": "10101010101010", "name": "instantiation.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -2851,21 +2902,33 @@ "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": "10101010101010" + } + ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.0.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + ], + "name": "authors.3.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -2874,14 +2937,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -2889,36 +2973,40 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Execution Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBdXRob3IgaWQ6IDQsIG5hbWU6ICLtlZzqsJUiPg==\n" + }, + { + "iid": "10101010101010", + "str": "7ZWc6rCV\n" + } + ] + }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Exec Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -2938,13 +3026,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": null + "stringValue": "type_casted_binds.3" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "authorized?" + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", @@ -2952,25 +3040,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -2981,7 +3052,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -2989,8 +3060,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -3002,7 +3080,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -3011,13 +3089,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -3026,17 +3098,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.0.books.0.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -3053,89 +3143,61 @@ "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", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Execution Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "Qm9vazo6QWN0aXZlUmVjb3JkX0Fzc29jaWF0aW9uUmVsYXRpb24sIC50b19z\ncWw9IlNFTEVDVCBcImJvb2tzXCIuKiBGUk9NIFwiYm9va3NcIiBXSEVSRSBc\nImJvb2tzXCIuXCJhdXRob3JfaWRcIiA9IDQgTElNSVQgMiI=\n" + } + ] + }, "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "record_count" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -3144,27 +3206,7 @@ "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -3173,37 +3215,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds.0" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } ] }, "sequenceFlags": 101010101010 @@ -3213,23 +3260,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIgTElNSVQgMiI=\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -3238,7 +3269,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -3246,9 +3277,63 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "affected_rows" - }, + "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, @@ -3277,13 +3362,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": null + "stringValue": "row_count" }, { "nameIid": "10101010101010", @@ -3294,7 +3379,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "sql", - "stringValue": null + "stringValue": "affected_rows" }, { "nameIid": "10101010101010", @@ -3321,18 +3406,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -3366,7 +3439,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": null + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -3401,16 +3474,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.0.books.1.averageReview", - "flowIds": [ + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "Authorize: Book" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: Book" + } ] }, "sequenceFlags": 101010101010 @@ -3420,7 +3512,13 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -3429,14 +3527,28 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3444,42 +3556,23 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "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": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3487,36 +3580,8 @@ "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": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@type_for_column", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -3528,45 +3593,21 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + "name": "Authorize: Book" }, - "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" - } + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "aWQ=\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI6OlNRTGl0ZTNJbnRlZ2Vy\n" - } + "extraCounterTrackUuids": [ + "10101010101010" ] }, "sequenceFlags": 101010101010 @@ -3576,92 +3617,28 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "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" + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\naWQiID0gPw==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3674,7 +3651,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -3686,7 +3662,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3694,35 +3670,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3746,7 +3707,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3754,17 +3715,8 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -3776,18 +3728,21 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", + "name": "Authorize: Book" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "name": "PerfettoSchema::AverageReview" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "PerfettoSchema::AverageReview" - } + "extraCounterTrackUuids": [ + "10101010101010" ] }, "sequenceFlags": 101010101010 @@ -3797,7 +3752,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3805,68 +3760,20 @@ "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "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" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUIGJvb2tzLmlkLCBBVkcoc3RhcnMpIGFzIGF2Z19yZXZpZXcgIEZS\nT00gImJvb2tzIiBJTk5FUiBKT0lOICJyZXZpZXdzIiBPTiAicmV2aWV3cyIu\nImJvb2tfaWQiID0gImJvb2tzIi4iaWQiIEdST1VQIEJZICJib29rcyIuImlk\nIg==\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3879,7 +3786,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -3891,7 +3797,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -3899,35 +3805,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -3951,7 +3842,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -3959,36 +3850,30 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.0.books.0.title", "extraCounterTrackUuids": [ "10101010101010" - ], - "flowIds": [ - "10101010101010" - ], - "name": "PerfettoSchema::OtherBook" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "PerfettoSchema::OtherBook" - } - ] + ] }, "sequenceFlags": 101010101010 }, @@ -3997,108 +3882,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "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" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4109,21 +3930,25 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiAxLCB0aXRsZTogIkEgTWlkc3VtbWVyIE5pZ2h0J3MgRHJl\nYW0iLCBhdXRob3JfaWQ6IDE+\n" + }, + { + "iid": "10101010101010", + "str": "QSBNaWRzdW1tZXIgTmlnaHQncyBEcmVhbQ==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -4132,14 +3957,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.0.books.0.reviews", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -4148,41 +3997,53 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -4191,35 +4052,14 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@find_by", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "@find_by_many" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@model_class", + "name": "inspect instance of", "stringValue": "connection" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@type_for_column", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -4231,10 +4071,41 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEgTElNSVQgMiI=\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -4243,7 +4114,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -4251,12 +4122,178 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "affected_rows" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "record_count" }, { "nameIid": "10101010101010", - "boolValue": true, + "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" }, { @@ -4267,6 +4304,10 @@ { "nameIid": "10101010101010", "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -4278,13 +4319,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": null }, { "nameIid": "10101010101010", @@ -4306,6 +4347,10 @@ { "nameIid": "10101010101010", "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, { "nameIid": "10101010101010", "intValue": "10101010101010" @@ -4318,14 +4363,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -4359,7 +4396,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "connection" + "stringValue": null }, { "nameIid": "10101010101010", @@ -4371,6 +4408,14 @@ "trackUuid": "10101010101010", "name": "instantiation.active_record" }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -4393,17 +4438,30 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ + "categories": [ + "Field Execution" + ], + "categoryIids": [ "10101010101010" ], - "extraCounterTrackUuids": [ + "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, @@ -4416,13 +4474,7 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "Fiber Exit", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -4438,16 +4490,34 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -4455,61 +4525,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "async" } ], "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", + "name": "authors.0.books.0.author", "extraCounterTrackUuids": [ "10101010101010" ] @@ -4521,100 +4557,23 @@ "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "dictEntries": [ - { - "nameIid": "10101010101010", - "stringValue": "Book-1" - } - ], - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "t5", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationNames": [ - { - "iid": "10101010101010", - "name": "id" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Resolve Type" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "resolved_type", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -4626,15 +4585,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Resolve Type: Thing" - }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "Resolve Type: Thing" - } - ] + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -4643,13 +4594,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4658,7 +4603,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -4666,8 +4611,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -4679,21 +4631,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" - }, - "internedData": { - "debugAnnotationNames": [ - { - "iid": "10101010101010", - "name": "resolved_type" - } - ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UGVyZmV0dG9TY2hlbWE6OkJvb2s=\n" - } - ] + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -4702,53 +4640,7 @@ "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": "authorized?" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.0.books.1.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4826,7 +4718,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.1.otherBook", + "name": "authors.0.books.0.otherBook", "flowIds": [ "10101010101010" ] @@ -4870,10 +4762,28 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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, @@ -4897,30 +4807,18 @@ }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "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": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.0.books.1.title", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -4931,38 +4829,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -4985,11 +4889,11 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxMCwgdGl0bGU6ICJUaGUgVGFsZSBvZiBQZXRlciBSYWJi\naXQiLCBhdXRob3JfaWQ6IDI+\n" + "str": "IzxCb29rIGlkOiAyLCB0aXRsZTogIlRoZSBNZXJyeSBXaXZlcyBvZiBXaW5k\nc29yIiwgYXV0aG9yX2lkOiAxPg==\n" }, { "iid": "10101010101010", - "str": "VGhlIFRhbGUgb2YgUGV0ZXIgUmFiYml0\n" + "str": "VGhlIE1lcnJ5IFdpdmVzIG9mIFdpbmRzb3I=\n" } ] }, @@ -5028,36 +4932,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.1.reviews", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEwIExJTUlUIDIi\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -5065,100 +4944,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -5167,14 +4981,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "sql.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5183,7 +4990,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -5192,18 +4999,35 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": null + "name": "inspect instance of", + "stringValue": "connection" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5214,13 +5038,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIgTElNSVQgMiI=\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -5228,17 +5061,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.1.books.0.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -5256,14 +5107,43 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -5271,15 +5151,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5288,104 +5161,52 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "authors.0.books.0.otherBook", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxCb29rIGlkOiA5LCB0aXRsZTogIk90aGVsbG8iLCBhdXRob3JfaWQ6IDE+\n" + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\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" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5394,7 +5215,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -5402,30 +5223,80 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "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": "object", + "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": "result", - "stringValue": "transaction" + "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", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.1.books.0.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "sql.active_record" }, "sequenceFlags": 101010101010 }, @@ -5436,11 +5307,10 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -5451,7 +5321,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -5459,20 +5329,19 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: Author" + "name": "instantiation.active_record" }, "sequenceFlags": 101010101010 }, @@ -5485,6 +5354,7 @@ "extraCounterValues": [ "10101010101010" ], + "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -5503,7 +5373,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.1.books.0.otherBook", + "name": "authors.0.books.1.averageReview", "flowIds": [ "10101010101010" ] @@ -5547,59 +5417,115 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.0.books.1.averageReview", - "flowIds": [ + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "GraphQL::Dataloader::ActiveRecordSource" + } + ], + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + }, + { + "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", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -5608,65 +5534,65 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "@find_by", "stringValue": null }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", + "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" ], - "name": "authors.1.books.1.title", "extraCounterTrackUuids": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" ], - "extraCounterTrackUuids": [ - "10101010101010", + "flowIds": [ "10101010101010" - ] + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxMSwgdGl0bGU6ICJUaGUgVGFsZSBvZiBTcXVpcnJlbCBO\ndXRraW4iLCBhdXRob3JfaWQ6IDI+\n" - }, - { - "iid": "10101010101010", - "str": "VGhlIFRhbGUgb2YgU3F1aXJyZWwgTnV0a2lu\n" + "str": "IzxBY3RpdmVSZWNvcmQ6OkNvbm5lY3Rpb25BZGFwdGVyczo6U1FMaXRlM0Fk\nYXB0ZXI6OlNRTGl0ZTNJbnRlZ2Vy\n" } ] }, @@ -5677,37 +5603,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "record_count" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJib29rcyIuKiBGUk9NICJib29rcyIgV0hFUkUgImJvb2tzIi4i\naWQiID0gPw==\n" + } ] }, "sequenceFlags": 101010101010 @@ -5717,26 +5648,64 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", + "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", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDExIExJTUlUIDIi\n" + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" } ] }, "sequenceFlags": 101010101010 }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -5766,10 +5735,6 @@ { "nameIid": "10101010101010", "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -5781,13 +5746,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": null + "stringValue": "row_count" }, { "nameIid": "10101010101010", @@ -5809,10 +5774,6 @@ { "nameIid": "10101010101010", "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, { "nameIid": "10101010101010", "intValue": "10101010101010" @@ -5825,18 +5786,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -5870,7 +5819,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": null + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -5900,21 +5849,68 @@ }, "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" + "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", - "name": "authors.1.books.1.averageReview", - "flowIds": [ + "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 @@ -5933,50 +5929,60 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null + } ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "10101010101010" + } + ], + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "MQ==\n" + } ] }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -6026,7 +6032,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -6034,34 +6040,88 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "affected_rows" - }, - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "allow_retry" - }, - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "async" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", - "name": "binds" + "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": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": "row_count" }, { "nameIid": "10101010101010", @@ -6122,7 +6182,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "connection" + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -6167,6 +6227,60 @@ }, "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, @@ -6181,10 +6295,6 @@ { "nameIid": "10101010101010", "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -6203,7 +6313,6 @@ "10101010101010" ], "flowIds": [ - "10101010101010", "10101010101010" ], "name": "PerfettoSchema::OtherBook" @@ -6215,147 +6324,50 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "record_count" }, { "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" + "name": "inspecting for", + "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiBJTiAoPywgPykgQU5E\nICJib29rcyIuImlkIiBOT1QgSU4gKD8sID8pIEdST1VQIEJZICJib29rcyIu\nImF1dGhvcl9pZCI=\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiA9ID8gQU5EICJib29r\ncyIuImlkIiAhPSA/IEdST1VQIEJZICJib29rcyIuImF1dGhvcl9pZCI=\n" }, { "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "str": "Qm9vayBNYXhpbXVt\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, @@ -6370,57 +6382,61 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "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", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } ] }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -6429,35 +6445,14 @@ { "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": "connection" + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@type_for_column", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", @@ -6469,10 +6464,24 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + "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 }, @@ -6505,6 +6514,10 @@ { "nameIid": "10101010101010", "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -6516,13 +6529,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": null }, { "nameIid": "10101010101010", @@ -6544,6 +6557,10 @@ { "nameIid": "10101010101010", "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, { "nameIid": "10101010101010", "intValue": "10101010101010" @@ -6556,14 +6573,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -6586,28 +6595,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "ActiveSupport::Notifications" - ], - "categoryIids": [ - "10101010101010" - ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" - } - ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -6615,15 +6604,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" + "categories": [ + "Dataloader" ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -6631,36 +6620,70 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -6668,15 +6691,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -6691,16 +6707,35 @@ "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", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" + "intValue": "10101010101010" } ], "name": "fetch keys" @@ -6716,24 +6751,46 @@ "10101010101010" ], "flowIds": [ - "10101010101010", "10101010101010" ], - "name": "PerfettoSchema::OtherBook" - } + "name": "GraphQL::Dataloader::ActiveRecordSource" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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 }, @@ -6741,20 +6798,52 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" + } ] }, "sequenceFlags": 101010101010 @@ -6763,15 +6852,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -6780,7 +6862,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -6788,28 +6870,74 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "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": "object", + "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": "result", + "name": "transaction", "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.1.otherBook", - "flowIds": [ - "10101010101010" - ] - } + "name": "sql.active_record" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -6818,11 +6946,10 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -6833,7 +6960,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -6841,20 +6968,35 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", + "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" - ], - "name": "Authorize: Book" + ] }, "sequenceFlags": 101010101010 }, @@ -6878,35 +7020,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "transaction" - } - ], - "type": "TYPE_SLICE_BEGIN", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.author", + "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -6917,16 +7041,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ - "10101010101010", + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -6935,7 +7058,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Dataloader" ], "categoryIids": [ "10101010101010" @@ -6943,8 +7066,13 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", @@ -6956,9 +7084,11 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" - }, - "sequenceFlags": 101010101010 + "flowIds": [ + "10101010101010" + ], + "name": "PerfettoSchema::OtherBook" + } }, { "timestamp": "10101010101010", @@ -6980,42 +7110,20 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_SLICE_BEGIN", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "authors.1.books.1.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" ], - "categoryIids": [ + "name": "Fiber Exit", + "extraCounterTrackUuids": [ "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + ] }, "sequenceFlags": 101010101010 }, @@ -7048,6 +7156,12 @@ "debugAnnotations": [ { "nameIid": "10101010101010", + "dictEntries": [ + { + "nameIid": "10101010101010", + "stringValue": "Book-1" + } + ], "name": "arguments" }, { @@ -7058,13 +7172,14 @@ }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.1.books.0.averageReview", + "name": "t5", "flowIds": [ "10101010101010" ] @@ -7074,59 +7189,56 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Debug Inspect" ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Field Execution" - ], - "categoryIids": [ + "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.title", "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, @@ -7142,18 +7254,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxOSwgdGl0bGU6ICJUaGUgUGlja3dpY2sgUGFwZXJzIiwg\nYXV0aG9yX2lkOiAzPg==\n" - }, - { - "iid": "10101010101010", - "str": "VGhlIFBpY2t3aWNrIFBhcGVycw==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -7161,37 +7261,36 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Resolve Type" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "resolved_type", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "Resolve Type: Thing" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Resolve Type: Thing" + } ] }, "sequenceFlags": 101010101010 @@ -7203,22 +7302,12 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDE5IExJTUlUIDIi\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -7226,98 +7315,40 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "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": "analyzers_count" - }, - { - "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" + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "internedData": { - "debugAnnotationStringValues": [ + "debugAnnotationNames": [ { "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, + "name": "resolved_type" + } + ], + "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "str": "UGVyZmV0dG9TY2hlbWE6OkJvb2s=\n" } ] }, @@ -7332,7 +7363,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -7344,40 +7374,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", + "name": "object", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "async" } ], "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", + "name": "authors.0.books.1.author", "extraCounterTrackUuids": [ "10101010101010" ] @@ -7389,17 +7414,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.2.books.0.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -7417,14 +7460,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -7432,54 +7496,11 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "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", - "name": "authors.1.books.0.otherBook", - "flowIds": [ - "10101010101010" - ] - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -7495,14 +7516,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAxOCwgdGl0bGU6ICJUaGUgU3Rvcnkgb2YgYSBGaWVyY2Ug\nQmFkIFJhYmJpdCIsIGF1dGhvcl9pZDogMj4=\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -7531,7 +7544,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "Authorize: Author" }, "sequenceFlags": 101010101010 }, @@ -7560,31 +7573,10 @@ "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.author", - "extraCounterTrackUuids": [ + "name": "authors.0.books.1.otherBook", + "flowIds": [ "10101010101010" ] }, @@ -7595,15 +7587,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7612,28 +7596,14 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Dataloader" ], "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" - } - ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: Author" + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -7641,14 +7611,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -7662,21 +7633,65 @@ "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.otherBook", + "name": "authors.0.books.0.averageReview", "flowIds": [ "10101010101010" ] - }, - "sequenceFlags": 101010101010 + } }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "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 }, @@ -7684,15 +7699,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7700,15 +7708,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -7735,30 +7744,18 @@ }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "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": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.1.books.0.title", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -7769,38 +7766,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -7823,11 +7826,11 @@ "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAyMCwgdGl0bGU6ICJPbGl2ZXIgVHdpc3QiLCBhdXRob3Jf\naWQ6IDM+\n" + "str": "IzxCb29rIGlkOiAxMCwgdGl0bGU6ICJUaGUgVGFsZSBvZiBQZXRlciBSYWJi\naXQiLCBhdXRob3JfaWQ6IDI+\n" }, { "iid": "10101010101010", - "str": "T2xpdmVyIFR3aXN0\n" + "str": "VGhlIFRhbGUgb2YgUGV0ZXIgUmFiYml0\n" } ] }, @@ -7866,7 +7869,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews", + "name": "authors.1.books.0.reviews", "extraCounterTrackUuids": [ "10101010101010" ] @@ -7877,27 +7880,273 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Debug Inspect" ], - "extraCounterTrackUuids": [ - "10101010101010", + "categoryIids": [ "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ + ], + "debugAnnotations": [ { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIwIExJTUlUIDIi\n" - } + "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": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDEwIExJTUlUIDIi\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, @@ -7942,7 +8191,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", @@ -7986,18 +8235,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -8073,7 +8310,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.2.books.1.averageReview", + "name": "authors.1.books.0.averageReview", "flowIds": [ "10101010101010" ] @@ -8117,26 +8354,44 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "name": "Create Source Fiber", - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" + "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" + ] } }, { @@ -8144,7 +8399,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8152,17 +8407,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -8174,11 +8427,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::AverageReview" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8187,68 +8445,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8259,13 +8493,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxCb29rIGlkOiA5LCB0aXRsZTogIk90aGVsbG8iLCBhdXRob3JfaWQ6IDE+\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -8273,7 +8516,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -8281,19 +8524,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Book" }, "sequenceFlags": 101010101010 }, @@ -8306,7 +8550,6 @@ "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -8317,11 +8560,36 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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": "@model_class" + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.1.books.0.author", "extraCounterTrackUuids": [ "10101010101010" ] @@ -8333,7 +8601,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8341,17 +8609,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -8363,11 +8629,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::OtherBook" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8376,7 +8647,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8384,116 +8655,83 @@ "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" }, { "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" + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "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": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" } - ] + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: Author" }, "sequenceFlags": 101010101010 }, @@ -8506,13 +8744,31 @@ "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", "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, @@ -8550,34 +8806,16 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "name": "Create Source Fiber", - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -8585,36 +8823,50 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@find_by", - "stringValue": null + "name": "arguments" }, { "nameIid": "10101010101010", - "boolValue": false, - "name": "@find_by_many" + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@model_class", - "stringValue": "connection" - }, + "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": "@type_for_column", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -8626,10 +8878,33 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -8638,7 +8913,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -8646,93 +8921,27 @@ "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", + "name": "object", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", + "name": "result", "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "sql.active_record" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "sql.active_record", + "name": "authors.1.books.1.title", "extraCounterTrackUuids": [ "10101010101010" ] @@ -8744,7 +8953,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8753,18 +8962,26 @@ { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8773,14 +8990,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "instantiation.active_record", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8791,12 +9001,26 @@ "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 }, { @@ -8804,17 +9028,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Exit", + "name": "authors.1.books.1.reviews", "extraCounterTrackUuids": [ "10101010101010" ] @@ -8826,14 +9068,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8842,7 +9114,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8850,17 +9122,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "connection" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -8872,12 +9142,18 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::OtherBook" - } + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -8886,12 +9162,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDExIExJTUlUIDIi\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -8899,20 +9185,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -8920,15 +9221,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -8937,60 +9231,61 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds.0" } ], "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "authors.1.books.1.otherBook", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "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": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -8998,8 +9293,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", @@ -9011,7 +9313,15 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -9020,13 +9330,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9035,7 +9339,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -9043,30 +9347,80 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "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": "object", + "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": "result", + "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", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.2.books.1.author", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "sql.active_record" }, "sequenceFlags": 101010101010 }, @@ -9077,11 +9431,10 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -9092,7 +9445,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" @@ -9100,20 +9453,19 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "class_name", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "record_count" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: Author" + "name": "instantiation.active_record" }, "sequenceFlags": 101010101010 }, @@ -9126,6 +9478,7 @@ "extraCounterValues": [ "10101010101010" ], + "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -9144,7 +9497,7 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.2.books.1.otherBook", + "name": "authors.1.books.1.averageReview", "flowIds": [ "10101010101010" ] @@ -9188,16 +9541,34 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -9205,42 +9576,36 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspecting for", "stringValue": null - }, - { - "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.2.books.0.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9249,38 +9614,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -9289,27 +9651,7 @@ "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9318,7 +9660,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "categoryIids": [ "10101010101010" @@ -9326,30 +9668,33 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "flowIds": [ + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::AverageReview" }, "sequenceFlags": 101010101010 }, @@ -9357,24 +9702,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI2IExJTUlUIDIi\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9396,7 +9762,7 @@ }, { "nameIid": "10101010101010", - "boolValue": true, + "boolValue": false, "name": "allow_retry" }, { @@ -9406,29 +9772,19 @@ }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], "name": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": null + "stringValue": "row_count" }, { "nameIid": "10101010101010", @@ -9449,16 +9805,6 @@ }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], "name": "type_casted_binds" } ], @@ -9466,18 +9812,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -9511,7 +9845,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": null + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -9545,43 +9879,51 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Field Execution" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_SLICE_BEGIN", - "trackUuid": "10101010101010", - "name": "authors.3.books.0.averageReview", - "flowIds": [ + "extraCounterTrackUuids": [ "10101010101010" ] }, "sequenceFlags": 101010101010 }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" - }, - "sequenceFlags": 101010101010 - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -9589,15 +9931,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9606,59 +9941,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.2.books.0.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "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" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9667,7 +9987,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Dataloader" ], "categoryIids": [ "10101010101010" @@ -9675,8 +9995,17 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", @@ -9688,22 +10017,11 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ + "flowIds": [ + "10101010101010", "10101010101010" ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "PerfettoSchema::OtherBook" }, "sequenceFlags": 101010101010 }, @@ -9712,37 +10030,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "id" + "name": "inspecting for", + "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.author", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUIE1BWCgiYm9va3MiLiJpZCIpIEFTICJtYXhpbXVtX2lkIiwgImJv\nb2tzIi4iYXV0aG9yX2lkIiBBUyAiYm9va3NfYXV0aG9yX2lkIiBGUk9NICJi\nb29rcyIgV0hFUkUgImJvb2tzIi4iYXV0aG9yX2lkIiBJTiAoPywgPykgQU5E\nICJib29rcyIuImlkIiBOT1QgSU4gKD8sID8pIEdST1VQIEJZICJib29rcyIu\nImF1dGhvcl9pZCI=\n" + } ] }, "sequenceFlags": 101010101010 @@ -9752,15 +10075,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9769,7 +10084,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -9777,8 +10092,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", @@ -9790,40 +10112,14 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "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" + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } ] }, "sequenceFlags": 101010101010 @@ -9842,39 +10138,7 @@ "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -9882,42 +10146,54 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspecting for", "stringValue": null - }, - { - "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.2.books.1.averageReview", - "flowIds": [ + "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", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -9926,106 +10202,116 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.title", "extraCounterTrackUuids": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "internedData": { + "debugAnnotationNames": [ + { + "iid": "10101010101010", + "name": "binds.3" + } + ], "debugAnnotationStringValues": [ { "iid": "10101010101010", - "str": "IzxCb29rIGlkOiAyNywgdGl0bGU6ICLtnbAiLCBhdXRob3JfaWQ6IDQ+\n" + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" }, { "iid": "10101010101010", - "str": "7Z2w\n" + "str": "YmluZHMuMw==\n" } ] }, "sequenceFlags": 101010101010 }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "authorized?" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews", "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 @@ -10035,23 +10321,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI3IExJTUlUIDIi\n" - } - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10084,6 +10354,14 @@ { "nameIid": "10101010101010", "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010" @@ -10099,7 +10377,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", @@ -10127,6 +10405,14 @@ { "nameIid": "10101010101010", "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, { "nameIid": "10101010101010", "intValue": "10101010101010" @@ -10143,18 +10429,6 @@ "trackUuid": "10101010101010", "name": "sql.active_record" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -10177,28 +10451,8 @@ "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" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10206,34 +10460,86 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ + "categories": [ + "Dataloader" + ], + "categoryIids": [ "10101010101010" ], - "name": "instantiation.active_record", + "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": [ - "Field Execution" + "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", - "name": "authors.3.books.1.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -10256,9 +10562,54 @@ "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "flowIds": [ + "10101010101010" + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" }, "sequenceFlags": 101010101010 }, @@ -10267,41 +10618,53 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -10309,17 +10672,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" } ], "type": "TYPE_SLICE_BEGIN", @@ -10331,11 +10692,24 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::AverageReview" + "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 }, @@ -10357,7 +10731,7 @@ }, { "nameIid": "10101010101010", - "boolValue": false, + "boolValue": true, "name": "allow_retry" }, { @@ -10367,19 +10741,25 @@ }, { "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], "name": "binds" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "connection", - "stringValue": "analyzers_count" + "stringValue": "name\n" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "name\n", - "stringValue": "type_casted_binds" + "stringValue": "row_count" }, { "nameIid": "10101010101010", @@ -10400,6 +10780,12 @@ }, { "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], "name": "type_casted_binds" } ], @@ -10440,7 +10826,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "class_name", - "stringValue": "connection" + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", @@ -10485,6 +10871,44 @@ }, "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, @@ -10525,6 +10949,20 @@ "10101010101010" ], "name": "PerfettoSchema::OtherBook" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -10533,124 +10971,12227 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Dataloader" ], "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ + "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": "@model_class" + } + ], + "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "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": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDE5IExJTUlUIDIi\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": 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": [ + "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": "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": "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "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": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDIwIExJTUlUIDIi\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": 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": [ + "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": "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": "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "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": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI2IExJTUlUIDIi\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": 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": [ + "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": "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": "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", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "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": "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": "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": "UmV2aWV3OjpBY3RpdmVSZWNvcmRfQXNzb2NpYXRpb25SZWxhdGlvbiwgLnRv\nX3NxbD0iU0VMRUNUIFwicmV2aWV3c1wiLiogRlJPTSBcInJldmlld3NcIiBX\nSEVSRSBcInJldmlld3NcIi5cImJvb2tfaWRcIiA9IDI3IExJTUlUIDIi\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": 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": [ + "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": "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": "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" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAxPg==\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": "IzxSZXZpZXcgaWQ6IDIsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAxPg==\n" + }, + { + "iid": "10101010101010", + "str": "Mg==\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" + }, + { + "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" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDUsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAyPg==\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": [ + "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" + ], + "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": [ + "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", + "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" + ], + "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": [ + "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": [ + "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": [ + "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", + "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": "@model_class" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@find_by" + } + ], + "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" + ], + "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": 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" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDYsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAyPg==\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": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDM3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTA+\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": "IzxSZXZpZXcgaWQ6IDM4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTA+\n" + }, + { + "iid": "10101010101010", + "str": "Mw==\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" + }, + { + "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", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDQxLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTE+\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": [ + "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": [ + "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": [ + "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": [ + "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", + "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": "@model_class" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "@find_by" + } + ], + "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" + ], + "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": [ + "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": [ + "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": [ + "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", + "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": "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" + ], + "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": 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" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDQyLCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTE+\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": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDczLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTk+\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", - "intValue": "10101010101010", - "name": "affected_rows" + "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": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDc0LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTk+\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" + }, + { + "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", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDc3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMjA+\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": [ + "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": [ + "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": [ + "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": [ + "Authorized" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ { "nameIid": "10101010101010", "boolValue": true, - "name": "allow_retry" - }, - { - "nameIid": "10101010101010", - "boolValue": false, - "name": "async" - }, + "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", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "binds" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "analyzers_count" + "name": "object", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "name\n", + "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", - "intValue": "10101010101010", - "name": "row_count" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", - "stringValue": null + "name": "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": "transaction", - "stringValue": null + "name": "object", + "stringValue": "id" }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "resolved_type" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "binds" }, { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "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 }, @@ -10661,15 +23202,36 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "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, @@ -10707,27 +23269,95 @@ ], "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", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "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", @@ -10739,54 +23369,50 @@ "categoryIids": [ "10101010101010" ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "categories": [ + "Authorized" + ], + "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": "connection" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "@type_for_column", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ + "flowIds": [ "10101010101010" ], - "extraCounterTrackUuids": [ + "name": "Authorize: Review" + } + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "flowIds": [ + "extraCounterTrackUuids": [ "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" + ] }, "sequenceFlags": 101010101010 }, @@ -10795,7 +23421,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -10803,80 +23429,76 @@ "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": "analyzers_count" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": "type_casted_binds" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" + "name": "object", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", + "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": "transaction", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "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 }, @@ -10887,13 +23509,22 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "R3JlYXQgRXhwZWN0YXRpb25z\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -10901,27 +23532,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", - "stringValue": "connection" + "name": "object", + "stringValue": "type_casted_binds.3" }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.author.name", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -10929,15 +23571,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "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" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10948,9 +23620,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -10961,20 +23635,27 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ + "flowIds": [ "10101010101010" ], - "name": "Fiber Exit", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "name": "Authorize: Review" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -10990,7 +23671,7 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -11004,72 +23685,64 @@ "categoryIids": [ "10101010101010" ], - "debugAnnotations": [ - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" - } - ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", + "type": "TYPE_INSTANT", "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" - ], + "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": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -11077,15 +23750,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11094,51 +23760,52 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "inspecting for", "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.2.books.1.otherBook", - "flowIds": [ + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDc4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMjA+\n" + } ] - } + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11147,7 +23814,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -11155,8 +23822,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -11168,7 +23842,15 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwMSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI2Pg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -11177,13 +23859,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11192,37 +23868,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "id" + "name": "inspecting for", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.author", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwMiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI2Pg==\n" + } ] }, "sequenceFlags": 101010101010 @@ -11232,15 +23913,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11249,7 +23922,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Dataloader" ], "categoryIids": [ "10101010101010" @@ -11257,8 +23930,25 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "arrayValues": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", @@ -11270,7 +23960,21 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Author" + "flowIds": [ + "10101010101010", + "10101010101010", + "10101010101010", + "10101010101010" + ], + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwNSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI3Pg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -11294,42 +23998,20 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_SLICE_BEGIN", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "authors.3.books.1.otherBook", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" ], - "categoryIids": [ + "name": "Fiber Exit", + "extraCounterTrackUuids": [ "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + ] }, "sequenceFlags": 101010101010 }, @@ -11354,7 +24036,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -11362,26 +24044,17 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.3.books.0.averageReview", "flowIds": [ "10101010101010" - ] + ], + "name": "Authorize: Review" } }, { @@ -11391,11 +24064,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -11419,14 +24090,6 @@ ], "name": "Authorize: Review" }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "Authorize: Review" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -11470,67 +24133,6 @@ }, "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": { - "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, @@ -11551,15 +24153,11 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ + "flowIds": [ "10101010101010" ], - "name": "Authorize: Book" - }, - "sequenceFlags": 101010101010 + "name": "Authorize: Review" + } }, { "timestamp": "10101010101010", @@ -11572,52 +24170,7 @@ ], "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 }, @@ -11626,14 +24179,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.otherBook.title", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -11642,35 +24219,46 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", - "doubleValue": 101010101010, - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.3.books.1.averageReview", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -11708,13 +24296,13 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "object", - "stringValue": "authorized?" + "stringValue": "type_casted_binds.3" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "sql" + "stringValue": "10101010101010" } ], "type": "TYPE_SLICE_BEGIN", @@ -11722,25 +24310,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.author.name", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -11751,18 +24322,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -11779,15 +24367,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -11796,41 +24385,47 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", "10101010101010" ], - "name": "Create Source Fiber", + "name": "authors.3.books.0.otherBook.title", "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": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -11838,13 +24433,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -11856,10 +24453,41 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "PerfettoSchema::OtherBook" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "64W4656R66y064qs7JiB7JuQ\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -11868,7 +24496,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -11876,92 +24504,76 @@ "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" + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "connection", - "stringValue": "analyzers_count" + "name": "object", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "name\n", + "name": "result", "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, + } + ], + "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": "sql", - "stringValue": null + "name": "inspect instance of", + "stringValue": "10101010101010" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "transaction", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "type_casted_binds" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVSZWNvcmQ6OlJlbGF0aW9uOjpRdWVyeUF0dHJpYnV0ZQ==\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -11972,10 +24584,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -11985,11 +24598,35 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Field Execution" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.0.books.0.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" ] @@ -12001,7 +24638,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -12009,21 +24646,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -12035,34 +24666,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "PerfettoSchema::Authorized" - } - ], - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAxPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDIsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAxPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDUsIHN0YXJzOiAxLCB1c2VyX2lkOiAxLCBib29rX2lk\nOiAyPg==\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12073,9 +24686,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -12086,20 +24701,42 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "extraCounterValues": [ + "name": "authors.0.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" ], - "name": "Fiber Exit", - "extraCounterTrackUuids": [ + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Yield" }, "sequenceFlags": 101010101010 }, @@ -12119,6 +24756,47 @@ }, "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, @@ -12142,31 +24820,17 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.3.books.1.otherBook", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.0.books.0.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -12177,7 +24841,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -12185,8 +24849,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -12198,7 +24869,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: Book" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12209,9 +24889,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -12222,18 +24904,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", + "name": "authors.0.books.0.reviews.1.user", "flowIds": [ "10101010101010" - ], - "name": "Authorize: Review" + ] }, "sequenceFlags": 101010101010 }, @@ -12342,9 +25023,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -12352,25 +25032,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "t5.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.1.reviews.0.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -12381,38 +25044,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "authorized?" + "name": "inspect instance of", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "sql" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.author.name", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12438,18 +25107,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", + "name": "authors.0.books.1.reviews.0.user", "flowIds": [ "10101010101010" - ], - "name": "Authorize: Review" + ] }, "sequenceFlags": 101010101010 }, @@ -12490,16 +25158,34 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "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": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -12507,51 +25193,35 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", - "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": [ - "Authorized" - ], - "categoryIids": [ - "10101010101010" ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "flowIds": [ - "10101010101010" - ], - "name": "Authorize: Review" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "VXNlcg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -12574,131 +25244,60 @@ "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": [ + "stringValueIid": "10101010101010", + "name": "@find_by", + "stringValue": null + }, { "nameIid": "10101010101010", - "name": "arguments" + "boolValue": false, + "name": "@find_by_many" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "@model_class", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", + "name": "@type_for_column", "stringValue": null + }, + { + "nameIid": "10101010101010", + "arrayValues": [ + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010" + } + ], + "name": "fetch keys" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" ], - "extraCounterTrackUuids": [ + "flowIds": [ + "10101010101010", "10101010101010", "10101010101010" - ] - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "T3RoZWxsbw==\n" - } - ] + ], + "name": "GraphQL::Dataloader::ActiveRecordSource" }, "sequenceFlags": 101010101010 }, @@ -12707,37 +25306,46 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "transaction" + "name": "inspect instance of", + "stringValue": "binds.1" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "affected_rows" + "name": "inspecting for", + "stringValue": "class_name" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.author.name", "extraCounterTrackUuids": [ "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiIElOICg/LCA/KQ==\n" + }, + { + "iid": "10101010101010", + "str": "VXNlciBMb2Fk\n" + } ] }, "sequenceFlags": 101010101010 @@ -12747,15 +25355,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -12764,18 +25364,43 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -12793,62 +25418,81 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": "authorized?" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "sql" + } ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" + } ] }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "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": [ @@ -12859,55 +25503,57 @@ { "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", - "stringValueIid": "10101010101010" + "intValue": "10101010101010" }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010" + "intValue": "10101010101010" } ], - "name": "fetch keys" + "name": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDYsIHN0YXJzOiAyLCB1c2VyX2lkOiAyLCBib29rX2lk\nOiAyPg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDM3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDM4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDQxLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTE+\n" - } - ] + "name": "sql.active_record" }, "sequenceFlags": 101010101010 }, @@ -12920,6 +25566,7 @@ "extraCounterValues": [ "10101010101010" ], + "name": "sql.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -12931,17 +25578,40 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "ActiveSupport::Notifications" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Exit", + "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" ] @@ -12952,15 +25622,14 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -12969,7 +25638,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -12977,31 +25646,36 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13010,18 +25684,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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": "Authorize: Review" + "name": "PerfettoSchema::Authorized" + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxSZXZpZXcgaWQ6IDEwNiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI3Pg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -13030,7 +25730,13 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13046,7 +25752,13 @@ ], "type": "TYPE_INSTANT", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "name": "Fiber Exit", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13130,9 +25842,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -13140,25 +25851,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.otherBook.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.1.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -13169,75 +25863,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "transaction" + "name": "inspect instance of", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "affected_rows" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "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" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13254,31 +25908,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13287,7 +25926,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -13295,28 +25934,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "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" ], + "name": "authors.0.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -13328,18 +25966,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13357,14 +26012,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13372,15 +26057,24 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] + }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAyLCB1c2VybmFtZTogInRlbmRlcmxvdmUiPg==\n" + } + ] }, "sequenceFlags": 101010101010 }, @@ -13404,11 +26098,23 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "internedData": { + "eventNames": [ + { + "iid": "10101010101010", + "name": "Authorize: User" + } + ] + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -13446,22 +26152,67 @@ "name": "object", "stringValue": null }, + { + "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": "result", + "name": "inspect instance of", "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13480,14 +26231,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "VGhlIFN0b3J5IG9mIGEgRmllcmNlIEJhZCBSYWJiaXQ=\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -13515,7 +26258,7 @@ "nameIid": "10101010101010", "stringValueIid": "10101010101010", "name": "result", - "stringValue": "@model_class" + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -13523,25 +26266,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.0.reviews.0.user", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -13552,18 +26278,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13581,14 +26324,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13596,42 +26360,42 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ "10101010101010", "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "IzxVc2VyIGlkOiAxLCB1c2VybmFtZTogIm1hdHoiPg==\n" + } + ] + }, "sequenceFlags": 101010101010 }, - { - "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -13639,25 +26403,8 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", @@ -13666,36 +26413,10 @@ "extraCounterValues": [ "10101010101010" ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDQyLCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTE+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDczLCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMTk+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc0LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMTk+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc3LCBzdGFyczogMSwgdXNlcl9pZDogMSwgYm9va19p\nZDogMjA+\n" - } - ] + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -13719,17 +26440,34 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", + "name": "authors.1.books.0.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" ] @@ -13741,23 +26479,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -13765,18 +26487,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -13785,9 +26527,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -13798,27 +26542,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" + "name": "authors.1.books.0.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -13827,14 +26582,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -13842,15 +26618,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -13859,7 +26628,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -13867,18 +26636,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -13887,9 +26676,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -13900,7 +26691,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -13908,30 +26699,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -13942,11 +26723,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -13975,9 +26754,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "@model_class" + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -13985,25 +26763,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.author.name", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.1.reviews.0.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -14014,18 +26775,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14042,15 +26820,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14059,14 +26838,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.1.books.1.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14075,7 +26878,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -14083,31 +26886,36 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14116,18 +26924,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14144,31 +26969,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14192,11 +27002,15 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -14236,9 +27050,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -14246,36 +27059,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.otherBook.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.1.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "R3JlYXQgRXhwZWN0YXRpb25z\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -14283,38 +27071,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "id" + "name": "inspect instance of", + "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "resolved_type" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.author.name", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14340,43 +27134,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "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", - "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "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": [ + "name": "authors.1.books.1.reviews.1.user", + "extraCounterTrackUuids": [ "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + ] }, "sequenceFlags": 101010101010 }, @@ -14385,41 +27174,53 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -14427,25 +27228,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -14457,33 +27248,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDc4LCBzdGFyczogMiwgdXNlcl9pZDogMiwgYm9va19p\nZDogMjA+\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwMSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI2Pg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwMiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI2Pg==\n" - }, - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwNSwgc3RhcnM6IDEsIHVzZXJfaWQ6IDEsIGJvb2tf\naWQ6IDI3Pg==\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14494,9 +27268,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -14507,20 +27283,28 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -14528,15 +27312,14 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14545,7 +27328,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -14553,28 +27336,26 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" } ], "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" ], + "name": "authors.2.books.0.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" ] @@ -14586,18 +27367,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -14614,15 +27412,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14631,14 +27430,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "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": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.0.reviews.0.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -14647,7 +27470,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -14655,31 +27478,36 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14688,38 +27516,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14745,7 +27579,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -14753,30 +27587,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": "id" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": "resolved_type" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.author.name", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -14787,11 +27611,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -14820,9 +27642,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -14830,36 +27651,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.otherBook.title", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.0.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "64W4656R66y064qs7JiB7JuQ\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -14867,38 +27663,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.otherBook.title", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14942,8 +27744,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -14951,7 +27754,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.0.stars", + "name": "authors.2.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -14962,16 +27765,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -14980,17 +27812,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.0.books.0.reviews.0.user", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -15007,31 +27857,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", - "name": "Fiber Yield" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -15055,11 +27890,15 @@ "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -15108,25 +27947,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.1.reviews.0.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -15137,42 +27959,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.0.books.0.reviews.1.user", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "categories": [ - "Dataloader" ], - "categoryIids": [ + "extraCounterTrackUuids": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -15180,44 +27995,11 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "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", - "flowIds": [ - "10101010101010" - ], - "name": "Authorize: Review" - } - }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, @@ -15225,9 +28007,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -15256,8 +28040,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -15265,7 +28050,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.0.stars", + "name": "authors.2.books.1.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -15276,16 +28061,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15294,17 +28108,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "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", - "name": "authors.0.books.1.reviews.0.user", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -15321,15 +28153,16 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Yield" + "extraCounterTrackUuids": [ + "10101010101010", + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -15338,41 +28171,52 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], - "name": "Create Source Fiber", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, { + "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, - "sequenceFlags": 101010101010, - "trackDescriptor": { - "uuid": "10101010101010", - "name": "Source Fiber #1010", - "parentUuid": "10101010101010", - "childOrdering": "CHRONOLOGICAL" - } + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ] + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -15380,64 +28224,28 @@ "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 + "name": "arguments" }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "@type_for_column", + "name": "object", "stringValue": null }, { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010" - } - ], - "name": "fetch keys" + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.2.books.1.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" - ], - "flowIds": [ - "10101010101010", - "10101010101010", - "10101010101010" - ], - "name": "GraphQL::Dataloader::ActiveRecordSource" - }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "VXNlcg==\n" - } ] }, "sequenceFlags": 101010101010 @@ -15447,108 +28255,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Debug Inspect" ], "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": "analyzers_count" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "name\n", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "row_count" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "sql", + "name": "inspect instance of", "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" + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "sql.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "U0VMRUNUICJ1c2VycyIuKiBGUk9NICJ1c2VycyIgV0hFUkUgInVzZXJzIi4i\naWQiIElOICg/LCA/KQ==\n" - }, - { - "iid": "10101010101010", - "str": "VXNlciBMb2Fk\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - }, - { - "iid": "10101010101010", - "str": "IzxBY3RpdmVNb2RlbDo6QXR0cmlidXRlOjpXaXRoQ2FzdFZhbHVl\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15559,10 +28303,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], - "name": "sql.active_record", "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -15573,27 +28318,38 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "ActiveSupport::Notifications" + "Field Execution" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "class_name", + "name": "object", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "record_count" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "instantiation.active_record" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.2.books.1.reviews.1.user", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -15601,15 +28357,36 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "instantiation.active_record", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -15618,13 +28395,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15633,7 +28404,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -15641,13 +28412,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "arrayValues": [ - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010" - } - ], - "name": "fetch keys" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -15659,18 +28432,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "flowIds": [ - "10101010101010" - ], - "name": "PerfettoSchema::Authorized" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxSZXZpZXcgaWQ6IDEwNiwgc3RhcnM6IDIsIHVzZXJfaWQ6IDIsIGJvb2tf\naWQ6IDI3Pg==\n" - } - ] + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15681,9 +28452,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -15694,17 +28467,40 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", + "trackUuid": "10101010101010", + "extraCounterValues": [ + "10101010101010" + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "Authorize: User" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -15716,14 +28512,37 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Field Execution" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "intValue": "10101010101010", + "name": "result" + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterValues": [ + "10101010101010" + ], + "name": "authors.3.books.0.reviews.0.stars", + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -15732,7 +28551,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -15740,18 +28559,38 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", "nameIid": "10101010101010", "trackUuid": "10101010101010", - "flowIds": [ + "extraCounterValues": [ "10101010101010" ], - "name": "Authorize: Review" - } + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -15760,9 +28599,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -15791,8 +28632,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -15800,7 +28642,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.1.stars", + "name": "authors.3.books.0.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -15811,16 +28653,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15829,38 +28700,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -15879,14 +28756,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxVc2VyIGlkOiAyLCB1c2VybmFtZTogInRlbmRlcmxvdmUiPg==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -15917,14 +28786,6 @@ ], "name": "Authorize: User" }, - "internedData": { - "eventNames": [ - { - "iid": "10101010101010", - "name": "Authorize: User" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -15974,25 +28835,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.0.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.0.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16003,38 +28847,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16053,14 +28903,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "IzxVc2VyIGlkOiAxLCB1c2VybmFtZTogIm1hdHoiPg==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -16068,7 +28910,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -16076,32 +28918,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.3.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16113,37 +28950,35 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -16152,15 +28987,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16169,38 +28996,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16298,13 +29131,59 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.0.stars", + "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": "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, @@ -16355,7 +29234,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.0.user", + "name": "authors.3.books.1.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16366,16 +29245,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16384,7 +29292,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -16392,8 +29300,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", @@ -16405,7 +29320,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16416,9 +29340,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -16429,7 +29355,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -16437,29 +29363,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.1.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -16470,11 +29387,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16503,9 +29418,8 @@ }, { "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "intValue": "10101010101010", + "name": "result" } ], "type": "TYPE_SLICE_BEGIN", @@ -16513,25 +29427,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.1.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.reviews.1.stars", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16542,7 +29439,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -16550,8 +29447,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -16563,7 +29467,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16574,9 +29487,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -16605,8 +29520,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -16614,7 +29530,7 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.0.stars", + "name": "authors.3.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16625,16 +29541,45 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", + "categories": [ + "Debug Inspect" + ], + "categoryIids": [ + "10101010101010" + ], + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16643,38 +29588,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.0.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16763,8 +29714,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -16772,25 +29724,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -16801,38 +29736,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16851,6 +29792,14 @@ "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "dGVuZGVybG92ZQ==\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -16858,7 +29807,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -16866,32 +29815,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.1.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" ] @@ -16903,37 +29847,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -16952,6 +29903,14 @@ "10101010101010" ] }, + "internedData": { + "debugAnnotationStringValues": [ + { + "iid": "10101010101010", + "str": "bWF0eg==\n" + } + ] + }, "sequenceFlags": 101010101010 }, { @@ -16977,35 +29936,18 @@ }, { "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": { - "type": "TYPE_SLICE_END", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null + } + ], + "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.1.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17016,7 +29958,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -17024,8 +29966,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -17037,7 +29986,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17048,9 +30006,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -17079,8 +30039,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -17088,25 +30049,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.1.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17117,38 +30061,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17174,7 +30124,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -17182,32 +30132,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "name": "arguments" + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "object", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], + "name": "authors.1.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" ] @@ -17219,37 +30164,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17303,25 +30255,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.0.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17332,7 +30267,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -17340,8 +30275,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -17353,7 +30295,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17364,9 +30315,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -17395,8 +30348,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -17404,25 +30358,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.1.stars", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17433,38 +30370,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.1.user", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17490,7 +30433,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Field Execution" ], "categoryIids": [ "10101010101010" @@ -17498,32 +30441,27 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" - } - ], - "type": "TYPE_SLICE_BEGIN", - "nameIid": "10101010101010", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ], - "name": "Authorize: User" - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", + "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.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" ] @@ -17535,37 +30473,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.0.stars", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17619,25 +30564,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.0.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.2.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17648,7 +30576,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -17656,8 +30584,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -17669,7 +30604,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17680,9 +30624,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -17711,8 +30657,9 @@ }, { "nameIid": "10101010101010", - "intValue": "10101010101010", - "name": "result" + "stringValueIid": "10101010101010", + "name": "result", + "stringValue": null } ], "type": "TYPE_SLICE_BEGIN", @@ -17720,13 +30667,59 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.1.stars", + "name": "authors.3.books.0.reviews.0.user.username", "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": "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, @@ -17777,25 +30770,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.1.user", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -17806,7 +30782,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -17814,8 +30790,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -17827,7 +30810,16 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17838,9 +30830,11 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ + "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ + "10101010101010", "10101010101010" ] }, @@ -17879,36 +30873,11 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.1.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "dGVuZGVybG92ZQ==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -17916,38 +30885,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -17966,14 +30941,6 @@ "10101010101010" ] }, - "internedData": { - "debugAnnotationStringValues": [ - { - "iid": "10101010101010", - "str": "bWF0eg==\n" - } - ] - }, "sequenceFlags": 101010101010 }, { @@ -18009,25 +30976,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.0.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.3.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -18038,38 +30988,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18095,35 +31051,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "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", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.1.books.1.reviews.1.user.username", + "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -18134,16 +31072,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ - "10101010101010", + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -18177,70 +31114,46 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.2.books.0.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", + "name": "authors.0.books.0.reviews.0.user", + "flowIds": [ "10101010101010" ] - }, - "sequenceFlags": 101010101010 + } }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -18249,15 +31162,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18266,38 +31171,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18323,7 +31234,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Authorized" ], "categoryIids": [ "10101010101010" @@ -18331,30 +31242,20 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "name": "arguments" - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "object", - "stringValue": null - }, - { - "nameIid": "10101010101010", - "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "boolValue": true, + "name": "authorized?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.2.books.1.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -18365,11 +31266,9 @@ "type": "TYPE_SLICE_END", "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -18408,25 +31307,8 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], + "name": "authors.0.books.0.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -18437,38 +31319,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18494,35 +31382,17 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Dataloader" ], "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", + "type": "TYPE_INSTANT", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.3.books.1.reviews.0.user.username", + "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" ] @@ -18533,16 +31403,15 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" + "categories": [ + "Dataloader" ], - "extraCounterTrackUuids": [ - "10101010101010", + "categoryIids": [ "10101010101010" - ] + ], + "type": "TYPE_INSTANT", + "trackUuid": "10101010101010", + "name": "Fiber Resume" }, "sequenceFlags": 101010101010 }, @@ -18576,52 +31445,46 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "name": "authors.3.books.1.reviews.1.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] - }, - "sequenceFlags": 101010101010 - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010", - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010", + "name": "authors.0.books.0.reviews.1.user", + "flowIds": [ "10101010101010" ] - }, - "sequenceFlags": 101010101010 + } }, { "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -18629,15 +31492,8 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ - "10101010101010" - ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18646,36 +31502,46 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", - "name": "authors.0.books.0.reviews.0.user", - "flowIds": [ + "extraCounterValues": [ "10101010101010" - ] - } + ], + "extraCounterTrackUuids": [ + "10101010101010" + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" + }, + "sequenceFlags": 101010101010 }, { "timestamp": "10101010101010", @@ -18772,13 +31638,59 @@ "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.0.user.username", + "name": "authors.0.books.0.reviews.1.user.username", "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": "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, @@ -18864,35 +31776,18 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.0.reviews.1.user", + "name": "authors.0.books.1.reviews.0.user", "flowIds": [ "10101010101010" ] } }, - { - "timestamp": "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" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -18900,8 +31795,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -18913,7 +31815,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -18922,13 +31824,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", - "extraCounterValues": [ - "10101010101010" - ], - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18937,38 +31833,44 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Field Execution" + "Debug Inspect" ], "categoryIids": [ "10101010101010" ], "debugAnnotations": [ - { - "nameIid": "10101010101010", - "name": "arguments" - }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "object", + "name": "inspect instance of", "stringValue": null }, { "nameIid": "10101010101010", "stringValueIid": "10101010101010", - "name": "result", - "stringValue": null + "name": "inspecting for", + "stringValue": "valid?" } ], "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "authors.0.books.0.reviews.1.user.username", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" + }, + "sequenceFlags": 101010101010 + }, + { + "timestamp": "10101010101010", + "trustedPacketSequenceId": 101010101010, + "trackEvent": { + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, @@ -18994,20 +31896,28 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Dataloader" + "Authorized" ], "categoryIids": [ "10101010101010" ], - "type": "TYPE_INSTANT", + "debugAnnotations": [ + { + "nameIid": "10101010101010", + "boolValue": true, + "name": "authorized?" + } + ], + "type": "TYPE_SLICE_BEGIN", + "nameIid": "10101010101010", "trackUuid": "10101010101010", "extraCounterValues": [ "10101010101010" ], - "name": "Fiber Exit", "extraCounterTrackUuids": [ "10101010101010" - ] + ], + "name": "Authorize: User" }, "sequenceFlags": 101010101010 }, @@ -19015,15 +31925,14 @@ "timestamp": "10101010101010", "trustedPacketSequenceId": 101010101010, "trackEvent": { - "categories": [ - "Dataloader" - ], - "categoryIids": [ + "type": "TYPE_SLICE_END", + "trackUuid": "10101010101010", + "extraCounterValues": [ "10101010101010" ], - "type": "TYPE_INSTANT", - "trackUuid": "10101010101010", - "name": "Fiber Resume" + "extraCounterTrackUuids": [ + "10101010101010" + ] }, "sequenceFlags": 101010101010 }, @@ -19057,24 +31966,11 @@ ], "type": "TYPE_SLICE_BEGIN", "trackUuid": "10101010101010", - "name": "authors.0.books.1.reviews.0.user", - "flowIds": [ - "10101010101010" - ] - } - }, - { - "timestamp": "10101010101010", - "trustedPacketSequenceId": 101010101010, - "trackEvent": { - "type": "TYPE_SLICE_END", - "trackUuid": "10101010101010", "extraCounterValues": [ - "10101010101010", "10101010101010" ], + "name": "authors.0.books.1.reviews.0.user.username", "extraCounterTrackUuids": [ - "10101010101010", "10101010101010" ] }, @@ -19085,7 +31981,7 @@ "trustedPacketSequenceId": 101010101010, "trackEvent": { "categories": [ - "Authorized" + "Debug Inspect" ], "categoryIids": [ "10101010101010" @@ -19093,8 +31989,15 @@ "debugAnnotations": [ { "nameIid": "10101010101010", - "boolValue": true, - "name": "authorized?" + "stringValueIid": "10101010101010", + "name": "inspect instance of", + "stringValue": null + }, + { + "nameIid": "10101010101010", + "stringValueIid": "10101010101010", + "name": "inspecting for", + "stringValue": "type_casted_binds" } ], "type": "TYPE_SLICE_BEGIN", @@ -19106,7 +32009,7 @@ "extraCounterTrackUuids": [ "10101010101010" ], - "name": "Authorize: User" + "name": "GraphQL::Tracing::DetailedTrace#inspect_object" }, "sequenceFlags": 101010101010 }, @@ -19115,53 +32018,7 @@ "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.reviews.0.user.username", - "extraCounterTrackUuids": [ - "10101010101010" - ] + "trackUuid": "10101010101010" }, "sequenceFlags": 101010101010 }, diff --git a/spec/support/active_record_setup.rb b/spec/support/active_record_setup.rb index 35631d286a..c11029920c 100644 --- a/spec/support/active_record_setup.rb +++ b/spec/support/active_record_setup.rb @@ -22,9 +22,10 @@ )) databases = ActiveRecord::Base.connection.execute("select datname from pg_database;") test_db = databases.find { |d| d["datname"] == "graphql_ruby_test" } - if test_db.nil? - ActiveRecord::Base.connection.execute("create database graphql_ruby_test;") + if test_db + ActiveRecord::Base.connection.execute("drop database graphql_ruby_test;") end + ActiveRecord::Base.connection.execute("create database graphql_ruby_test;") ActiveRecord::Base.configurations = { starwars: ar_connection_options, @@ -41,7 +42,7 @@ end ActiveRecord::Base.establish_connection(:starwars) - ActiveRecord::Schema.define do + ActiveRecord::Schema.define(force: true) do self.verbose = !!ENV["GITHUB_ACTIONS"] create_table :bases, force: true do |t| t.column :name, :string @@ -157,6 +158,11 @@ class CompositeBand < Band w.albums.create!(id: 6, name: "Summerteeth") class Author < ActiveRecord::Base has_many :books + + def self.inspect + sleep 0.2 + super + end end class User < ActiveRecord::Base