summaryrefslogtreecommitdiff
path: root/app/channels/application_cable/logging.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/channels/application_cable/logging.rb')
-rw-r--r--app/channels/application_cable/logging.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/channels/application_cable/logging.rb b/app/channels/application_cable/logging.rb
new file mode 100644
index 00000000000..4152f8c779f
--- /dev/null
+++ b/app/channels/application_cable/logging.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+module ApplicationCable
+ module Logging
+ private
+
+ def notification_payload(_)
+ super.merge!(
+ Labkit::Correlation::CorrelationId::LOG_KEY => request.request_id,
+ user_id: current_user&.id,
+ username: current_user&.username,
+ remote_ip: request.remote_ip,
+ ua: request.env['HTTP_USER_AGENT']
+ )
+ end
+ end
+end