diff options
author | Stan Hu <stanhu@gmail.com> | 2020-07-19 23:24:32 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2020-07-20 13:15:49 -0700 |
commit | 7d62bbc3dd92f1e73b3e2a199f6b6b613d5821d9 (patch) | |
tree | 66d67385aff9007652167ed53cfac848de3e0b3a /internal/handler/exec.go | |
parent | b3f6fcdb77a3d047ce8b02e9a0faf32e5a244c92 (diff) | |
download | gitlab-shell-sh-log-remote-ip.tar.gz |
Log remote IP for executed commandssh-log-remote-ip
Admins may want to know what client IP originated the request. This
commit adds a `remote_ip` field to the log that extracts the IP address
from the `SSH_CONNECTION` environment variable.
Closes https://gitlab.com/gitlab-org/gitlab-shell/-/issues/199
Diffstat (limited to 'internal/handler/exec.go')
-rw-r--r-- | internal/handler/exec.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/handler/exec.go b/internal/handler/exec.go index d6e06aa..060b709 100644 --- a/internal/handler/exec.go +++ b/internal/handler/exec.go @@ -14,6 +14,7 @@ import ( "gitlab.com/gitlab-org/gitlab-shell/internal/config" "gitlab.com/gitlab-org/gitlab-shell/internal/executable" "gitlab.com/gitlab-org/gitlab-shell/internal/gitlabnet/accessverifier" + "gitlab.com/gitlab-org/gitlab-shell/internal/sshenv" grpccorrelation "gitlab.com/gitlab-org/labkit/correlation/grpc" "gitlab.com/gitlab-org/labkit/tracing" "google.golang.org/grpc" @@ -64,6 +65,7 @@ func (gc *GitalyCommand) LogExecution(repository *pb.Repository, response *acces "user_id": response.UserId, "username": response.Username, "git_protocol": protocol, + "remote_ip": sshenv.LocalAddr(), } log.WithFields(fields).Info("executing git command") |