graphql-metrics 3.0.3 → 4.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b8eda0da73b10eb0afb49963c3192767df4a711eb4177b401086400167a803c3
4
- data.tar.gz: 1eb7cd4c7a0af088a7686eba62c141dd2530d0efbefc2cc5e954e66d92842130
3
+ metadata.gz: c0f132a7bc5eabcd7d3d909b3342f5f3855df4526ca06ed17eb5c2096fb5c0a5
4
+ data.tar.gz: a36decb5cb868fc081a6053420b24d2934e71194f850e4589343160aa3ff8b59
5
5
  SHA512:
6
- metadata.gz: 34ea411c44bec8dd2e0b6e2a613866f5bba29cb6be19984e45c11216b5a154fab7fe459632b483e7d45cc7d082b1fffeb4f744a4cdb91ef0cb0b30c9442c1293
7
- data.tar.gz: 4b9616c41459bddec77ff660063358ee925c819e7c580f9aa068f906482445370900c787d47c3aafd4873322ca38ded57bbc3b8b17605aa695b9e335391e5433
6
+ metadata.gz: 3570b95636f5200b7d487e71354717ed0a69e0e04e30a6f2f0131f8739158f018a244b8e8a1ff76c5574f00038ff8a738b279f6925d518d97500f35fc2730a90
7
+ data.tar.gz: f666ab46f5195b6b3344b2c7bd657a441feae3878595f62a7a233705781723352371854c66e6a1ceb66ff120d5cb0b001e7c447761377babf930de887d0cf906
@@ -76,13 +76,6 @@ Style/BlockDelimiters:
76
76
  - proc
77
77
  - it
78
78
 
79
- Style/BracesAroundHashParameters:
80
- EnforcedStyle: no_braces
81
- SupportedStyles:
82
- - braces
83
- - no_braces
84
- - context_dependent
85
-
86
79
  Layout/CaseIndentation:
87
80
  EnforcedStyle: end
88
81
  SupportedStyles:
@@ -509,7 +502,7 @@ Style/WhileUntilModifier:
509
502
  Metrics/BlockNesting:
510
503
  Max: 3
511
504
 
512
- Metrics/LineLength:
505
+ Layout/LineLength:
513
506
  Max: 120
514
507
  AllowHeredoc: true
515
508
  AllowURI: true
@@ -1,3 +1,26 @@
1
+ 4.0.4
2
+ -----
3
+ - [33](https://github.com/Shopify/graphql-metrics/pull/33) Setup tracing using lex or execute_multiplex tracer events.
4
+
5
+ 4.0.3
6
+ -----
7
+ - [32](https://github.com/Shopify/graphql-metrics/pull/32) Split validate and analyze_query tracer events (encompasses #30).
8
+ - [30](https://github.com/Shopify/graphql-metrics/pull/30) Handle queries that have already been parsed (thank you @jturkel).
9
+ - [29](https://github.com/Shopify/graphql-metrics/pull/29) Remove runtime dependency on activesupport (thank you @jturkel).
10
+
11
+ 4.0.2
12
+ -----
13
+ - [25](https://github.com/Shopify/graphql-metrics/pull/25) Safely handle interrupted runtime metrics.
14
+
15
+ 4.0.1
16
+ -----
17
+ - [24](https://github.com/Shopify/graphql-metrics/pull/24) Safely call `arguments_for` to handle arguments which may
18
+ raise `ExecutionError`s in their `prepare` methods.
19
+
20
+ 4.0.0
21
+ -----
22
+ - [23](https://github.com/Shopify/graphql-metrics/pull/23) graphql-ruby 1.10.8+ compatibility
23
+
1
24
  3.0.3
2
25
  -----
3
26
 
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- graphql-metrics (3.0.2)
4
+ graphql-metrics (4.0.4)
5
5
  concurrent-ruby (~> 1.1.0)
6
- graphql (>= 1.9.5, < 1.10.0)
6
+ graphql (>= 1.10.8)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -19,8 +19,8 @@ GEM
19
19
  diffy (3.3.0)
20
20
  fakeredis (0.7.0)
21
21
  redis (>= 3.2, < 5.0)
22
- graphql (1.9.19)
23
- graphql-batch (0.4.1)
22
+ graphql (1.10.8)
23
+ graphql-batch (0.4.2)
24
24
  graphql (>= 1.3, < 2)
25
25
  promise.rb (~> 0.7.2)
26
26
  hashdiff (1.0.0)
data/README.md CHANGED
@@ -5,6 +5,8 @@
5
5
  Extract as much much detail as you want from GraphQL queries, served up from your Ruby app and the [`graphql` gem](https://github.com/rmosolgo/graphql-ruby).
6
6
  Compatible with the [`graphql-batch` gem](https://github.com/Shopify/graphql-batch), to extract batch-loaded fields resolution timings.
7
7
 
8
+ Be sure to read the [CHANGELOG](CHANGELOG.md) to stay updated on feature additions, breaking changes made to this gem.
9
+
8
10
  ## Installation
9
11
 
10
12
  Add this line to your application's Gemfile:
@@ -42,11 +44,18 @@ etc.
42
44
 
43
45
  What you do with these captured metrics is up to you!
44
46
 
47
+ **NOTE**: Runtime metrics on for queries (like `query_duration`, `parsing_start_time_offset` etc.) as well as field
48
+ resolver timings (like `resolver_timings`, `lazy_resolver_timings`) may not be present in the extracted `metrics` hash,
49
+ even if you opt to collect them by using `GraphQL::Metrics::Analyzer` and `GraphQL::Metrics::Tracer`.
50
+
51
+ More specifically, if any non-`graphql-ruby` gem-related exceptions occur in your application during query document
52
+ parsing and validation runtime metrics will not be added to the `metrics` hash.
53
+
45
54
  ### Define your own analyzer subclass
46
55
 
47
56
  ```ruby
48
- class CaptureAllMetricsAnalyzer < GraphQL::Metrics::Analyzer
49
- ANALYZER_NAMESPACE = :capture_all_metrics_analyzer_namespace
57
+ class SimpleAnalyzer < GraphQL::Metrics::Analyzer
58
+ ANALYZER_NAMESPACE = :simple_analyzer_namespace
50
59
 
51
60
  def initialize(query_or_multiplex)
52
61
  super
@@ -69,6 +78,8 @@ What you do with these captured metrics is up to you!
69
78
  # parsing_duration: 0.0008190000080503523,
70
79
  # validation_start_time_offset: 0.0030819999519735575,
71
80
  # validation_duration: 0.01704599999357015,
81
+ # analysis_start_time_offset: 0.0010339999571442604,
82
+ # analysis_duration: 0.0008190000080503523,
72
83
  # }
73
84
  #
74
85
  # You can use these metrics to track high-level query performance, along with any other details you wish to
@@ -173,7 +184,7 @@ class Schema < GraphQL::Schema
173
184
  use GraphQL::Analysis::AST # Required.
174
185
 
175
186
  query_analyzer SimpleAnalyzer
176
-
187
+
177
188
  instrument :query, GraphQL::Metrics::Instrumentation.new # Both of these are required if either is used.
178
189
  tracer GraphQL::Metrics::Tracer.new # <-- Note!
179
190
 
@@ -212,10 +223,11 @@ your application as intended, here's a breakdown of the order of execution of th
212
223
 
213
224
  When used as instrumentation, an analyzer and tracing, the order of execution is:
214
225
 
215
- * Tracer.setup_tracing_before_lexing
226
+ * Tracer.setup_tracing
216
227
  * Tracer.capture_parsing_time
217
228
  * Instrumentation.before_query (context setup)
218
- * Tracer.capture_validation_time (twice, once for `analyze_query`, then `analyze_multiplex`)
229
+ * Tracer.capture_validation_time
230
+ * Tracer.capture_analysis_time
219
231
  * Analyzer#initialize (bit more context setup, instance vars setup)
220
232
  * Analyzer#result
221
233
  * Tracer.trace_field (n times)
@@ -30,9 +30,8 @@ Gem::Specification.new do |spec|
30
30
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
31
  spec.require_paths = ["lib"]
32
32
 
33
+ spec.add_runtime_dependency "graphql", ">= 1.10.8"
33
34
  spec.add_runtime_dependency "concurrent-ruby", "~> 1.1.0"
34
- spec.add_runtime_dependency "graphql", ">= 1.9.5", "< 1.10.0"
35
-
36
35
  spec.add_development_dependency "rake", "~> 10.0"
37
36
  spec.add_development_dependency "minitest", "~> 5.0"
38
37
  spec.add_development_dependency 'graphql-batch'
@@ -28,6 +28,8 @@ module GraphQL
28
28
  PARSING_DURATION = :parsing_duration
29
29
  VALIDATION_START_TIME_OFFSET = :validation_start_time_offset
30
30
  VALIDATION_DURATION = :validation_duration
31
+ ANALYSIS_START_TIME_OFFSET = :analysis_start_time_offset
32
+ ANALYSIS_DURATION = :analysis_duration
31
33
  INLINE_FIELD_TIMINGS = :inline_field_timings
32
34
  LAZY_FIELD_TIMINGS = :lazy_field_timings
33
35
 
@@ -35,15 +35,22 @@ module GraphQL
35
35
  return if visitor.field_definition.introspection?
36
36
  return if query.context[SKIP_FIELD_AND_ARGUMENT_METRICS]
37
37
 
38
- # NOTE: @rmosolgo "I think it could be reduced to `arguments = visitor.arguments_for(ast_node)`"
39
- arguments = visitor.arguments_for(node, visitor.field_definition)
40
- extract_arguments(arguments.argument_values.values, visitor.field_definition)
38
+ # Arguments can raise execution errors within their `prepare` methods
39
+ # which aren't properly handled during analysis so we have to handle
40
+ # them ourselves safely and return `nil`.
41
+ argument_values = begin
42
+ query.arguments_for(node, visitor.field_definition)
43
+ rescue ::GraphQL::ExecutionError
44
+ nil
45
+ end
46
+
47
+ extract_arguments(argument_values, visitor.field_definition) if argument_values
41
48
 
42
49
  static_metrics = {
43
50
  field_name: node.name,
44
- return_type_name: visitor.type_definition.name,
45
- parent_type_name: visitor.parent_type_definition.name,
46
- deprecated: visitor.field_definition.deprecation_reason.present?,
51
+ return_type_name: visitor.type_definition.graphql_name,
52
+ parent_type_name: visitor.parent_type_definition.graphql_name,
53
+ deprecated: !visitor.field_definition.deprecation_reason.nil?,
47
54
  path: visitor.response_path,
48
55
  }
49
56
 
@@ -54,17 +61,20 @@ module GraphQL
54
61
  end
55
62
  end
56
63
 
57
- def extract_fields_with_runtime_metrics
64
+ def extract_fields(with_runtime_metrics: true)
58
65
  return if query.context[SKIP_FIELD_AND_ARGUMENT_METRICS]
59
66
 
60
67
  ns = query.context.namespace(CONTEXT_NAMESPACE)
61
68
 
62
69
  @static_field_metrics.each do |static_metrics|
63
- resolver_timings = ns[GraphQL::Metrics::INLINE_FIELD_TIMINGS][static_metrics[:path]]
64
- lazy_resolver_timings = ns[GraphQL::Metrics::LAZY_FIELD_TIMINGS][static_metrics[:path]]
65
70
 
66
- static_metrics[:resolver_timings] = resolver_timings || []
67
- static_metrics[:lazy_resolver_timings] = lazy_resolver_timings || []
71
+ if with_runtime_metrics
72
+ resolver_timings = ns[GraphQL::Metrics::INLINE_FIELD_TIMINGS][static_metrics[:path]]
73
+ lazy_resolver_timings = ns[GraphQL::Metrics::LAZY_FIELD_TIMINGS][static_metrics[:path]]
74
+
75
+ static_metrics[:resolver_timings] = resolver_timings || []
76
+ static_metrics[:lazy_resolver_timings] = lazy_resolver_timings || []
77
+ end
68
78
 
69
79
  field_extracted(static_metrics)
70
80
  end
@@ -93,16 +103,16 @@ module GraphQL
93
103
  argument.each_value do |a|
94
104
  extract_arguments(a, field_defn, parent_input_object)
95
105
  end
96
- when ::GraphQL::Query::Arguments
106
+ when ::GraphQL::Execution::Interpreter::Arguments
97
107
  argument.each_value do |arg_val|
98
108
  extract_arguments(arg_val, field_defn, parent_input_object)
99
109
  end
100
- when ::GraphQL::Query::Arguments::ArgumentValue
110
+ when ::GraphQL::Execution::Interpreter::ArgumentValue
101
111
  extract_argument(argument, field_defn, parent_input_object)
102
112
  extract_arguments(argument.value, field_defn, parent_input_object)
103
113
  when ::GraphQL::Schema::InputObject
104
114
  input_object_argument_values = argument.arguments.argument_values.values
105
- parent_input_object = input_object_argument_values.first&.definition&.metadata&.fetch(:type_class, nil)&.owner
115
+ parent_input_object = input_object_argument_values.first&.definition&.owner
106
116
 
107
117
  extract_arguments(input_object_argument_values, field_defn, parent_input_object)
108
118
  end
@@ -110,10 +120,10 @@ module GraphQL
110
120
 
111
121
  def extract_argument(value, field_defn, parent_input_object = nil)
112
122
  static_metrics = {
113
- argument_name: value.definition.expose_as,
114
- argument_type_name: value.definition.type.unwrap.to_s,
115
- parent_field_name: field_defn.name,
116
- parent_field_type_name: field_defn.metadata[:type_class].owner.graphql_name,
123
+ argument_name: value.definition.graphql_name,
124
+ argument_type_name: value.definition.type.unwrap.graphql_name,
125
+ parent_field_name: field_defn.graphql_name,
126
+ parent_field_type_name: field_defn.owner.graphql_name,
117
127
  parent_input_object_type: parent_input_object&.graphql_name,
118
128
  default_used: value.default_used?,
119
129
  value_is_null: value.value.nil?,
@@ -25,23 +25,33 @@ module GraphQL
25
25
  return if query.context[GraphQL::Metrics::SKIP_GRAPHQL_METRICS_ANALYSIS]
26
26
 
27
27
  ns = query.context.namespace(CONTEXT_NAMESPACE)
28
+ analyzer = ns[GraphQL::Metrics::ANALYZER_INSTANCE_KEY]
28
29
 
29
- # NOTE: The start time stored at `ns[GraphQL::Metrics::QUERY_START_TIME_MONOTONIC]` is captured during query
30
- # parsing, which occurs before `Instrumentation#before_query`.
31
- query_duration = GraphQL::Metrics.current_time_monotonic - ns[GraphQL::Metrics::QUERY_START_TIME_MONOTONIC]
30
+ if runtime_metrics_interrupted?(ns)
31
+ # If runtime metrics were interrupted, then it's most likely that the application raised an exception and that
32
+ # query parsing (which is instrumented by GraphQL::Metrics::Tracer) was abruptly stopped.
33
+ #
34
+ # In this scenario, we still attempt to log whatever static query metrics we've collected, with runtime
35
+ # metrics (like query, field resolver timings) excluded.
36
+ analyzer.extract_fields(with_runtime_metrics: false)
37
+ analyzer.extract_query
38
+ else
39
+ query_duration = GraphQL::Metrics.current_time_monotonic - ns[GraphQL::Metrics::QUERY_START_TIME_MONOTONIC]
32
40
 
33
- runtime_query_metrics = {
34
- query_start_time: ns[GraphQL::Metrics::QUERY_START_TIME],
35
- query_duration: query_duration,
36
- parsing_start_time_offset: ns[GraphQL::Metrics::PARSING_START_TIME_OFFSET],
37
- parsing_duration: ns[GraphQL::Metrics::PARSING_DURATION],
38
- validation_start_time_offset: ns[GraphQL::Metrics::VALIDATION_START_TIME_OFFSET],
39
- validation_duration: ns[GraphQL::Metrics::VALIDATION_DURATION],
40
- }
41
+ runtime_query_metrics = {
42
+ query_start_time: ns[GraphQL::Metrics::QUERY_START_TIME],
43
+ query_duration: query_duration,
44
+ parsing_start_time_offset: ns[GraphQL::Metrics::PARSING_START_TIME_OFFSET],
45
+ parsing_duration: ns[GraphQL::Metrics::PARSING_DURATION],
46
+ validation_start_time_offset: ns[GraphQL::Metrics::VALIDATION_START_TIME_OFFSET],
47
+ validation_duration: ns[GraphQL::Metrics::VALIDATION_DURATION],
48
+ analysis_start_time_offset: ns[GraphQL::Metrics::ANALYSIS_START_TIME_OFFSET],
49
+ analysis_duration: ns[GraphQL::Metrics::ANALYSIS_DURATION],
50
+ }
41
51
 
42
- analyzer = ns[GraphQL::Metrics::ANALYZER_INSTANCE_KEY]
43
- analyzer.extract_fields_with_runtime_metrics
44
- analyzer.extract_query(runtime_query_metrics: runtime_query_metrics)
52
+ analyzer.extract_fields
53
+ analyzer.extract_query(runtime_query_metrics: runtime_query_metrics)
54
+ end
45
55
  end
46
56
 
47
57
  private
@@ -51,6 +61,12 @@ module GraphQL
51
61
  # which did not reject "empty" documents in its parser.
52
62
  query.valid? && !query.selected_operation.nil?
53
63
  end
64
+
65
+ def runtime_metrics_interrupted?(context_namespace)
66
+ # NOTE: The start time stored at `ns[GraphQL::Metrics::QUERY_START_TIME_MONOTONIC]` is captured during query
67
+ # parsing, which occurs before `Instrumentation#before_query`.
68
+ context_namespace.key?(GraphQL::Metrics::QUERY_START_TIME_MONOTONIC) == false
69
+ end
54
70
  end
55
71
  end
56
72
  end
@@ -4,9 +4,11 @@ module GraphQL
4
4
  module Metrics
5
5
  class Tracer
6
6
  # NOTE: These constants come from the graphql ruby gem.
7
- GRAPHQL_GEM_LEXING_KEY = 'lex'
7
+ GRAPHQL_GEM_LEX_KEY = 'lex'
8
+ GRAPHQL_GEM_EXECUTE_MULTIPLEX_KEY = 'execute_multiplex'
8
9
  GRAPHQL_GEM_PARSING_KEY = 'parse'
9
- GRAPHQL_GEM_VALIDATION_KEYS = ['validate', 'analyze_query']
10
+ GRAPHQL_GEM_VALIDATION_KEY = 'validate'
11
+ GRAPHQL_GEM_ANALYZE_KEY = 'analyze_query'
10
12
  GRAPHQL_GEM_TRACING_FIELD_KEYS = [
11
13
  GRAPHQL_GEM_TRACING_FIELD_KEY = 'execute_field',
12
14
  GRAPHQL_GEM_TRACING_LAZY_FIELD_KEY = 'execute_field_lazy'
@@ -22,21 +24,23 @@ module GraphQL
22
24
  # NOTE: Not all tracing events are handled here, but those that are are handled in this case statement in
23
25
  # chronological order.
24
26
  case key
25
- when GRAPHQL_GEM_LEXING_KEY
26
- return setup_tracing_before_lexing(&block)
27
+ when GRAPHQL_GEM_LEX_KEY
28
+ return setup_tracing(&block)
29
+ when GRAPHQL_GEM_EXECUTE_MULTIPLEX_KEY
30
+ return setup_tracing(&block)
27
31
  when GRAPHQL_GEM_PARSING_KEY
28
32
  return capture_parsing_time(&block)
29
- when *GRAPHQL_GEM_VALIDATION_KEYS
33
+ when GRAPHQL_GEM_VALIDATION_KEY
30
34
  context = possible_context
31
-
32
- return yield unless context.query.valid?
33
35
  return capture_validation_time(context, &block)
36
+ when GRAPHQL_GEM_ANALYZE_KEY
37
+ context = possible_context
38
+ return capture_analysis_time(context, &block)
39
+
34
40
  when *GRAPHQL_GEM_TRACING_FIELD_KEYS
35
41
  return yield if data[:query].context[SKIP_FIELD_AND_ARGUMENT_METRICS]
36
42
  return yield unless GraphQL::Metrics.timings_capture_enabled?(data[:query].context)
37
43
 
38
- pre_context = nil
39
-
40
44
  context_key = case key
41
45
  when GRAPHQL_GEM_TRACING_FIELD_KEY
42
46
  GraphQL::Metrics::INLINE_FIELD_TIMINGS
@@ -52,15 +56,30 @@ module GraphQL
52
56
 
53
57
  private
54
58
 
59
+ PreContext = Struct.new(
60
+ :query_start_time,
61
+ :query_start_time_monotonic,
62
+ :parsing_start_time_offset,
63
+ :parsing_duration
64
+ ) do
65
+ def reset_parsing_timings
66
+ self[:parsing_start_time_offset] = nil
67
+ self[:parsing_duration] = nil
68
+ end
69
+ end
70
+
55
71
  def pre_context
56
72
  # NOTE: This is used to store timings from lexing, parsing, validation, before we have a context to store
57
73
  # values in. Uses thread-safe Concurrent::ThreadLocalVar to store a set of values per thread.
58
- @pre_context ||= Concurrent::ThreadLocalVar.new(OpenStruct.new)
74
+ @pre_context ||= Concurrent::ThreadLocalVar.new(PreContext.new)
75
+ @pre_context.value
59
76
  end
60
77
 
61
- def setup_tracing_before_lexing
62
- pre_context.value.query_start_time = GraphQL::Metrics.current_time
63
- pre_context.value.query_start_time_monotonic = GraphQL::Metrics.current_time_monotonic
78
+ def setup_tracing
79
+ return yield if pre_context.query_start_time
80
+
81
+ pre_context.query_start_time = GraphQL::Metrics.current_time
82
+ pre_context.query_start_time_monotonic = GraphQL::Metrics.current_time_monotonic
64
83
 
65
84
  yield
66
85
  end
@@ -68,24 +87,41 @@ module GraphQL
68
87
  def capture_parsing_time
69
88
  timed_result = GraphQL::Metrics.time { yield }
70
89
 
71
- pre_context.value.parsing_start_time_offset = timed_result.start_time
72
- pre_context.value.parsing_duration = timed_result.duration
90
+ pre_context.parsing_start_time_offset = timed_result.start_time
91
+ pre_context.parsing_duration = timed_result.duration
73
92
 
74
93
  timed_result.result
75
94
  end
76
95
 
77
96
  def capture_validation_time(context)
78
- timed_result = GraphQL::Metrics.time(pre_context.value.query_start_time_monotonic) { yield }
97
+ if pre_context.parsing_duration.nil?
98
+ pre_context.parsing_start_time_offset = 0
99
+ pre_context.parsing_duration = 0
100
+ end
101
+
102
+ timed_result = GraphQL::Metrics.time(pre_context.query_start_time_monotonic) { yield }
79
103
 
80
104
  ns = context.namespace(CONTEXT_NAMESPACE)
81
- previous_validation_duration = ns[GraphQL::Metrics::VALIDATION_DURATION] || 0
82
105
 
83
- ns[QUERY_START_TIME] = pre_context.value.query_start_time
84
- ns[QUERY_START_TIME_MONOTONIC] = pre_context.value.query_start_time_monotonic
85
- ns[PARSING_START_TIME_OFFSET] = pre_context.value.parsing_start_time_offset
86
- ns[PARSING_DURATION] = pre_context.value.parsing_duration
106
+ ns[QUERY_START_TIME] = pre_context.query_start_time
107
+ ns[QUERY_START_TIME_MONOTONIC] = pre_context.query_start_time_monotonic
108
+ ns[PARSING_START_TIME_OFFSET] = pre_context.parsing_start_time_offset
109
+ ns[PARSING_DURATION] = pre_context.parsing_duration
87
110
  ns[VALIDATION_START_TIME_OFFSET] = timed_result.time_since_offset
88
- ns[VALIDATION_DURATION] = timed_result.duration + previous_validation_duration
111
+ ns[VALIDATION_DURATION] = timed_result.duration
112
+
113
+ pre_context.reset_parsing_timings
114
+
115
+ timed_result.result
116
+ end
117
+
118
+ def capture_analysis_time(context)
119
+ ns = context.namespace(CONTEXT_NAMESPACE)
120
+
121
+ timed_result = GraphQL::Metrics.time(ns[QUERY_START_TIME_MONOTONIC]) { yield }
122
+
123
+ ns[ANALYSIS_START_TIME_OFFSET] = timed_result.time_since_offset
124
+ ns[ANALYSIS_DURATION] = timed_result.duration
89
125
 
90
126
  timed_result.result
91
127
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module GraphQL
4
4
  module Metrics
5
- VERSION = "3.0.3"
5
+ VERSION = "4.0.4"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,49 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql-metrics
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.3
4
+ version: 4.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christopher Butcher
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-03-30 00:00:00.000000000 Z
11
+ date: 2020-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: concurrent-ruby
14
+ name: graphql
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 1.1.0
19
+ version: 1.10.8
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 1.1.0
26
+ version: 1.10.8
27
27
  - !ruby/object:Gem::Dependency
28
- name: graphql
28
+ name: concurrent-ruby
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: 1.9.5
34
- - - "<"
31
+ - - "~>"
35
32
  - !ruby/object:Gem::Version
36
- version: 1.10.0
33
+ version: 1.1.0
37
34
  type: :runtime
38
35
  prerelease: false
39
36
  version_requirements: !ruby/object:Gem::Requirement
40
37
  requirements:
41
- - - ">="
42
- - !ruby/object:Gem::Version
43
- version: 1.9.5
44
- - - "<"
38
+ - - "~>"
45
39
  - !ruby/object:Gem::Version
46
- version: 1.10.0
40
+ version: 1.1.0
47
41
  - !ruby/object:Gem::Dependency
48
42
  name: rake
49
43
  requirement: !ruby/object:Gem::Requirement