Sha256: db2e317e50855b54eaf5b99e24063b2b63bbd2ed1959af21babb34e45c02f51a
Contents?: true
Size: 1.38 KB
Versions: 10
Compression:
Stored size: 1.38 KB
Contents
# Which plugins are active. The full list installed by default is: # # ActiveTracker::Plugin::Request # Entire request log, with response # ActiveTracker::Plugin::Query # Queries performed with ms taken # ActiveTracker::Plugin::Exception # When an exception is raised # ActiveTracker::Plugin::Schedule # When a scheduled job is queued # ActiveTracker::Plugin::ActiveJob # When a job is processed, with output # ActiveTracker::Plugin::ActionMail # When an email is sent, with the body # ActiveTracker::Plugin::Event # Random events triggered in the system ActiveTracker::Configuration.plugins = [ ActiveTracker::Plugin::Request, ActiveTracker::Plugin::Query, ActiveTracker::Plugin::Exception, ] # You should change this to be your correct Redis URL ActiveTracker::Configuration.redis_url = "redis://localhost:6379/15" # By default ActiveTracker is mounted at /activetracker # if you'd like to change it, you can do so like this: # ActiveTracker::Configuration.mountpoint = "debugger" # If you want to authenticate requests to ActiveTracker with username and password # ActiveTracker::Configuration.authentication = "username:password" # or using a proc: # ActiveTracker::Configuration.authentication do # false unless params[:password] == "password" # end # If you would like a particular number of items per page # ActiveTracker::Configuration.per_page = 20
Version data entries
10 entries across 10 versions & 1 rubygems