summaryrefslogtreecommitdiff
path: root/lib/gitlab/grape_logging/loggers/urgency_logger.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/grape_logging/loggers/urgency_logger.rb')
-rw-r--r--lib/gitlab/grape_logging/loggers/urgency_logger.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/gitlab/grape_logging/loggers/urgency_logger.rb b/lib/gitlab/grape_logging/loggers/urgency_logger.rb
new file mode 100644
index 00000000000..0a503086d05
--- /dev/null
+++ b/lib/gitlab/grape_logging/loggers/urgency_logger.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module GrapeLogging
+ module Loggers
+ class UrgencyLogger < ::GrapeLogging::Loggers::Base
+ def parameters(request, _)
+ endpoint = request.env['api.endpoint']
+ return {} unless endpoint
+
+ urgency = endpoint.options[:for].try(:urgency_for_app, endpoint)
+ return {} unless urgency
+
+ { request_urgency: urgency.name, target_duration_s: urgency.duration }
+ end
+ end
+ end
+ end
+end