Merge pull request #8599 from tchak/fix-lograge

fix(lograge): send client_ip and request_id to es
This commit is contained in:
Paul Chavard 2023-02-08 20:15:41 +01:00 committed by GitHub
commit 9733121fca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,9 @@ Rails.application.configure do
graphql_variables: event.payload[:graphql_variables],
browser: event.payload[:browser],
browser_version: event.payload[:browser_version],
platform: event.payload[:platform]
platform: event.payload[:platform],
client_ip: event.payload[:client_ip],
request_id: event.payload[:request_id]
}.compact
end