BigW Consortium Gitlab

sidekiq_debugging.md 544 Bytes
Newer Older
1 2 3 4 5
# Sidekiq debugging

## Log arguments to Sidekiq jobs

If you want to see what arguments are being passed to Sidekiq jobs you can set
6 7 8 9
the `SIDEKIQ_LOG_ARGUMENTS` [environment variable]
(https://docs.gitlab.com/omnibus/settings/environment-variables.html) to `1` (true).

Example:
10 11

```
12
gitlab_rails['env'] = {"SIDEKIQ_LOG_ARGUMENTS" => "1"}
13 14
```

15 16 17
Please note: It is not recommend to enable this setting in production because some 
Sidekiq jobs (such as sending a password reset email) take secret arguments (for
example the password reset token).