|
| 1 | +development: |
| 2 | + # Widget position |
| 3 | + # widget: top-left, top-right, bottom-left, bottom-right or hidden |
| 4 | + |
| 5 | + # Open files in your text editor by clicking from the local widget. |
| 6 | + # VSCode: vscode://file${path}:${line} |
| 7 | + # Sublime: subl://${path}:${line} |
| 8 | + # It should be set with an env variable when developers are not using the same editor. |
| 9 | + editor_url: <%= ENV.fetch("RORVSWILD_EDITOR_URL", "vscode://file${path}:${line}") %> |
| 10 | + |
| 11 | +production: |
| 12 | + api_key: M0FoaT4hFo8Gir9KJm6P |
| 13 | + # ignore_requests: # Do not monitor the following actions |
| 14 | + # - SecretController#index |
| 15 | + # ignore_jobs: # Do not monitor the following jobs |
| 16 | + # - SecretJob |
| 17 | + # ignore_exceptions: # Do not record the following exceptions |
| 18 | + # - ActionController::RoutingError # By default to ignore 404 |
| 19 | + # ignore_plugins: |
| 20 | + # - ActionController |
| 21 | + # - ActionMailer |
| 22 | + # - ActionView |
| 23 | + # - ActiveJob |
| 24 | + # - ActiveRecord |
| 25 | + # - DelayedJob |
| 26 | + # - Elasticsearch |
| 27 | + # - Mongo |
| 28 | + # - NetHttp |
| 29 | + # - Redis |
| 30 | + # - Resque |
| 31 | + # - Sidekiq |
| 32 | + # |
| 33 | + # logger: log/rorvswild.log # By default it uses Rails.logger or Logger.new(STDOUT) |
| 34 | + # |
| 35 | + # # Deployment tracking is working without any actions from your part if the Rails app |
| 36 | + # # is inside a Git repository, is deployed via Capistrano. |
| 37 | + # # In the other cases, you can provide the following details. |
| 38 | + # deployment: |
| 39 | + # revision: <%= "Anything that will return the deployment version" %> # Mandatory |
| 40 | + # description: <%= "Eventually if you have a description such as a Git message" %> |
| 41 | + # author: <%= "Author's name of the deployment" %> |
| 42 | + # email: <%= "emailOf@theAuthor.example" %> |
| 43 | + # |
| 44 | + # Sampling allows to send a fraction of jobs and requests. |
| 45 | + # If your app is sending hundred of millions of requests per month, |
| 46 | + # you will probably get the same precision if you send only a fraction of it. |
| 47 | + # Thus, it decreases the bill at the end of the month. It's also a mitigation if |
| 48 | + # your app is a target of a DoS. There are 2 parameters to dissociate requests and jobs. |
| 49 | + # Indeed, for an app handling a lot of request but very few jobs, it makes sens to sample |
| 50 | + # the former but not the latter. |
| 51 | + # request_sampling_rate: 0.25 # 25% of requests are sent |
| 52 | + # job_sampling_rate: 0.5 # 50% of jobs are sent |
0 commit comments