Skip to content
Snippets Groups Projects
Commit 9bc176b2 authored by Stan Hu's avatar Stan Hu
Browse files

Add remote IP, user ID and username to JSON lograge output

This makes the logs a bit more useful to search requests by users.
parent 02b25598
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -70,6 +70,16 @@ class ApplicationController < ActionController::Base
 
protected
 
def append_info_to_payload(payload)
super
payload[:remote_ip] = request.remote_ip
if current_user.present?
payload[:user_id] = current_user.id
payload[:username] = current_user.username
end
end
# This filter handles both private tokens and personal access tokens
def authenticate_user_from_private_token!
token = params[:private_token].presence || request.headers['PRIVATE-TOKEN'].presence
Loading
Loading
Loading
Loading
@@ -14,7 +14,10 @@ unless Sidekiq.server?
config.lograge.custom_options = lambda do |event|
{
time: event.time.utc.iso8601(3),
params: event.payload[:params].except(%w(controller action format))
params: event.payload[:params].except(*%w(controller action format)),
remote_ip: event.payload[:remote_ip],
user_id: event.payload[:user_id],
username: event.payload[:username]
}
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment