Merge branch '10117-fuse-refcount' refs #10117
[arvados.git] / apps / workbench / config / initializers / lograge.rb
index a41384bbe032560f418b32414c4307484c630f39..fa19667e3693848415f257223e13262fd99175c7 100644 (file)
@@ -1,4 +1,16 @@
 ArvadosWorkbench::Application.configure do
   config.lograge.enabled = true
   config.lograge.formatter = Lograge::Formatters::Logstash.new
+  config.lograge.custom_options = lambda do |event|
+    exceptions = %w(controller action format id)
+    params = {current_request_id: Thread.current[:current_request_id]}.
+             merge(event.payload[:params].except(*exceptions))
+    params_s = Oj.dump(params)
+    Thread.current[:current_request_id] = nil # Clear for next request
+    if params_s.length > 1000
+      { params_truncated: params_s[0..1000] + "[...]" }
+    else
+      { params: params }
+    end
+  end
 end