I'd like to filter some displayed sensitive args.
my idea is as follows, what do you think?
You can configure which keys you filter.
# config/resque.yaml
...
filter_args_keys:
- sensitive_key
- session_id
A job is given args:
def self.perform(foo: 1, bar: 2, sensitive_value: "THIS_IS_SENSITIVE")
It results in:
