mini-sharp-hub 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. checksums.yaml +7 -0
  2. data/mini-sharp-hub.gemspec +12 -0
  3. data/rack-mini-profiler-4.0.1/CHANGELOG.md +424 -0
  4. data/rack-mini-profiler-4.0.1/README.md +542 -0
  5. data/rack-mini-profiler-4.0.1/lib/enable_rails_patches.rb +5 -0
  6. data/rack-mini-profiler-4.0.1/lib/generators/rack_mini_profiler/USAGE +9 -0
  7. data/rack-mini-profiler-4.0.1/lib/generators/rack_mini_profiler/install_generator.rb +13 -0
  8. data/rack-mini-profiler-4.0.1/lib/generators/rack_mini_profiler/templates/rack_mini_profiler.rb +8 -0
  9. data/rack-mini-profiler-4.0.1/lib/generators/rack_profiler/USAGE +2 -0
  10. data/rack-mini-profiler-4.0.1/lib/generators/rack_profiler/install_generator.rb +16 -0
  11. data/rack-mini-profiler-4.0.1/lib/html/dot.1.1.2.min.js +2 -0
  12. data/rack-mini-profiler-4.0.1/lib/html/includes.css +474 -0
  13. data/rack-mini-profiler-4.0.1/lib/html/includes.js +1520 -0
  14. data/rack-mini-profiler-4.0.1/lib/html/includes.scss +698 -0
  15. data/rack-mini-profiler-4.0.1/lib/html/includes.tmpl +333 -0
  16. data/rack-mini-profiler-4.0.1/lib/html/pretty-print.js +810 -0
  17. data/rack-mini-profiler-4.0.1/lib/html/profile_handler.js +1 -0
  18. data/rack-mini-profiler-4.0.1/lib/html/rack-mini-profiler.css +3 -0
  19. data/rack-mini-profiler-4.0.1/lib/html/rack-mini-profiler.js +2 -0
  20. data/rack-mini-profiler-4.0.1/lib/html/share.html +10 -0
  21. data/rack-mini-profiler-4.0.1/lib/html/speedscope/LICENSE +21 -0
  22. data/rack-mini-profiler-4.0.1/lib/html/speedscope/README.md +3 -0
  23. data/rack-mini-profiler-4.0.1/lib/html/speedscope/demangle-cpp.1768f4cc.js +4 -0
  24. data/rack-mini-profiler-4.0.1/lib/html/speedscope/favicon-16x16.f74b3187.png +0 -0
  25. data/rack-mini-profiler-4.0.1/lib/html/speedscope/favicon-32x32.bc503437.png +0 -0
  26. data/rack-mini-profiler-4.0.1/lib/html/speedscope/file-format-schema.json +324 -0
  27. data/rack-mini-profiler-4.0.1/lib/html/speedscope/fonts/source-code-pro-regular.css +8 -0
  28. data/rack-mini-profiler-4.0.1/lib/html/speedscope/fonts/source-code-pro-v13-regular.woff +0 -0
  29. data/rack-mini-profiler-4.0.1/lib/html/speedscope/fonts/source-code-pro-v13-regular.woff2 +0 -0
  30. data/rack-mini-profiler-4.0.1/lib/html/speedscope/import.8ae8aa3d.js +123 -0
  31. data/rack-mini-profiler-4.0.1/lib/html/speedscope/index.html +2 -0
  32. data/rack-mini-profiler-4.0.1/lib/html/speedscope/release.txt +3 -0
  33. data/rack-mini-profiler-4.0.1/lib/html/speedscope/reset.8c46b7a1.css +2 -0
  34. data/rack-mini-profiler-4.0.1/lib/html/speedscope/source-map.438fa06b.js +24 -0
  35. data/rack-mini-profiler-4.0.1/lib/html/speedscope/speedscope.f27db165.js +193 -0
  36. data/rack-mini-profiler-4.0.1/lib/html/vendor.js +848 -0
  37. data/rack-mini-profiler-4.0.1/lib/mini_profiler/actions.rb +157 -0
  38. data/rack-mini-profiler-4.0.1/lib/mini_profiler/asset_version.rb +6 -0
  39. data/rack-mini-profiler-4.0.1/lib/mini_profiler/client_settings.rb +127 -0
  40. data/rack-mini-profiler-4.0.1/lib/mini_profiler/config.rb +146 -0
  41. data/rack-mini-profiler-4.0.1/lib/mini_profiler/context.rb +14 -0
  42. data/rack-mini-profiler-4.0.1/lib/mini_profiler/gc_profiler.rb +158 -0
  43. data/rack-mini-profiler-4.0.1/lib/mini_profiler/profiling_methods.rb +167 -0
  44. data/rack-mini-profiler-4.0.1/lib/mini_profiler/snapshots_transporter.rb +111 -0
  45. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/abstract_store.rb +97 -0
  46. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/file_store.rb +179 -0
  47. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/memcache_store.rb +105 -0
  48. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/memory_store.rb +233 -0
  49. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/redis_store.rb +353 -0
  50. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage.rb +7 -0
  51. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/base.rb +39 -0
  52. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/client.rb +90 -0
  53. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/custom.rb +25 -0
  54. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/page.rb +146 -0
  55. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/request.rb +186 -0
  56. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/sql.rb +89 -0
  57. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct.rb +8 -0
  58. data/rack-mini-profiler-4.0.1/lib/mini_profiler/version.rb +8 -0
  59. data/rack-mini-profiler-4.0.1/lib/mini_profiler/views.rb +198 -0
  60. data/rack-mini-profiler-4.0.1/lib/mini_profiler.rb +670 -0
  61. data/rack-mini-profiler-4.0.1/lib/mini_profiler_rails/railtie.rb +234 -0
  62. data/rack-mini-profiler-4.0.1/lib/mini_profiler_rails/railtie_methods.rb +61 -0
  63. data/rack-mini-profiler-4.0.1/lib/patches/db/activerecord.rb +44 -0
  64. data/rack-mini-profiler-4.0.1/lib/patches/db/mongo.rb +18 -0
  65. data/rack-mini-profiler-4.0.1/lib/patches/db/moped.rb +14 -0
  66. data/rack-mini-profiler-4.0.1/lib/patches/db/mysql2/alias_method.rb +30 -0
  67. data/rack-mini-profiler-4.0.1/lib/patches/db/mysql2/prepend.rb +34 -0
  68. data/rack-mini-profiler-4.0.1/lib/patches/db/mysql2.rb +7 -0
  69. data/rack-mini-profiler-4.0.1/lib/patches/db/neo4j.rb +16 -0
  70. data/rack-mini-profiler-4.0.1/lib/patches/db/nobrainer.rb +31 -0
  71. data/rack-mini-profiler-4.0.1/lib/patches/db/oracle_enhanced.rb +70 -0
  72. data/rack-mini-profiler-4.0.1/lib/patches/db/pg/alias_method.rb +121 -0
  73. data/rack-mini-profiler-4.0.1/lib/patches/db/pg/prepend.rb +115 -0
  74. data/rack-mini-profiler-4.0.1/lib/patches/db/pg.rb +7 -0
  75. data/rack-mini-profiler-4.0.1/lib/patches/db/plucky.rb +49 -0
  76. data/rack-mini-profiler-4.0.1/lib/patches/db/riak.rb +105 -0
  77. data/rack-mini-profiler-4.0.1/lib/patches/db/rsolr.rb +26 -0
  78. data/rack-mini-profiler-4.0.1/lib/patches/db/sequel.rb +12 -0
  79. data/rack-mini-profiler-4.0.1/lib/patches/net_patches.rb +27 -0
  80. data/rack-mini-profiler-4.0.1/lib/patches/sql_patches.rb +74 -0
  81. data/rack-mini-profiler-4.0.1/lib/prepend_mysql2_patch.rb +5 -0
  82. data/rack-mini-profiler-4.0.1/lib/prepend_net_http_patch.rb +5 -0
  83. data/rack-mini-profiler-4.0.1/lib/prepend_pg_patch.rb +5 -0
  84. data/rack-mini-profiler-4.0.1/lib/rack-mini-profiler.rb +13 -0
  85. data/rack-mini-profiler-4.0.1/rack-mini-profiler.gemspec +49 -0
  86. metadata +125 -0
@@ -0,0 +1,542 @@
1
+ # rack-mini-profiler
2
+
3
+ Middleware that displays speed badge for every HTML page, along with (optional) flamegraphs and memory profiling. Designed to work both in production and in development.
4
+
5
+ ![Screenshot 2023-04-05 at 3 13 52 PM](https://user-images.githubusercontent.com/845662/229996538-0f2d9c48-23d9-4d53-a1de-8b4c84c87fbd.png)
6
+
7
+ #### Features
8
+
9
+ * Database profiling - Currently supports Mysql2, Postgres, Oracle (oracle_enhanced ~> 1.5.0) and Mongoid3 (with fallback support to ActiveRecord)
10
+ * Call-stack profiling - Flame graphs showing time spent by gem
11
+ * Memory profiling - Per-request memory usage, GC stats, and global allocation metrics
12
+
13
+ #### Learn more
14
+
15
+ * [Visit our community](http://community.miniprofiler.com)
16
+ * [Watch the RailsCast](http://railscasts.com/episodes/368-miniprofiler)
17
+ * [Read about Flame graphs in rack-mini-profiler](http://samsaffron.com/archive/2013/03/19/flame-graphs-in-ruby-miniprofiler)
18
+ * [Read the announcement posts from 2012](http://samsaffron.com/archive/2012/07/12/miniprofiler-ruby-edition)
19
+
20
+ ## rack-mini-profiler needs your help
21
+
22
+ We have decided to restructure our repository so there is a central UI repo and the various language implementations have their own.
23
+
24
+ **WE NEED HELP.**
25
+
26
+ - Help [triage issues](https://www.codetriage.com/miniprofiler/rack-mini-profiler) [![Open Source Helpers](https://www.codetriage.com/miniprofiler/rack-mini-profiler/badges/users.svg)](https://www.codetriage.com/miniprofiler/rack-mini-profiler)
27
+
28
+ If you feel like taking on any of this start an issue and update us on your progress.
29
+
30
+ ## Installation
31
+
32
+ Install/add to Gemfile in Ruby 2.6+
33
+
34
+ ```ruby
35
+ gem 'rack-mini-profiler'
36
+ ```
37
+
38
+ NOTE: Be sure to require rack_mini_profiler below the `pg` and `mysql` gems in your Gemfile. rack_mini_profiler will identify these gems if they are loaded to insert instrumentation. If included too early no SQL will show up.
39
+
40
+ You can also include optional libraries to enable additional features.
41
+ ```ruby
42
+ # For memory profiling
43
+ gem 'memory_profiler'
44
+
45
+ # For call-stack profiling flamegraphs
46
+ gem 'stackprof'
47
+ ```
48
+
49
+ #### Rails
50
+
51
+ All you have to do is to include the Gem and you're good to go in development. See notes below for use in production.
52
+
53
+ #### Upgrading to version 2.0.0
54
+
55
+ Prior to version 2.0.0, Mini Profiler patched various Rails methods to get the information it needed such as template rendering time. Starting from version 2.0.0, Mini Profiler doesn't patch any Rails methods by default and relies on `ActiveSupport::Notifications` to get the information it needs from Rails. If you want Mini Profiler to keep using its patches in version 2.0.0 and later, change the gem line in your `Gemfile` to the following:
56
+
57
+ If you want to manually require Mini Profiler:
58
+ ```ruby
59
+ gem 'rack-mini-profiler', require: ['enable_rails_patches']
60
+ ```
61
+
62
+ If you don't want to manually require Mini Profiler:
63
+ ```ruby
64
+ gem 'rack-mini-profiler', require: ['enable_rails_patches', 'rack-mini-profiler']
65
+ ```
66
+
67
+ #### `Net::HTTP` stack level too deep errors
68
+
69
+ If you start seeing `SystemStackError: stack level too deep` errors from `Net::HTTP` after installing Mini Profiler, this means there is another patch for `Net::HTTP#request` that conflicts with Mini Profiler's patch in your application. To fix this, change `rack-mini-profiler` gem line in your `Gemfile` to the following:
70
+
71
+ ```ruby
72
+ gem 'rack-mini-profiler', require: ['prepend_net_http_patch', 'rack-mini-profiler']
73
+ ```
74
+
75
+ If you currently have `require: false`, remove the `'rack-mini-profiler'` string from the `require` array above so the gem line becomes like this:
76
+
77
+ ```ruby
78
+ gem 'rack-mini-profiler', require: ['prepend_net_http_patch']
79
+ ```
80
+
81
+ This conflict happens when a ruby method is patched twice, once using module prepend, and once using method aliasing. See this [ruby issue](https://bugs.ruby-lang.org/issues/11120) for details. The fix is to apply all patches the same way. Mini Profiler by default will apply its patch using method aliasing, but you can change that to module prepend by adding `require: ['prepend_net_http_patch']` to the gem line as shown above.
82
+
83
+ #### `peek-mysql2` stack level too deep errors
84
+
85
+ If you use peek-mysql2 with Rails >= 5, you'll need to use this gem spec in your Gemfile:
86
+
87
+ ```ruby
88
+ gem 'rack-mini-profiler', require: ['prepend_mysql2_patch', 'rack-mini-profiler']
89
+ ```
90
+
91
+ This should not be necessary with Rails < 5 because peek-mysql2 hooks into mysql2 gem in different ways depending on your Rails version.
92
+
93
+ #### `pg` stack level too deep errors
94
+
95
+ If you encounter `SystemStackError (stack level too deep)` from PG, you'll need to use this gem spec in your Gemfile:
96
+
97
+ ```ruby
98
+ gem 'rack-mini-profiler', require: ['prepend_pg_patch', 'rack-mini-profiler']
99
+ ```
100
+
101
+ Or if you initially have `require: false`, then use
102
+
103
+ ```ruby
104
+ gem 'rack-mini-profiler', require: ['prepend_pg_patch']
105
+ ```
106
+
107
+ #### Rails and manual initialization
108
+
109
+ In case you need to make sure rack_mini_profiler is initialized after all other gems, or you want to execute some code before rack_mini_profiler required:
110
+
111
+ ```ruby
112
+ gem 'rack-mini-profiler', require: false
113
+ ```
114
+ Note the `require: false` part - if omitted, it will cause the Railtie for the mini-profiler to
115
+ be loaded outright, and an attempt to re-initialize it manually will raise an exception.
116
+
117
+ Then run the generator which will set up rack-mini-profiler in development:
118
+
119
+ ```bash
120
+ bundle exec rails g rack_mini_profiler:install
121
+ ```
122
+
123
+ #### Rack Builder
124
+
125
+ ```ruby
126
+ require 'rack-mini-profiler'
127
+
128
+ home = lambda { |env|
129
+ [200, {'Content-Type' => 'text/html'}, ["<html><body>hello!</body></html>"]]
130
+ }
131
+
132
+ builder = Rack::Builder.new do
133
+ use Rack::MiniProfiler
134
+ map('/') { run home }
135
+ end
136
+
137
+ run builder
138
+ ```
139
+
140
+ #### Sinatra
141
+
142
+ ```ruby
143
+ require 'rack-mini-profiler'
144
+ class MyApp < Sinatra::Base
145
+ use Rack::MiniProfiler
146
+ end
147
+ ```
148
+
149
+ #### Hanami
150
+ For working with hanami, you need to use rack integration. Also, you need to add `Hanami::View::Rendering::Partial#render` method for profile:
151
+
152
+ ```ruby
153
+ # config.ru
154
+ require 'rack-mini-profiler'
155
+ Rack::MiniProfiler.profile_method(Hanami::View::Rendering::Partial, :render) { "Render partial #{@options[:partial]}" }
156
+
157
+ use Rack::MiniProfiler
158
+ ```
159
+
160
+ #### Patching ActiveRecord
161
+
162
+ A typical web application spends a lot of time querying the database. rack_mini_profiler will detect the ORM that is available
163
+ and apply patches to properly collect query statistics.
164
+
165
+ To make this work, declare the orm's gem before declaring `rack-mini-profiler` in the `Gemfile`:
166
+
167
+ ```ruby
168
+ gem 'pg'
169
+ gem 'mongoid'
170
+ gem 'rack-mini-profiler'
171
+
172
+ ```
173
+
174
+ If you wish to override this behavior, the environment variable `RACK_MINI_PROFILER_PATCH` is available.
175
+
176
+ ```bash
177
+ export RACK_MINI_PROFILER_PATCH="pg,mongoid"
178
+ # or
179
+ export RACK_MINI_PROFILER_PATCH="false"
180
+ # initializers/rack_profiler.rb: SqlPatches.patch %w(mongo)
181
+ ```
182
+
183
+ #### Patching Net::HTTP
184
+
185
+ Other than databases, `rack-mini-profiler` applies a patch to `Net::HTTP`. You may want to disable this patch:
186
+
187
+ ```bash
188
+ export RACK_MINI_PROFILER_PATCH_NET_HTTP="false"
189
+ ```
190
+
191
+ ### Flamegraphs
192
+
193
+ To generate [flamegraphs](http://samsaffron.com/archive/2013/03/19/flame-graphs-in-ruby-miniprofiler), add the [**stackprof**](https://rubygems.org/gems/stackprof) gem to your Gemfile.
194
+
195
+ Then, to view the flamegraph as a direct HTML response from your request, just visit any page in your app with `?pp=flamegraph` appended to the URL, or add the header `X-Rack-Mini-Profiler` to the request with the value `flamegraph`.
196
+
197
+ Conversely, if you want your regular response instead (which is specially useful for JSON and/or XHR requests), just append the `?pp=async-flamegraph` parameter to your request/fetch URL; the request will then return as normal, and the flamegraph data will be stored for later *async* viewing, both for this request and for all subsequent requests made by this page (based on the `REFERER` header). For viewing these async flamegraphs, use the 'flamegraph' link that will appear inside the MiniProfiler UI for these requests or path returned in the `X-MiniProfiler-Flamegraph-Path` header.
198
+
199
+ Note: Mini Profiler will not record SQL timings for a request if it asks for a flamegraph. The rationale behind this is to keep
200
+ Mini Profiler's methods that are responsible for generating the timings data out of the flamegraph.
201
+
202
+ ### Memory Profiling
203
+
204
+ Memory allocations can be measured (using the [memory_profiler](https://github.com/SamSaffron/memory_profiler) gem)
205
+ which will show allocations broken down by gem, file location, and class and will also highlight `String` allocations.
206
+
207
+ Add `?pp=profile-memory` to the URL of any request while Rack::MiniProfiler is enabled to generate the report.
208
+
209
+ Additional query parameters can be used to filter the results.
210
+
211
+ * `memory_profiler_allow_files` - filename pattern to include (default is all files)
212
+ * `memory_profiler_ignore_files` - filename pattern to exclude (default is no exclusions)
213
+ * `memory_profiler_top` - number of results per section (defaults to 50)
214
+
215
+ The allow/ignore patterns will be treated as regular expressions.
216
+
217
+ Example: `?pp=profile-memory&memory_profiler_allow_files=active_record|app`
218
+
219
+ There are two additional `pp` options that can be used to analyze memory which do not require the `memory_profiler` gem
220
+
221
+ * Use `?pp=profile-gc` to report on Garbage Collection statistics
222
+ * Use `?pp=analyze-memory` to report on ObjectSpace statistics
223
+
224
+ ### Snapshots Sampling
225
+
226
+ In a complex web application, it's possible for a request to trigger rare conditions that result in poor performance. Mini Profiler ships with a feature to help detect those rare conditions and fix them. It works by enabling invisible profiling on one request every N requests, and saving the performance metrics that are collected during the request (a.k.a snapshot of the request) so that they can be viewed later. To turn this feature on, set the `snapshot_every_n_requests` config to a value larger than 0. The larger the value is, the less frequently requests are profiled.
227
+
228
+ Mini Profiler will exclude requests that are made to skipped paths (see `skip_paths` config below) from being sampled. Additionally, if profiling is enabled for a request that later finishes with a non-2xx status code, Mini Profiler will discard the snapshot and not save it (this behavior may change in the future).
229
+
230
+ After enabling snapshots sampling, you can see the snapshots that have been collected at `/mini-profiler-resources/snapshots` (or if you changed the `base_url_path` config, substitute `mini-profiler-resources` with your value of the config). You'll see on that page a table where each row represents a group of snapshots with the duration of the worst snapshot in that group. The worst snapshot in a group is defined as the snapshot whose request took longer than all of the snapshots in the same group. Snapshots grouped by HTTP method and path of the request, and if your application is a Rails app, Mini Profiler will try to convert the path to `controller#action` and group by that instead of request path. Clicking on a group will display the snapshots of that group sorted from worst to best. From there, you can click on a snapshot's ID to see the snapshot with all the performance metrics that were collected.
231
+
232
+ Access to the snapshots page is restricted to only those who can see the speed badge on their own requests, see the section below this one about access control.
233
+
234
+ Mini Profiler will keep a maximum of 50 snapshot groups and a maximum of 15 snapshots per group making the default maximum number of snapshots in the system 750. The default group and per group limits can be changed via the `max_snapshot_groups` and `max_snapshots_per_group` configuration options, see the configurations table below.
235
+
236
+ #### Snapshots Transporter
237
+
238
+ Mini Profiler can be configured so that it sends snapshots over HTTP using the snapshots transporter. The main use-case of the transporter is to allow the aggregation of snapshots from multiple applications/sources in a single place. To enable the snapshots transporter, you need to provide a destination URL to the `snapshots_transport_destination_url` config, and a secure key to the `snapshots_transport_auth_key` config (will be used for authorization). Both of these configs are required for the transporter to be enabled.
239
+
240
+ The transporter uses a buffer to temporarily hold snapshots in memory with a limit of 100 snapshots. Every 30 seconds, *if* the buffer is not empty, the transporter will make a `POST` request with the buffer content to the destination URL. Requests made by the transporter will have a `Mini-Profiler-Transport-Auth` header with the value of the `snapshots_transport_auth_key` config. The destination should only accept requests that include this header AND the header's value matches the key you set to the `snapshots_transport_auth_key` config.
241
+
242
+ If the specified destination responds with a non-200 status code, the transporter will increase the interval between requests by `2^n` seconds where `n` is the number of failed requests since the last successful request. The base interval between requests is 30 seconds. So if a request fails, the next request will be `30 + 2^1 = 32` seconds later. If the next request fails too, the next one will be `30 + 2^2 = 34` seconds later and so on until a request succeeds at which point the interval will return to 30 seconds. The interval will not go beyond 1 hour.
243
+
244
+ Requests made by the transporter can be optionally gzip-compressed by setting the `snapshots_transport_gzip_requests` config to true. The body of the requests (after decompression, if you opt for compression) is a JSON string with a single top-level key called `snapshots` and it has an array of snapshots. The structure of a snapshot is too complex to be explained here, but it has the same structure that Mini Profiler client expects. So if your use-case is to simply be able to view snapshots from multiple sources in one place, you should simply store the snapshots as-is, and then serve them to Mini Profiler client to consume. If the destination application also has Mini Profiler, you can simply use the API of the storage backends to store the incoming snapshots and Mini Profiler will treat them the same as local snapshots (e.g. they'll be grouped and displayed in the same manner described in the previous section).
245
+
246
+ Mini Profiler offers an API to add extra fields (a.k.a custom fields) to snapshots. For example, you may want to add whether the request was made by a logged-in or anonymous user, the version of your application or any other things that are specific to your application. To add custom fields to a snapshot, call the `Rack::MiniProfiler.add_snapshot_custom_field(<key>, <value>)` method anywhere during the lifetime of a request, and the snapshot of that request will include the fields you added. If you have a Rails app, you can call that method in an `after_action` callback. Custom fields are cleared between requests.
247
+
248
+ ## Access control in non-development environments
249
+
250
+ rack-mini-profiler is designed with production profiling in mind. To enable that run `Rack::MiniProfiler.authorize_request` once you know a request is allowed to profile.
251
+
252
+ ```ruby
253
+ # inside your ApplicationController
254
+
255
+ before_action do
256
+ if current_user && current_user.is_admin?
257
+ Rack::MiniProfiler.authorize_request
258
+ end
259
+ end
260
+ ```
261
+
262
+ > [!WARNING]
263
+ > If your production application is running on more than one server (or more than one dyno) you will need to configure rack mini profiler's storage to use Redis or Memcache. See [storage](#storage) for information on changing the storage backend.
264
+
265
+ Note:
266
+
267
+ Out-of-the-box we will initialize the `authorization_mode` to `:allow_authorized` in production. However, in some cases we may not be able to do it:
268
+
269
+ - If you are running in development or test we will not enable the explicit authorization mode
270
+ - If you use `require: false` on rack_mini_profiler we are unlikely to be able to run the railtie
271
+ - If you are running outside of rails we will not run the railtie
272
+
273
+ In those cases use:
274
+
275
+ ```ruby
276
+ Rack::MiniProfiler.config.authorization_mode = :allow_authorized
277
+ ```
278
+
279
+ When deciding to fully profile a page mini profiler consults with the `authorization_mode`
280
+
281
+ By default in production we attempt to set the authorization mode to `:allow_authorized` meaning that end user will only be able to see requests where somewhere `Rack::MiniProfiler.authorize_request` is invoked.
282
+
283
+ In development we run in the `:allow_all` authorization mode meaning every request is profiled and displayed to the end user.
284
+
285
+
286
+ ## Configuration
287
+
288
+ Various aspects of rack-mini-profiler's behavior can be configured when your app boots.
289
+ For example in a Rails app, this should be done in an initializer:
290
+ **config/initializers/mini_profiler.rb**
291
+
292
+ ### Caching behavior
293
+
294
+ To fix some nasty bugs with rack-mini-profiler showing the wrong data, the middleware
295
+ will remove headers relating to caching (Date & Etag on responses, If-Modified-Since & If-None-Match on requests).
296
+ This probably won't ever break your application, but it can cause some unexpected behavior. For
297
+ example, in a Rails app, calls to `stale?` will always return true.
298
+
299
+ To disable this behavior, use the following config setting:
300
+
301
+ ```ruby
302
+ # Do not let rack-mini-profiler disable caching
303
+ Rack::MiniProfiler.config.disable_caching = false # defaults to true
304
+ ```
305
+
306
+ ### Storage
307
+
308
+ rack-mini-profiler stores its results so they can be shared later and aren't lost at the end of the request.
309
+
310
+ There are 4 storage options: `MemoryStore`, `RedisStore`, `MemcacheStore`, and `FileStore`.
311
+
312
+ `FileStore` is the default in Rails environments and will write files to `tmp/miniprofiler/*`. `MemoryStore` is the default otherwise.
313
+
314
+ ```ruby
315
+ # set MemoryStore
316
+ Rack::MiniProfiler.config.storage = Rack::MiniProfiler::MemoryStore
317
+
318
+ # set RedisStore
319
+ if Rails.env.production?
320
+ Rack::MiniProfiler.config.storage_options = { url: ENV["REDIS_SERVER_URL"] }
321
+ Rack::MiniProfiler.config.storage = Rack::MiniProfiler::RedisStore
322
+ end
323
+ ```
324
+
325
+ `MemoryStore` stores results in a processes heap - something that does not work well in a multi process environment.
326
+ `FileStore` stores results in the file system - something that may not work well in a multi machine environment.
327
+ `RedisStore`/`MemcacheStore` work in multi process and multi machine environments (`RedisStore` only saves results for up to 24 hours so it won't continue to fill up Redis). You will need to add `gem redis`/`gem dalli` respectively to your `Gemfile` to use these stores.
328
+
329
+ Additionally you may implement an `AbstractStore` for your own provider.
330
+
331
+ ### User result segregation
332
+
333
+ MiniProfiler will attempt to keep all user results isolated, out-of-the-box the user provider uses the ip address:
334
+
335
+ ```ruby
336
+ Rack::MiniProfiler.config.user_provider = Proc.new{|env| Rack::Request.new(env).ip}
337
+ ```
338
+
339
+ You can override (something that is very important in a multi-machine production setup):
340
+
341
+ ```ruby
342
+ Rack::MiniProfiler.config.user_provider = Proc.new{ |env| CurrentUser.get(env) }
343
+ ```
344
+
345
+ The string this function returns should be unique for each user on the system (for anonymous you may need to fall back to ip address)
346
+
347
+ ### Profiling specific methods
348
+
349
+ You can increase the granularity of profiling by measuring the performance of specific methods. Add methods of interest to an initializer.
350
+
351
+ ```ruby
352
+ Rails.application.config.to_prepare do
353
+ ::Rack::MiniProfiler.profile_singleton_method(User, :non_admins) { |a| "executing all_non_admins" }
354
+ ::Rack::MiniProfiler.profile_method(User, :favorite_post) { |a| "executing favorite_post" }
355
+ end
356
+ ```
357
+
358
+ ### Profiling arbitrary block of code
359
+
360
+ It is also possible to profile any arbitrary block of code by passing a block to `Rack::MiniProfiler.step(name, opts=nil)`.
361
+
362
+ ```ruby
363
+ Rack::MiniProfiler.step('Adding two elements') do
364
+ result = 1 + 2
365
+ end
366
+ ```
367
+
368
+ ### Using in SPA applications
369
+
370
+ Single page applications built using Ember, Angular or other frameworks need some special care, as routes often change without a full page load.
371
+
372
+ On route transition always call:
373
+
374
+ ```
375
+ if (window.MiniProfiler !== undefined) {
376
+ window.MiniProfiler.pageTransition();
377
+ }
378
+ ```
379
+
380
+ This method will remove profiling information that was related to previous page and clear aggregate statistics.
381
+
382
+ #### MiniProfiler's speed badge on pages that are not generated via Rails
383
+ You need to inject the following in your SPA to load MiniProfiler's speed badge ([extra details surrounding this script](https://github.com/MiniProfiler/rack-mini-profiler/issues/139#issuecomment-192880706) and [credit for the script tag](https://github.com/MiniProfiler/rack-mini-profiler/issues/479#issue-782488320) to [@ivanyv](https://github.com/ivanyv)):
384
+
385
+ ```html
386
+ <script type="text/javascript" id="mini-profiler"
387
+ src="/mini-profiler-resources/includes.js?v=12b4b45a3c42e6e15503d7a03810ff33"
388
+ data-css-url="/mini-profiler-resources/includes.css?v=12b4b45a3c42e6e15503d7a03810ff33"
389
+ data-version="12b4b45a3c42e6e15503d7a03810ff33"
390
+ data-path="/mini-profiler-resources/"
391
+ data-horizontal-position="left"
392
+ data-vertical-position="top"
393
+ data-ids=""
394
+ data-trivial="false"
395
+ data-children="false"
396
+ data-max-traces="20"
397
+ data-controls="false"
398
+ data-total-sql-count="false"
399
+ data-authorized="true"
400
+ data-toggle-shortcut="alt+p"
401
+ data-start-hidden="false"
402
+ data-collapse-results="true"
403
+ data-html-container="body"
404
+ data-hidden-custom-fields></script>
405
+ ```
406
+
407
+ See an [example of how to do this in a React useEffect](https://gist.github.com/katelovescode/01cfc2b962c165193b160fd10af6c4d5).
408
+
409
+ _Note:_ The GUID (`data-version` and the `?v=` parameter on the `src` and `data-css-url`) will change with each release of `rack_mini_profiler`. The MiniProfiler's speed badge will continue to work, although you will have to change the GUID to expire the script to fetch the most recent version.
410
+
411
+ #### Using MiniProfiler's built in route for apps without HTML responses
412
+ MiniProfiler also ships with a `/rack-mini-profiler/requests` route that displays the speed badge on a blank HTML page. This can be useful when profiling an application that does not render HTML.
413
+
414
+ #### Register MiniProfiler's assets in the Rails assets pipeline
415
+ MiniProfiler can be configured so it registers its assets in the assets pipeline. To do that, you'll need to provide a lambda (or proc) to the `assets_url` config (see the below section). The callback will receive 3 arguments which are: `name` represents asset name (currently it's either `rack-mini-profiling.js` or `rack-mini-profiling.css`), `assets_version` is a 32 characters long hash of MiniProfiler's assets, and `env` which is the `env` object of the request. MiniProfiler expects the `assets_url` callback to return a URL from which the asset can be loaded (the return value will be used as a `href`/`src` attribute in the DOM). If the `assets_url` callback is not set (the default) or it returns a non-truthy value, MiniProfiler will fallback to loading assets from its own middleware (`/mini-profiler-resources/*`). The following callback should work for most applications:
416
+
417
+ ```ruby
418
+ Rack::MiniProfiler.config.assets_url = ->(name, version, env) {
419
+ ActionController::Base.helpers.asset_path(name)
420
+ }
421
+ ```
422
+
423
+ ### Configuration Options
424
+
425
+ You can set configuration options using the configuration accessor on `Rack::MiniProfiler`.
426
+ For example:
427
+
428
+ ```ruby
429
+ Rack::MiniProfiler.config.position = 'bottom-right'
430
+ Rack::MiniProfiler.config.start_hidden = true
431
+ ```
432
+ The available configuration options are:
433
+
434
+ Option | Default | Description
435
+ ------------------------------------|---------------------------------------------------------|------------------------
436
+ pre_authorize_cb | Rails: dev only<br>Rack: always on | A lambda callback that returns true to make mini_profiler visible on a given request.
437
+ position | `'top-left'` | Display mini_profiler on `'top-right'`, `'top-left'`, `'bottom-right'` or `'bottom-left'`.
438
+ skip_paths | `[]` | An array of paths that skip profiling. Both `String` and `Regexp` are acceptable in the array.
439
+ skip_schema_queries | Rails dev: `true`<br>Othwerwise: `false` | `true` to skip schema queries.
440
+ auto_inject | `true` | `true` to inject the miniprofiler script in the page.
441
+ backtrace_ignores | `[]` | Regexes of lines to be removed from backtraces.
442
+ backtrace_includes | Rails: `[/^\/?(app\|config\|lib\|test)/]`<br>Rack: `[]` | Regexes of lines to keep in backtraces.
443
+ backtrace_remove | rails: `Rails.root`<br>Rack: `nil` | A string or regex to remove part of each line in the backtrace.
444
+ toggle_shortcut | Alt+P | Keyboard shortcut to toggle the mini_profiler's visibility. See [jquery.hotkeys](https://github.com/jeresig/jquery.hotkeys).
445
+ start_hidden | `false` | `false` to make mini_profiler visible on page load.
446
+ backtrace_threshold_ms | `0` | Minimum SQL query elapsed time before a backtrace is recorded.
447
+ flamegraph_sample_rate | `0.5` | How often to capture stack traces for flamegraphs in milliseconds.
448
+ flamegraph_mode | `:wall` | The [StackProf mode](https://github.com/tmm1/stackprof#all-options) to pass to `StackProf.run`.
449
+ flamegraph_ignore_gc | `false` | Whether to ignore garbage collection frames in flamegraphs.
450
+ base_url_path | `'/mini-profiler-resources/'` | Path for assets; added as a prefix when naming assets and sought when responding to requests.
451
+ cookie_path | `'/'` | Set-Cookie header path for profile cookie
452
+ collapse_results | `true` | If multiple timing results exist in a single page, collapse them till clicked.
453
+ max_traces_to_show | 20 | Maximum number of mini profiler timing blocks to show on one page
454
+ html_container | `body` | The HTML container (as a jQuery selector) to inject the mini_profiler UI into
455
+ show_total_sql_count | `false` | Displays the total number of SQL executions.
456
+ enable_advanced_debugging_tools | `false` | Enables sensitive debugging tools that can be used via the UI. In production we recommend keeping this disabled as memory and environment debugging tools can expose contents of memory that may contain passwords. Defaults to `true` in development.
457
+ assets_url | `nil` | See the "Register MiniProfiler's assets in the Rails assets pipeline" section above.
458
+ snapshot_every_n_requests | `-1` | Determines how frequently snapshots are taken. See the "Snapshots Sampling" above for more details.
459
+ max_snapshot_groups | `50` | Determines how many snapshot groups Mini Profiler is allowed to keep.
460
+ max_snapshots_per_group | `15` | Determines how many snapshots per group Mini Profiler is allowed to keep.
461
+ snapshot_hidden_custom_fields | `[]` | Each snapshot custom field will have a dedicated column in the UI by default. Use this config to exclude certain custom fields from having their own columns.
462
+ snapshots_transport_destination_url | `nil` | Set this config to a valid URL to enable snapshots transporter which will `POST` snapshots to the given URL. The transporter requires `snapshots_transport_auth_key` config to be set as well.
463
+ snapshots_transport_auth_key | `nil` | `POST` requests made by the snapshots transporter to the destination URL will have a `Mini-Profiler-Transport-Auth` header with the value of this config. Make sure you use a secure and random key for this config.
464
+ snapshots_redact_sql_queries | `true` | When this is true, SQL queries will be redacted from sampling snapshots, but the backtrace and duration of each SQL query will be saved with the snapshot to keep debugging performance issues possible.
465
+ snapshots_transport_gzip_requests | `false` | Make the snapshots transporter gzip the requests it makes to `snapshots_transport_destination_url`.
466
+ content_security_policy_nonce | Rails: Current nonce<br>Rack: nil | Set the content security policy nonce to use when inserting MiniProfiler's script block. Can be set to a static string, or a Proc which receives `env` and `response_headers` as arguments and returns the nonce.
467
+ enable_hotwire_turbo_drive_support | `false` | Enable support for Hotwire TurboDrive page transitions.
468
+ profile_parameter | `'pp'` | The query parameter used to interact with this gem.
469
+
470
+ ### Using MiniProfiler with `Rack::Deflate` middleware
471
+
472
+ If you are using `Rack::Deflate` with Rails and `rack-mini-profiler` in its default configuration,
473
+ `Rack::MiniProfiler` will be injected (as always) at position 0 in the middleware stack,
474
+ which means it will run after `Rack::Deflate` on response processing. To prevent attempting to inject
475
+ HTML in already compressed response body MiniProfiler will suppress compression by setting
476
+ `identity` encoding in `Accept-Encoding` request header.
477
+
478
+ ### Using MiniProfiler with Heroku Redis
479
+
480
+ If you are using Heroku Redis, you may need to add the following to your `config/initializers/mini_profiler.rb`, in order to get Mini Profiler to work:
481
+
482
+ ```ruby
483
+ if Rails.env.production?
484
+ Rack::MiniProfiler.config.storage_options = {
485
+ url: ENV["REDIS_URL"],
486
+ ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE }
487
+ }
488
+ Rack::MiniProfiler.config.storage = Rack::MiniProfiler::RedisStore
489
+ end
490
+ ```
491
+
492
+ The above code snippet is [Heroku's officially suggested workaround](https://help.heroku.com/HC0F8CUS/redis-connection-issues).
493
+
494
+ ## Special query strings
495
+
496
+ If you include the query string `pp=help` at the end of your request you will see the various options available. You can use these options to extend or contract the amount of diagnostics rack-mini-profiler gathers.
497
+
498
+ ## Development
499
+
500
+ If you want to contribute to this project, that's great, thank you! You can run the following rake task:
501
+
502
+ ```
503
+ $ BUNDLE_GEMFILE=website/Gemfile bundle install
504
+ $ bundle exec rake client_dev
505
+ ```
506
+
507
+ This will start a local Sinatra server at `http://localhost:9292` where you'll be able to preview your changes. Refreshing the page should be enough to see any changes you make to files in the `lib/html` directory.
508
+
509
+ Make sure to prepend `bundle exec` before any Rake tasks you run.
510
+
511
+ ## Running the Specs
512
+
513
+ You need Memcached and Redis services running for the specs.
514
+
515
+ ```
516
+ $ bundle exec rake build
517
+ $ bundle exec rake spec
518
+ ```
519
+
520
+ ## Licence
521
+
522
+ The MIT License (MIT)
523
+
524
+ Copyright (c) 2013 Sam Saffron
525
+
526
+ Permission is hereby granted, free of charge, to any person obtaining a copy
527
+ of this software and associated documentation files (the "Software"), to deal
528
+ in the Software without restriction, including without limitation the rights
529
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
530
+ copies of the Software, and to permit persons to whom the Software is
531
+ furnished to do so, subject to the following conditions:
532
+
533
+ The above copyright notice and this permission notice shall be included in
534
+ all copies or substantial portions of the Software.
535
+
536
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
537
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
538
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
539
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
540
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
541
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
542
+ THE SOFTWARE.
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rack
4
+ MINI_PROFILER_ENABLE_RAILS_PATCHES = true
5
+ end
@@ -0,0 +1,9 @@
1
+ Description:
2
+ Generates an initializer for rack-mini-profiler. Use an initializer when manually
3
+ requiring rack-mini-profiler in your application (using require: false in your Gemfile).
4
+
5
+ Example:
6
+ `bin/rails generate rack_mini_profiler:install`
7
+
8
+ This generates a an initializer that requires and initializes
9
+ rack-mini-profiler in development mode.
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RackMiniProfiler
4
+ module Generators
5
+ class InstallGenerator < ::Rails::Generators::Base
6
+ source_root File.expand_path("templates", __dir__)
7
+
8
+ def create_initializer_file
9
+ copy_file "rack_mini_profiler.rb", "config/initializers/rack_mini_profiler.rb"
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ if Rails.env.development?
4
+ require "rack-mini-profiler"
5
+
6
+ # The initializer was required late, so initialize it manually.
7
+ Rack::MiniProfilerRails.initialize!(Rails.application)
8
+ end
@@ -0,0 +1,2 @@
1
+ description:
2
+ Enable rack-mini-profiler in development for your application.
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "generators/rack_mini_profiler/install_generator"
4
+
5
+ module RackProfiler
6
+ module Generators
7
+ class InstallGenerator < RackMiniProfiler::Generators::InstallGenerator
8
+ source_root File.expand_path("../rack_mini_profiler/templates", __dir__)
9
+
10
+ def create_initializer_file
11
+ warn("bin/rails generate rack_profiler:install is deprecated. Please use rack_mini_profiler:install instead.")
12
+ super
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,2 @@
1
+ /* Laura Doktorova https://github.com/olado/doT */
2
+ !function(){"use strict";function e(n,t,r){return("string"==typeof t?t:t.toString()).replace(n.define||a,function(e,t,o,a){return 0===t.indexOf("def.")&&(t=t.substring(4)),t in r||(":"===o?(n.defineParams&&a.replace(n.defineParams,function(e,n,o){r[t]={arg:n,text:o}}),t in r||(r[t]=a)):new Function("def","def['"+t+"']="+a)(r)),""}).replace(n.use||a,function(t,o){n.useParams&&(o=o.replace(n.useParams,function(e,n,t,o){if(r[t]&&r[t].arg&&o){var a=(t+":"+o).replace(/'|\\/g,"_");return r.__exp=r.__exp||{},r.__exp[a]=r[t].text.replace(new RegExp("(^|[^\\w$])"+r[t].arg+"([^\\w$])","g"),"$1"+o+"$2"),n+"def.__exp['"+a+"']"}}));var a=new Function("def","return "+o)(r);return a?e(n,a,r):a})}function n(e){return e.replace(/\\('|\\)/g,"$1").replace(/[\r\t\n]/g," ")}var t,r={engine:"doT",version:"1.1.1",templateSettings:{evaluate:/\{\{([\s\S]+?(\}?)+)\}\}/g,interpolate:/\{\{=([\s\S]+?)\}\}/g,encode:/\{\{!([\s\S]+?)\}\}/g,use:/\{\{#([\s\S]+?)\}\}/g,useParams:/(^|[^\w$])def(?:\.|\[[\'\"])([\w$\.]+)(?:[\'\"]\])?\s*\:\s*([\w$\.]+|\"[^\"]+\"|\'[^\']+\'|\{[^\}]+\})/g,define:/\{\{##\s*([\w\.$]+)\s*(\:|=)([\s\S]+?)#\}\}/g,defineParams:/^\s*([\w$]+):([\s\S]+)/,conditional:/\{\{\?(\?)?\s*([\s\S]*?)\s*\}\}/g,iterate:/\{\{~\s*(?:\}\}|([\s\S]+?)\s*\:\s*([\w$]+)\s*(?:\:\s*([\w$]+))?\s*\}\})/g,varname:"it",strip:!0,append:!0,selfcontained:!1,doNotSkipEncoded:!1},template:void 0,compile:void 0,log:!0};r.encodeHTMLSource=function(e){var n={"&":"&#38;","<":"&#60;",">":"&#62;",'"':"&#34;","'":"&#39;","/":"&#47;"},t=e?/[&<>"'\/]/g:/&(?!#?\w+;)|<|>|"|'|\//g;return function(e){return e?e.toString().replace(t,function(e){return n[e]||e}):""}},t=function(){return this||(0,eval)("this")}(),"undefined"!=typeof module&&module.exports?module.exports=r:"function"==typeof define&&define.amd?define(function(){return r}):t.doT=r;var o={append:{start:"'+(",end:")+'",startencode:"'+encodeHTML("},split:{start:"';out+=(",end:");out+='",startencode:"';out+=encodeHTML("}},a=/$^/;r.template=function(c,i,u){i=i||r.templateSettings;var d,s,p=i.append?o.append:o.split,l=0,f=i.use||i.define?e(i,c,u||{}):c;f=("var out='"+(i.strip?f.replace(/(^|\r|\n)\t* +| +\t*(\r|\n|$)/g," ").replace(/\r|\n|\t|\/\*[\s\S]*?\*\//g,""):f).replace(/'|\\/g,"\\$&").replace(i.interpolate||a,function(e,t){return p.start+n(t)+p.end}).replace(i.encode||a,function(e,t){return d=!0,p.startencode+n(t)+p.end}).replace(i.conditional||a,function(e,t,r){return t?r?"';}else if("+n(r)+"){out+='":"';}else{out+='":r?"';if("+n(r)+"){out+='":"';}out+='"}).replace(i.iterate||a,function(e,t,r,o){return t?(l+=1,s=o||"i"+l,t=n(t),"';var arr"+l+"="+t+";if(arr"+l+"){var "+r+","+s+"=-1,l"+l+"=arr"+l+".length-1;while("+s+"<l"+l+"){"+r+"=arr"+l+"["+s+"+=1];out+='"):"';} } out+='"}).replace(i.evaluate||a,function(e,t){return"';"+n(t)+"out+='"})+"';return out;").replace(/\n/g,"\\n").replace(/\t/g,"\\t").replace(/\r/g,"\\r").replace(/(\s|;|\}|^|\{)out\+='';/g,"$1").replace(/\+''/g,""),d&&(i.selfcontained||!t||t._encodeHTML||(t._encodeHTML=r.encodeHTMLSource(i.doNotSkipEncoded)),f="var encodeHTML = typeof _encodeHTML !== 'undefined' ? _encodeHTML : ("+r.encodeHTMLSource.toString()+"("+(i.doNotSkipEncoded||"")+"));"+f);try{return new Function(i.varname,f)}catch(e){throw"undefined"!=typeof console&&console.log("Could not create a template function: "+f),e}},r.compile=function(e,n){return r.template(e,null,n)}}();