Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcharlieablett <cablett@gitlab.com>2019-05-02 03:16:49 +0300
committercharlieablett <cablett@gitlab.com>2019-05-30 09:27:28 +0300
commit2c011cb5b452409db7fe1c810f1ad7440a6cedce (patch)
treef2b85b2ae667dd2673090efa0d984da328d0e031 /lib/gitlab/graphql
parent1f37aed1c917260eefda63a18d3a9af91c4a1abb (diff)
Implement logger analyzer
- Modify GraphqlLogger to subclass JsonLogger - Replace the single-line analyser with one that can log all the GraphQL query related information in one place. - Implement analyzer behavior with spec
Diffstat (limited to 'lib/gitlab/graphql')
-rw-r--r--lib/gitlab/graphql/query_analyzers/log_query_complexity.rb18
-rw-r--r--lib/gitlab/graphql/query_analyzers/logger_analyzer.rb65
2 files changed, 65 insertions, 18 deletions
diff --git a/lib/gitlab/graphql/query_analyzers/log_query_complexity.rb b/lib/gitlab/graphql/query_analyzers/log_query_complexity.rb
deleted file mode 100644
index d3e21946357..00000000000
--- a/lib/gitlab/graphql/query_analyzers/log_query_complexity.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module Graphql
- module QueryAnalyzers
- class LogQueryComplexity
- class << self
- def analyzer
- GraphQL::Analysis::QueryComplexity.new do |query, complexity|
- # temporary until https://gitlab.com/gitlab-org/gitlab-ce/issues/59587
- GraphqlLogger.info("[Query Complexity] #{complexity} | admin? #{query.context[:current_user]&.admin?}")
- end
- end
- end
- end
- end
- end
-end
diff --git a/lib/gitlab/graphql/query_analyzers/logger_analyzer.rb b/lib/gitlab/graphql/query_analyzers/logger_analyzer.rb
new file mode 100644
index 00000000000..3796eefd608
--- /dev/null
+++ b/lib/gitlab/graphql/query_analyzers/logger_analyzer.rb
@@ -0,0 +1,65 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Graphql
+ module QueryAnalyzers
+ class LoggerAnalyzer
+ def initialize
+ @info_hash = {}
+ end
+
+ # Called before initializing the analyzer.
+ # Returns true to run this analyzer, or false to skip it.
+ def analyze?(query)
+ true # unless there's some reason why we wouldn't log?
+ end
+
+ # Called before the visit.
+ # Returns the initial value for `memo`
+ def initial_value(query)
+ {
+ time_started: Time.zone.now,
+ query_string: query.query_string,
+ variables: query.provided_variables
+ }
+ end
+
+ # This is like the `reduce` callback.
+ # The return value is passed to the next call as `memo`
+ def call(memo, visit_type, irep_node)
+ memo
+ end
+
+ # Called when we're done the whole visit.
+ # The return value may be a GraphQL::AnalysisError (or an array of them).
+ # Or, you can use this hook to write to a log, etc
+ def final_value(memo)
+ memo[:duration] = "#{duration(memo[:time_started]).round(1)}ms"
+ set_complexity
+ set_depth
+ GraphqlLogger.info(memo.except!(:time_started).merge(@info_hash))
+ memo
+ end
+
+ private
+
+ def set_complexity
+ GraphQL::Analysis::QueryComplexity.new do |query, complexity_value|
+ @info_hash[:complexity] = complexity_value
+ end
+ end
+
+ def set_depth
+ GraphQL::Analysis::QueryDepth.new do |query, depth_value|
+ @info_hash[:depth] = depth_value
+ end
+ end
+
+ def duration(time_started)
+ nanoseconds = Time.zone.now - time_started
+ nanoseconds / 1000000
+ end
+ end
+ end
+ end
+end