rack-mini-profiler 2.3.2 → 2.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/README.md +46 -17
- data/lib/html/includes.css +9 -11
- data/lib/html/includes.js +24 -1
- data/lib/html/includes.scss +3 -11
- data/lib/html/includes.tmpl +2 -2
- data/lib/html/profile_handler.js +1 -1
- data/lib/html/vendor.js +1 -1
- data/lib/mini_profiler/asset_version.rb +1 -1
- data/lib/mini_profiler/client_settings.rb +2 -2
- data/lib/mini_profiler/config.rb +7 -2
- data/lib/mini_profiler/profiler.rb +21 -5
- data/lib/mini_profiler/storage/file_store.rb +2 -0
- data/lib/mini_profiler/storage/memcache_store.rb +11 -7
- data/lib/mini_profiler/storage/redis_store.rb +18 -12
- data/lib/mini_profiler/version.rb +2 -1
- data/lib/patches/db/riak.rb +1 -1
- data/rack-mini-profiler.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6021effb717c193c4c70b3ac7a3550fd99c9abfd19432ac0ab9db63f62b11321
|
4
|
+
data.tar.gz: 8bce19855d2f6d908339e3108201282c519b4d8ad99b8e7e90dad9d3f718c929
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c4354c194a6fa6018c57162e24e1cee85de7f296e45cd6182360b39abeb803b29a14674e2dfe93b3ba5d9bcb192814de8d091ad6b7db20d71af95e2cddcf4eb
|
7
|
+
data.tar.gz: e3c7f4da5fd5c79bfdb4c3582b50a38346d38784bfd92c6e7ce3fa41713104c74b6ad5622084d42624011ef850533c403002664f44ad7f6e1b1ac16a245c633b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 2.3.4 - 2022-02-23
|
4
|
+
|
5
|
+
- [FEATURE] Add cookie path support for subfolder sites
|
6
|
+
- [FIX] Remove deprecated uses of Redis#pipelined
|
7
|
+
|
8
|
+
## 2.3.3 - 2021-08-30
|
9
|
+
|
10
|
+
- [FEATURE] Introduce `pp=flamegraph_mode`
|
11
|
+
- [FEATURE] Richer CSP configuration options
|
12
|
+
- [FEATURE] Add support for Hotwire Turbo Drive
|
13
|
+
|
3
14
|
## 2.3.2 - 2021-04-30
|
4
15
|
|
5
16
|
- [FEATURE] Introduce `pp=async-flamegraph` for asynchronous flamegraphs
|
data/README.md
CHANGED
@@ -166,14 +166,14 @@ export RACK_MINI_PROFILER_PATCH="false"
|
|
166
166
|
|
167
167
|
### Flamegraphs
|
168
168
|
|
169
|
-
To generate [flamegraphs](http://samsaffron.com/archive/2013/03/19/flame-graphs-in-ruby-miniprofiler)
|
169
|
+
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.
|
170
170
|
|
171
|
-
|
172
|
-
* visit a page in your app with `?pp=flamegraph`
|
171
|
+
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.
|
173
172
|
|
174
|
-
|
175
|
-
|
176
|
-
|
173
|
+
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.
|
174
|
+
|
175
|
+
Note: Mini Profiler will not record SQL timings for a request if it asks for a flamegraph. The rationale behind this is to keep
|
176
|
+
Mini Profiler's methods that are responsible for generating the timings data out of the flamegraph.
|
177
177
|
|
178
178
|
### Memory Profiling
|
179
179
|
|
@@ -347,19 +347,41 @@ Single page applications built using Ember, Angular or other frameworks need som
|
|
347
347
|
On route transition always call:
|
348
348
|
|
349
349
|
```
|
350
|
-
window.MiniProfiler
|
350
|
+
if (window.MiniProfiler !== undefined) {
|
351
|
+
window.MiniProfiler.pageTransition();
|
352
|
+
}
|
351
353
|
```
|
352
354
|
|
353
355
|
This method will remove profiling information that was related to previous page and clear aggregate statistics.
|
354
356
|
|
355
357
|
#### MiniProfiler's speed badge on pages that are not generated via Rails
|
356
|
-
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)):
|
358
|
+
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)):
|
357
359
|
|
358
360
|
```html
|
359
|
-
<script
|
360
|
-
|
361
|
-
|
362
|
-
|
361
|
+
<script type="text/javascript" id="mini-profiler"
|
362
|
+
src="/mini-profiler-resources/includes.js?v=12b4b45a3c42e6e15503d7a03810ff33"
|
363
|
+
data-css-url="/mini-profiler-resources/includes.css?v=12b4b45a3c42e6e15503d7a03810ff33"
|
364
|
+
data-version="12b4b45a3c42e6e15503d7a03810ff33"
|
365
|
+
data-path="/mini-profiler-resources/"
|
366
|
+
data-horizontal-position="left"
|
367
|
+
data-vertical-position="top"
|
368
|
+
data-ids=""
|
369
|
+
data-trivial="false"
|
370
|
+
data-children="false"
|
371
|
+
data-max-traces="20"
|
372
|
+
data-controls="false"
|
373
|
+
data-total-sql-count="false"
|
374
|
+
data-authorized="true"
|
375
|
+
data-toggle-shortcut="alt+p"
|
376
|
+
data-start-hidden="false"
|
377
|
+
data-collapse-results="true"
|
378
|
+
data-html-container="body"
|
379
|
+
data-hidden-custom-fields></script>
|
380
|
+
```
|
381
|
+
|
382
|
+
See an [example of how to do this in a React useEffect](https://gist.github.com/katelovescode/01cfc2b962c165193b160fd10af6c4d5).
|
383
|
+
|
384
|
+
_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.
|
363
385
|
|
364
386
|
#### Using MiniProfiler's built in route for apps without HTML responses
|
365
387
|
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.
|
@@ -398,12 +420,14 @@ toggle_shortcut|Alt+P|Keyboard shortcut to toggle the mini_profiler's visibility
|
|
398
420
|
start_hidden|`false`|`false` to make mini_profiler visible on page load.
|
399
421
|
backtrace_threshold_ms|`0`|Minimum SQL query elapsed time before a backtrace is recorded.
|
400
422
|
flamegraph_sample_rate|`0.5`|How often to capture stack traces for flamegraphs in milliseconds.
|
423
|
+
flamegraph_mode|`:wall`|The [StackProf mode](https://github.com/tmm1/stackprof#all-options) to pass to `StackProf.run`.
|
401
424
|
base_url_path|`'/mini-profiler-resources/'`|Path for assets; added as a prefix when naming assets and sought when responding to requests.
|
425
|
+
cookie_path|`'/'`|Set-Cookie header path for profile cookie
|
402
426
|
collapse_results|`true`|If multiple timing results exist in a single page, collapse them till clicked.
|
403
427
|
max_traces_to_show|20|Maximum number of mini profiler timing blocks to show on one page
|
404
428
|
html_container|`body`|The HTML container (as a jQuery selector) to inject the mini_profiler UI into
|
405
429
|
show_total_sql_count|`false`|Displays the total number of SQL executions.
|
406
|
-
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.
|
430
|
+
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.
|
407
431
|
assets_url|`nil`|See the "Register MiniProfiler's assets in the Rails assets pipeline" section above.
|
408
432
|
snapshot_every_n_requests|`-1`|Determines how frequently snapshots are taken. See the "Snapshots Sampling" above for more details.
|
409
433
|
snapshots_limit|`1000`|Determines how many snapshots Mini Profiler is allowed to keep.
|
@@ -412,13 +436,15 @@ snapshots_transport_destination_url|`nil`|Set this config to a valid URL to enab
|
|
412
436
|
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.
|
413
437
|
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.
|
414
438
|
snapshots_transport_gzip_requests|`false`|Make the snapshots transporter gzip the requests it makes to `snapshots_transport_destination_url`.
|
439
|
+
content_security_policy_nonce|Rails: Current nonce<br>Rack: nil|Set the content security policy nonce to use when inserting MiniProfiler's script block.
|
440
|
+
enable_hotwire_turbo_drive_support| `false` | Enable support for Hotwire TurboDrive page transitions.
|
415
441
|
|
416
442
|
### Using MiniProfiler with `Rack::Deflate` middleware
|
417
443
|
|
418
444
|
If you are using `Rack::Deflate` with Rails and `rack-mini-profiler` in its default configuration,
|
419
445
|
`Rack::MiniProfiler` will be injected (as always) at position 0 in the middleware stack,
|
420
446
|
which means it will run after `Rack::Deflate` on response processing. To prevent attempting to inject
|
421
|
-
HTML in already compressed response body MiniProfiler will suppress compression by setting
|
447
|
+
HTML in already compressed response body MiniProfiler will suppress compression by setting
|
422
448
|
`identity` encoding in `Accept-Encoding` request header.
|
423
449
|
|
424
450
|
## Special query strings
|
@@ -461,20 +487,23 @@ end
|
|
461
487
|
If you want to contribute to this project, that's great, thank you! You can run the following rake task:
|
462
488
|
|
463
489
|
```
|
490
|
+
$ BUNDLE_GEMFILE=website/Gemfile bundle install
|
464
491
|
$ bundle exec rake client_dev
|
465
492
|
```
|
466
493
|
|
467
|
-
|
494
|
+
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.
|
495
|
+
|
496
|
+
Make sure to prepend `bundle exec` before any Rake tasks you run.
|
468
497
|
|
469
498
|
## Running the Specs
|
470
499
|
|
500
|
+
You need Memcached and Redis services running for the specs.
|
501
|
+
|
471
502
|
```
|
472
503
|
$ rake build
|
473
504
|
$ rake spec
|
474
505
|
```
|
475
506
|
|
476
|
-
Additionally you can also run `autotest` if you like.
|
477
|
-
|
478
507
|
## Licence
|
479
508
|
|
480
509
|
The MIT License (MIT)
|
data/lib/html/includes.css
CHANGED
@@ -69,8 +69,16 @@
|
|
69
69
|
.profiler-result .custom-fields-title,
|
70
70
|
.profiler-queries .custom-fields-title {
|
71
71
|
color: #555;
|
72
|
-
font: Helvetica, Arial, sans-serif;
|
72
|
+
font-family: Helvetica, Arial, sans-serif;
|
73
73
|
font-size: 14px; }
|
74
|
+
.mp-snapshots .ta-left,
|
75
|
+
.profiler-result .ta-left,
|
76
|
+
.profiler-queries .ta-left {
|
77
|
+
text-align: left; }
|
78
|
+
.mp-snapshots .ta-right,
|
79
|
+
.profiler-result .ta-right,
|
80
|
+
.profiler-queries .ta-right {
|
81
|
+
text-align: right; }
|
74
82
|
|
75
83
|
.profiler-result {
|
76
84
|
font-family: Helvetica, Arial, sans-serif; }
|
@@ -233,8 +241,6 @@
|
|
233
241
|
left: 0px; }
|
234
242
|
.profiler-results.profiler-top.profiler-left.profiler-no-controls .profiler-totals, .profiler-results.profiler-top.profiler-left.profiler-no-controls .profiler-result:last-child .profiler-button,
|
235
243
|
.profiler-results.profiler-top.profiler-left .profiler-controls {
|
236
|
-
-webkit-border-bottom-right-radius: 10px;
|
237
|
-
-moz-border-radius-bottomright: 10px;
|
238
244
|
border-bottom-right-radius: 10px; }
|
239
245
|
.profiler-results.profiler-top.profiler-left .profiler-button,
|
240
246
|
.profiler-results.profiler-top.profiler-left .profiler-controls {
|
@@ -243,8 +249,6 @@
|
|
243
249
|
right: 0px; }
|
244
250
|
.profiler-results.profiler-top.profiler-right.profiler-no-controls .profiler-totals, .profiler-results.profiler-top.profiler-right.profiler-no-controls .profiler-result:last-child .profiler-button,
|
245
251
|
.profiler-results.profiler-top.profiler-right .profiler-controls {
|
246
|
-
-webkit-border-bottom-left-radius: 10px;
|
247
|
-
-moz-border-radius-bottomleft: 10px;
|
248
252
|
border-bottom-left-radius: 10px; }
|
249
253
|
.profiler-results.profiler-top.profiler-right .profiler-button,
|
250
254
|
.profiler-results.profiler-top.profiler-right .profiler-controls {
|
@@ -255,8 +259,6 @@
|
|
255
259
|
left: 0px; }
|
256
260
|
.profiler-results.profiler-bottom.profiler-left.profiler-no-controls .profiler-totals, .profiler-results.profiler-bottom.profiler-left.profiler-no-controls .profiler-result:first-child .profiler-button,
|
257
261
|
.profiler-results.profiler-bottom.profiler-left .profiler-controls {
|
258
|
-
-webkit-border-top-right-radius: 10px;
|
259
|
-
-moz-border-radius-topright: 10px;
|
260
262
|
border-top-right-radius: 10px; }
|
261
263
|
.profiler-results.profiler-bottom.profiler-left .profiler-button,
|
262
264
|
.profiler-results.profiler-bottom.profiler-left .profiler-controls {
|
@@ -265,8 +267,6 @@
|
|
265
267
|
right: 0px; }
|
266
268
|
.profiler-results.profiler-bottom.profiler-right.profiler-no-controls .profiler-totals, .profiler-results.profiler-bottom.profiler-right.profiler-no-controls .profiler-result:first-child .profiler-button,
|
267
269
|
.profiler-results.profiler-bottom.profiler-right .profiler-controls {
|
268
|
-
-webkit-border-bottom-top-radius: 10px;
|
269
|
-
-moz-border-radius-topleft: 10px;
|
270
270
|
border-top-left-radius: 10px; }
|
271
271
|
.profiler-results.profiler-bottom.profiler-right .profiler-button,
|
272
272
|
.profiler-results.profiler-bottom.profiler-right .profiler-controls {
|
@@ -324,8 +324,6 @@
|
|
324
324
|
text-align: left;
|
325
325
|
line-height: 18px;
|
326
326
|
overflow: auto;
|
327
|
-
-moz-box-shadow: 0px 1px 15px #555;
|
328
|
-
-webkit-box-shadow: 0px 1px 15px #555;
|
329
327
|
box-shadow: 0px 1px 15px #555; }
|
330
328
|
.profiler-results .profiler-popup .profiler-info {
|
331
329
|
margin-bottom: 3px;
|
data/lib/html/includes.js
CHANGED
@@ -495,6 +495,19 @@ var _MiniProfiler = (function() {
|
|
495
495
|
}, 3000);
|
496
496
|
};
|
497
497
|
|
498
|
+
var onTurboBeforeVisit = function onTurboBeforeVisit(e) {
|
499
|
+
if(!e.defaultPrevented) {
|
500
|
+
window.MiniProfilerContainer = document.querySelector('body > .profiler-results')
|
501
|
+
window.MiniProfiler.pageTransition()
|
502
|
+
}
|
503
|
+
}
|
504
|
+
|
505
|
+
var onTurboLoad = function onTurboLoad(e) {
|
506
|
+
if(window.MiniProfilerContainer) {
|
507
|
+
document.body.appendChild(window.MiniProfilerContainer)
|
508
|
+
}
|
509
|
+
}
|
510
|
+
|
498
511
|
var onClickEvents = function onClickEvents(e) {
|
499
512
|
// this happens on every keystroke, and :visible is crazy expensive in IE <9
|
500
513
|
// and in this case, the display:none check is sufficient.
|
@@ -652,6 +665,11 @@ var _MiniProfiler = (function() {
|
|
652
665
|
turbolinksSkipResultsFetch
|
653
666
|
);
|
654
667
|
}
|
668
|
+
|
669
|
+
if (options.hotwireTurboDriveSupport) {
|
670
|
+
document.addEventListener("turbo:before-visit", onTurboBeforeVisit)
|
671
|
+
document.addEventListener("turbo:load", onTurboLoad)
|
672
|
+
}
|
655
673
|
};
|
656
674
|
|
657
675
|
var unbindDocumentEvents = function unbindDocumentEvents() {
|
@@ -664,6 +682,8 @@ var _MiniProfiler = (function() {
|
|
664
682
|
"turbolinks:request-start",
|
665
683
|
turbolinksSkipResultsFetch
|
666
684
|
);
|
685
|
+
document.removeEventListener("turbo:before-visit", onTurboBeforeVisit);
|
686
|
+
document.removeEventListener("turbo:load", onTurboLoad);
|
667
687
|
};
|
668
688
|
|
669
689
|
var initFullView = function initFullView() {
|
@@ -1033,6 +1053,8 @@ var _MiniProfiler = (function() {
|
|
1033
1053
|
.getAttribute("data-hidden-custom-fields")
|
1034
1054
|
.toLowerCase()
|
1035
1055
|
.split(",");
|
1056
|
+
var hotwireTurboDriveSupport = script
|
1057
|
+
.getAttribute('data-turbo-permanent') === "true";
|
1036
1058
|
return {
|
1037
1059
|
ids: ids,
|
1038
1060
|
path: path,
|
@@ -1051,7 +1073,8 @@ var _MiniProfiler = (function() {
|
|
1051
1073
|
collapseResults: collapseResults,
|
1052
1074
|
htmlContainer: htmlContainer,
|
1053
1075
|
cssUrl: cssUrl,
|
1054
|
-
hiddenCustomFields: hiddenCustomFields
|
1076
|
+
hiddenCustomFields: hiddenCustomFields,
|
1077
|
+
hotwireTurboDriveSupport: hotwireTurboDriveSupport
|
1055
1078
|
};
|
1056
1079
|
})();
|
1057
1080
|
|
data/lib/html/includes.scss
CHANGED
@@ -1,6 +1,4 @@
|
|
1
1
|
@mixin box-shadow($dx, $dy, $radius, $color) {
|
2
|
-
-moz-box-shadow: $dx $dy $radius $color;
|
3
|
-
-webkit-box-shadow: $dx $dy $radius $color;
|
4
2
|
box-shadow: $dx $dy $radius $color;
|
5
3
|
}
|
6
4
|
|
@@ -58,9 +56,11 @@ $zindex: 2147483640; // near 32bit max 2147483647
|
|
58
56
|
}
|
59
57
|
.custom-fields-title {
|
60
58
|
color: $textColor;
|
61
|
-
font: $normalFonts;
|
59
|
+
font-family: $normalFonts;
|
62
60
|
font-size: 14px;
|
63
61
|
}
|
62
|
+
.ta-left { text-align: left; }
|
63
|
+
.ta-right { text-align: right; }
|
64
64
|
}
|
65
65
|
|
66
66
|
// styles shared between popup view and full view
|
@@ -326,8 +326,6 @@ $zindex: 2147483640; // near 32bit max 2147483647
|
|
326
326
|
&.profiler-no-controls .profiler-totals,
|
327
327
|
&.profiler-no-controls .profiler-result:last-child .profiler-button,
|
328
328
|
.profiler-controls {
|
329
|
-
-webkit-border-bottom-right-radius: $radius;
|
330
|
-
-moz-border-radius-bottomright: $radius;
|
331
329
|
border-bottom-right-radius: $radius;
|
332
330
|
}
|
333
331
|
|
@@ -343,8 +341,6 @@ $zindex: 2147483640; // near 32bit max 2147483647
|
|
343
341
|
&.profiler-no-controls .profiler-totals,
|
344
342
|
&.profiler-no-controls .profiler-result:last-child .profiler-button,
|
345
343
|
.profiler-controls {
|
346
|
-
-webkit-border-bottom-left-radius: $radius;
|
347
|
-
-moz-border-radius-bottomleft: $radius;
|
348
344
|
border-bottom-left-radius: $radius;
|
349
345
|
}
|
350
346
|
|
@@ -364,8 +360,6 @@ $zindex: 2147483640; // near 32bit max 2147483647
|
|
364
360
|
&.profiler-no-controls .profiler-totals,
|
365
361
|
&.profiler-no-controls .profiler-result:first-child .profiler-button,
|
366
362
|
.profiler-controls {
|
367
|
-
-webkit-border-top-right-radius: $radius;
|
368
|
-
-moz-border-radius-topright: $radius;
|
369
363
|
border-top-right-radius: $radius;
|
370
364
|
}
|
371
365
|
|
@@ -381,8 +375,6 @@ $zindex: 2147483640; // near 32bit max 2147483647
|
|
381
375
|
&.profiler-no-controls .profiler-totals,
|
382
376
|
&.profiler-no-controls .profiler-result:first-child .profiler-button,
|
383
377
|
.profiler-controls {
|
384
|
-
-webkit-border-bottom-top-radius: $radius;
|
385
|
-
-moz-border-radius-topleft: $radius;
|
386
378
|
border-top-left-radius: $radius;
|
387
379
|
}
|
388
380
|
|
data/lib/html/includes.tmpl
CHANGED
@@ -117,8 +117,8 @@
|
|
117
117
|
<table>
|
118
118
|
<thead>
|
119
119
|
<tr>
|
120
|
-
<th
|
121
|
-
<th
|
120
|
+
<th class="ta-right">step<br />time from start<br />query type<br />duration</th>
|
121
|
+
<th class="ta-left">call stack<br />query</th>
|
122
122
|
</tr>
|
123
123
|
</thead>
|
124
124
|
<tbody>
|
data/lib/html/profile_handler.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<script async type="text/javascript" id="mini-profiler" src="{url}" data-css-url="{cssUrl}" data-version="{version}" data-path="{path}" data-current-id="{currentId}" data-ids="{ids}" data-horizontal-position="{horizontalPosition}" data-vertical-position="{verticalPosition}" data-trivial="{showTrivial}" data-children="{showChildren}" data-max-traces="{maxTracesToShow}" data-controls="{showControls}" data-total-sql-count="{showTotalSqlCount}" data-authorized="{authorized}" data-toggle-shortcut="{toggleShortcut}" data-start-hidden="{startHidden}" data-collapse-results="{collapseResults}" data-html-container="{htmlContainer}" data-hidden-custom-fields="{hiddenCustomFields}"></script>
|
1
|
+
<script async nonce="{cspNonce}" type="text/javascript" id="mini-profiler" src="{url}" data-css-url="{cssUrl}" data-version="{version}" data-path="{path}" data-current-id="{currentId}" data-ids="{ids}" data-horizontal-position="{horizontalPosition}" data-vertical-position="{verticalPosition}" data-trivial="{showTrivial}" data-children="{showChildren}" data-max-traces="{maxTracesToShow}" data-controls="{showControls}" data-total-sql-count="{showTotalSqlCount}" data-authorized="{authorized}" data-toggle-shortcut="{toggleShortcut}" data-start-hidden="{startHidden}" data-collapse-results="{collapseResults}" data-html-container="{htmlContainer}" data-hidden-custom-fields="{hiddenCustomFields}" data-turbo-permanent="{hotwireTurboDriveSupport}"></script>
|
data/lib/html/vendor.js
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
MiniProfiler.templates = {};
|
8
8
|
MiniProfiler.templates["profilerTemplate"] = function anonymous(it
|
9
9
|
) {
|
10
|
-
var out=' <div class="profiler-result"> <div class="profiler-button ';if(it.has_duplicate_sql_timings){out+='profiler-warning';}out+='"> ';if(it.has_duplicate_sql_timings){out+='<span class="profiler-nuclear">!</span>';}out+=' <span class="profiler-number"> '+( MiniProfiler.formatDuration(it.duration_milliseconds))+' <span class="profiler-unit">ms</span> </span> ';if(MiniProfiler.showTotalSqlCount()){out+=' <span class="profiler-number"> '+( it.sql_count)+' <span class="profiler-unit">sql</span> </span> ';}out+=' </div> <div class="profiler-popup"> <div class="profiler-info"> <span class="profiler-name"> '+( it.name)+' <span class="profiler-overall-duration">('+( MiniProfiler.formatDuration(it.duration_milliseconds))+' ms)</span> </span> <span class="profiler-server-time">'+( it.machine_name)+' on '+( MiniProfiler.renderDate(it.started_formatted))+'</span> </div> <div class="profiler-output"> <table class="profiler-timings"> <thead> <tr> <th>event</th> <th>duration (ms)</th> <th class="profiler-duration-with-children">with children (ms)</th> <th class="time-from-start">from start (ms)</th> ';if(it.has_sql_timings){out+=' <th colspan="2">query time (ms)</th> ';}out+=' ';var arr1=it.custom_timing_names;if(arr1){var value,i1=-1,l1=arr1.length-1;while(i1<l1){value=arr1[i1+=1];out+=' <th colspan="2">'+( value.toLowerCase() )+' (ms)</th> ';} } out+=' </tr> </thead> <tbody> '+( MiniProfiler.templates.timingTemplate({timing: it.root, page: it}) )+' </tbody> <tfoot> <tr> <td colspan="3"> ';if(!it.client_timings){out+=' '+( MiniProfiler.templates.linksTemplate({timing: it.root, page: it}) )+' ';}out+=' <a class="profiler-toggle-duration-with-children" title="toggles column with aggregate child durations">show time with children</a> <a class="profiler-snapshots-page-link" title="Go to snapshots page" href="'+( MiniProfiler.options.path )+'snapshots">snapshots</a> </td> ';if(it.has_sql_timings){out+=' <td colspan="2" class="profiler-number profiler-percent-in-sql" title="'+( MiniProfiler.getSqlTimingsCount(it.root) )+' queries spent '+( MiniProfiler.formatDuration(it.duration_milliseconds_in_sql) )+' ms of total request time"> '+( MiniProfiler.formatDuration(it.duration_milliseconds_in_sql / it.duration_milliseconds * 100) )+' <span class="profiler-unit">% in sql</span> </td> ';}out+=' ';var arr2=it.custom_timing_names;if(arr2){var value,i2=-1,l2=arr2.length-1;while(i2<l2){value=arr2[i2+=1];out+=' <td colspan="2" class="profiler-number profiler-percentage-in-sql" title="'+( it.custom_timing_stats[value].count )+' '+( value.toLowerCase() )+' invocations spent '+( MiniProfiler.formatDuration(it.custom_timing_stats[value].duration) )+' ms of total request time"> '+( MiniProfiler.formatDuration(it.custom_timing_stats[value].duration / it.duration_milliseconds * 100) )+' <span class="profiler-unit">% in '+( value.toLowerCase() )+'</span> </td> ';} } out+=' </tr> </tfoot> </table> ';if(it.client_timings){out+=' <table class="profiler-timings profiler-client-timings"> <thead> <tr> <th>client event</th> <th>duration (ms)</th> <th>from start (ms)</th> </tr> </thead> <tbody> ';var arr3=MiniProfiler.getClientTimings(it.client_timings);if(arr3){var value,i3=-1,l3=arr3.length-1;while(i3<l3){value=arr3[i3+=1];out+=' <tr class="';if(value.isTrivial){out+='profiler-trivial';}out+='"> <td class="profiler-label">'+( value.name )+'</td> <td class="profiler-duration"> ';if(value.duration >= 0){out+=' <span class="profiler-unit"></span>'+( MiniProfiler.formatDuration(value.duration) )+' ';}out+=' </td> <td class="profiler-duration time-from-start"> <span class="profiler-unit">+</span>'+( MiniProfiler.formatDuration(value.start) )+' </td> </tr> ';} } out+=' </tbody> <tfoot> <td colspan="3"> '+( MiniProfiler.templates.linksTemplate({timing: it.root, page: it}) )+' </td> </tfoot> </table> ';}out+=' ';if(it.custom_fields && Object.keys(it.custom_fields).length > 0){out+=' <p class="custom-fields-title">Snapshot custom fields</p> <table class="profiler-timings"> <tbody> ';var arr4=Object.keys(it.custom_fields);if(arr4){var key,i4=-1,l4=arr4.length-1;while(i4<l4){key=arr4[i4+=1];out+=' <tr> <td class="profiler-label">'+( key )+'</td> <td class="profiler-label">'+( it.custom_fields[key] )+'</td> </tr> ';} } out+=' </tbody> </table> ';}out+=' </div> </div> ';if(it.has_sql_timings){out+=' <div class="profiler-queries"> <table> <thead> <tr> <th
|
10
|
+
var out=' <div class="profiler-result"> <div class="profiler-button ';if(it.has_duplicate_sql_timings){out+='profiler-warning';}out+='"> ';if(it.has_duplicate_sql_timings){out+='<span class="profiler-nuclear">!</span>';}out+=' <span class="profiler-number"> '+( MiniProfiler.formatDuration(it.duration_milliseconds))+' <span class="profiler-unit">ms</span> </span> ';if(MiniProfiler.showTotalSqlCount()){out+=' <span class="profiler-number"> '+( it.sql_count)+' <span class="profiler-unit">sql</span> </span> ';}out+=' </div> <div class="profiler-popup"> <div class="profiler-info"> <span class="profiler-name"> '+( it.name)+' <span class="profiler-overall-duration">('+( MiniProfiler.formatDuration(it.duration_milliseconds))+' ms)</span> </span> <span class="profiler-server-time">'+( it.machine_name)+' on '+( MiniProfiler.renderDate(it.started_formatted))+'</span> </div> <div class="profiler-output"> <table class="profiler-timings"> <thead> <tr> <th>event</th> <th>duration (ms)</th> <th class="profiler-duration-with-children">with children (ms)</th> <th class="time-from-start">from start (ms)</th> ';if(it.has_sql_timings){out+=' <th colspan="2">query time (ms)</th> ';}out+=' ';var arr1=it.custom_timing_names;if(arr1){var value,i1=-1,l1=arr1.length-1;while(i1<l1){value=arr1[i1+=1];out+=' <th colspan="2">'+( value.toLowerCase() )+' (ms)</th> ';} } out+=' </tr> </thead> <tbody> '+( MiniProfiler.templates.timingTemplate({timing: it.root, page: it}) )+' </tbody> <tfoot> <tr> <td colspan="3"> ';if(!it.client_timings){out+=' '+( MiniProfiler.templates.linksTemplate({timing: it.root, page: it}) )+' ';}out+=' <a class="profiler-toggle-duration-with-children" title="toggles column with aggregate child durations">show time with children</a> <a class="profiler-snapshots-page-link" title="Go to snapshots page" href="'+( MiniProfiler.options.path )+'snapshots">snapshots</a> </td> ';if(it.has_sql_timings){out+=' <td colspan="2" class="profiler-number profiler-percent-in-sql" title="'+( MiniProfiler.getSqlTimingsCount(it.root) )+' queries spent '+( MiniProfiler.formatDuration(it.duration_milliseconds_in_sql) )+' ms of total request time"> '+( MiniProfiler.formatDuration(it.duration_milliseconds_in_sql / it.duration_milliseconds * 100) )+' <span class="profiler-unit">% in sql</span> </td> ';}out+=' ';var arr2=it.custom_timing_names;if(arr2){var value,i2=-1,l2=arr2.length-1;while(i2<l2){value=arr2[i2+=1];out+=' <td colspan="2" class="profiler-number profiler-percentage-in-sql" title="'+( it.custom_timing_stats[value].count )+' '+( value.toLowerCase() )+' invocations spent '+( MiniProfiler.formatDuration(it.custom_timing_stats[value].duration) )+' ms of total request time"> '+( MiniProfiler.formatDuration(it.custom_timing_stats[value].duration / it.duration_milliseconds * 100) )+' <span class="profiler-unit">% in '+( value.toLowerCase() )+'</span> </td> ';} } out+=' </tr> </tfoot> </table> ';if(it.client_timings){out+=' <table class="profiler-timings profiler-client-timings"> <thead> <tr> <th>client event</th> <th>duration (ms)</th> <th>from start (ms)</th> </tr> </thead> <tbody> ';var arr3=MiniProfiler.getClientTimings(it.client_timings);if(arr3){var value,i3=-1,l3=arr3.length-1;while(i3<l3){value=arr3[i3+=1];out+=' <tr class="';if(value.isTrivial){out+='profiler-trivial';}out+='"> <td class="profiler-label">'+( value.name )+'</td> <td class="profiler-duration"> ';if(value.duration >= 0){out+=' <span class="profiler-unit"></span>'+( MiniProfiler.formatDuration(value.duration) )+' ';}out+=' </td> <td class="profiler-duration time-from-start"> <span class="profiler-unit">+</span>'+( MiniProfiler.formatDuration(value.start) )+' </td> </tr> ';} } out+=' </tbody> <tfoot> <td colspan="3"> '+( MiniProfiler.templates.linksTemplate({timing: it.root, page: it}) )+' </td> </tfoot> </table> ';}out+=' ';if(it.custom_fields && Object.keys(it.custom_fields).length > 0){out+=' <p class="custom-fields-title">Snapshot custom fields</p> <table class="profiler-timings"> <tbody> ';var arr4=Object.keys(it.custom_fields);if(arr4){var key,i4=-1,l4=arr4.length-1;while(i4<l4){key=arr4[i4+=1];out+=' <tr> <td class="profiler-label">'+( key )+'</td> <td class="profiler-label">'+( it.custom_fields[key] )+'</td> </tr> ';} } out+=' </tbody> </table> ';}out+=' </div> </div> ';if(it.has_sql_timings){out+=' <div class="profiler-queries"> <table> <thead> <tr> <th class="ta-right">step<br />time from start<br />query type<br />duration</th> <th class="ta-left">call stack<br />query</th> </tr> </thead> <tbody> ';var arr5=MiniProfiler.getSqlTimings(it.root);if(arr5){var value,index=-1,l5=arr5.length-1;while(index<l5){value=arr5[index+=1];out+=' '+( MiniProfiler.templates.sqlGapTemplate({g: value.prevGap}) )+' '+( MiniProfiler.templates.sqlTimingTemplate({i: index, s: value}) )+' ';if(value.nextGap){out+=' '+( MiniProfiler.templates.sqlGapTemplate({g: value.nextGap}) )+' ';}out+=' ';} } out+=' </tbody> </table> <p class="profiler-trivial-gap-container"> <a class="profiler-toggle-trivial-gaps">show trivial gaps</a> </p> </div> ';}out+=' </div>';return out;
|
11
11
|
}
|
12
12
|
MiniProfiler.templates["linksTemplate"] = function anonymous(it
|
13
13
|
) {
|
@@ -74,7 +74,7 @@ module Rack
|
|
74
74
|
settings["bt"] = @backtrace_level if @backtrace_level
|
75
75
|
settings["a"] = @allowed_tokens.join("|") if @allowed_tokens && MiniProfiler.request_authorized?
|
76
76
|
settings_string = settings.map { |k, v| "#{k}=#{v}" }.join(",")
|
77
|
-
cookie = { value: settings_string, path:
|
77
|
+
cookie = { value: settings_string, path: MiniProfiler.config.cookie_path, httponly: true }
|
78
78
|
cookie[:secure] = true if @request.ssl?
|
79
79
|
cookie[:same_site] = 'Lax'
|
80
80
|
Rack::Utils.set_cookie_header!(headers, COOKIE_NAME, cookie)
|
@@ -83,7 +83,7 @@ module Rack
|
|
83
83
|
|
84
84
|
def discard_cookie!(headers)
|
85
85
|
if @cookie
|
86
|
-
Rack::Utils.delete_cookie_header!(headers, COOKIE_NAME, path:
|
86
|
+
Rack::Utils.delete_cookie_header!(headers, COOKIE_NAME, path: MiniProfiler.config.cookie_path)
|
87
87
|
end
|
88
88
|
end
|
89
89
|
|
data/lib/mini_profiler/config.rb
CHANGED
@@ -17,6 +17,7 @@ module Rack
|
|
17
17
|
new.instance_eval {
|
18
18
|
@auto_inject = true # automatically inject on every html page
|
19
19
|
@base_url_path = "/mini-profiler-resources/".dup
|
20
|
+
@cookie_path = "/".dup
|
20
21
|
@disable_caching = true
|
21
22
|
# called prior to rack chain, to ensure we are allowed to profile
|
22
23
|
@pre_authorize_cb = lambda { |env| true }
|
@@ -28,6 +29,7 @@ module Rack
|
|
28
29
|
@authorization_mode = :allow_all
|
29
30
|
@backtrace_threshold_ms = 0
|
30
31
|
@flamegraph_sample_rate = 0.5
|
32
|
+
@flamegraph_mode = :wall
|
31
33
|
@storage_failure = Proc.new do |exception|
|
32
34
|
if @logger
|
33
35
|
@logger.warn("MiniProfiler storage failure: #{exception.message}")
|
@@ -57,6 +59,7 @@ module Rack
|
|
57
59
|
@snapshots_transport_auth_key = nil
|
58
60
|
@snapshots_redact_sql_queries = true
|
59
61
|
@snapshots_transport_gzip_requests = false
|
62
|
+
@enable_hotwire_turbo_drive_support = false
|
60
63
|
|
61
64
|
self
|
62
65
|
}
|
@@ -64,11 +67,13 @@ module Rack
|
|
64
67
|
|
65
68
|
attr_accessor :authorization_mode, :auto_inject, :backtrace_ignores,
|
66
69
|
:backtrace_includes, :backtrace_remove, :backtrace_threshold_ms,
|
67
|
-
:base_url_path, :disable_caching, :enabled,
|
70
|
+
:base_url_path, :cookie_path, :disable_caching, :enabled,
|
68
71
|
:flamegraph_sample_rate, :logger, :pre_authorize_cb, :skip_paths,
|
69
72
|
:skip_schema_queries, :storage, :storage_failure, :storage_instance,
|
70
73
|
:storage_options, :user_provider, :enable_advanced_debugging_tools,
|
71
|
-
:skip_sql_param_names, :suppress_encoding, :max_sql_param_length
|
74
|
+
:skip_sql_param_names, :suppress_encoding, :max_sql_param_length,
|
75
|
+
:content_security_policy_nonce, :enable_hotwire_turbo_drive_support,
|
76
|
+
:flamegraph_mode
|
72
77
|
|
73
78
|
# ui accessors
|
74
79
|
attr_accessor :collapse_results, :max_traces_to_show, :position,
|
@@ -362,8 +362,17 @@ module Rack
|
|
362
362
|
else
|
363
363
|
sample_rate = config.flamegraph_sample_rate
|
364
364
|
end
|
365
|
+
|
366
|
+
mode_match_data = query_string.match(/flamegraph_mode=([a-zA-Z]+)/)
|
367
|
+
|
368
|
+
if mode_match_data && [:cpu, :wall, :object, :custom].include?(mode_match_data[1].to_sym)
|
369
|
+
mode = mode_match_data[1].to_sym
|
370
|
+
else
|
371
|
+
mode = config.flamegraph_mode
|
372
|
+
end
|
373
|
+
|
365
374
|
flamegraph = StackProf.run(
|
366
|
-
mode:
|
375
|
+
mode: mode,
|
367
376
|
raw: true,
|
368
377
|
aggregate: false,
|
369
378
|
interval: (sample_rate * 1000).to_i
|
@@ -630,7 +639,7 @@ module Rack
|
|
630
639
|
end
|
631
640
|
|
632
641
|
def text_result(body)
|
633
|
-
headers = { 'Content-Type' => 'text/plain' }
|
642
|
+
headers = { 'Content-Type' => 'text/plain; charset=utf-8' }
|
634
643
|
[200, headers, [body]]
|
635
644
|
end
|
636
645
|
|
@@ -643,7 +652,7 @@ module Rack
|
|
643
652
|
headers = { 'Content-Type' => 'text/html' }
|
644
653
|
body = "<html><body>
|
645
654
|
<pre style='line-height: 30px; font-size: 16px;'>
|
646
|
-
|
655
|
+
This is the help menu of the <a href='#{Rack::MiniProfiler::SOURCE_CODE_URI}'>rack-mini-profiler</a> gem, append the following to your query string for more options:
|
647
656
|
|
648
657
|
#{make_link "help", env} : display this screen
|
649
658
|
#{make_link "env", env} : display the rack environment
|
@@ -658,6 +667,7 @@ Append the following to your query string:
|
|
658
667
|
#{make_link "flamegraph", env} : a graph representing sampled activity (requires the stackprof gem).
|
659
668
|
#{make_link "async-flamegraph", env} : store flamegraph data for this page and all its AJAX requests. Flamegraph links will be available in the mini-profiler UI (requires the stackprof gem).
|
660
669
|
#{make_link "flamegraph&flamegraph_sample_rate=1", env}: creates a flamegraph with the specified sample rate (in ms). Overrides value set in config
|
670
|
+
#{make_link "flamegraph&flamegraph_mode=cpu", env}: creates a flamegraph with the specified mode (one of cpu, wall, object, or custom). Overrides value set in config
|
661
671
|
#{make_link "flamegraph_embed", env} : a graph representing sampled activity (requires the stackprof gem), embedded resources for use on an intranet.
|
662
672
|
#{make_link "trace-exceptions", env} : will return all the spots where your application raises exceptions
|
663
673
|
#{make_link "analyze-memory", env} : will perform basic memory analysis of heap
|
@@ -728,6 +738,10 @@ Append the following to your query string:
|
|
728
738
|
url = "#{path}includes.js?v=#{version}" if !url
|
729
739
|
css_url = "#{path}includes.css?v=#{version}" if !css_url
|
730
740
|
|
741
|
+
content_security_policy_nonce = @config.content_security_policy_nonce ||
|
742
|
+
env["action_dispatch.content_security_policy_nonce"] ||
|
743
|
+
env["secure_headers_content_security_policy_nonce"]
|
744
|
+
|
731
745
|
settings = {
|
732
746
|
path: path,
|
733
747
|
url: url,
|
@@ -745,7 +759,9 @@ Append the following to your query string:
|
|
745
759
|
startHidden: @config.start_hidden,
|
746
760
|
collapseResults: @config.collapse_results,
|
747
761
|
htmlContainer: @config.html_container,
|
748
|
-
hiddenCustomFields: @config.snapshot_hidden_custom_fields.join(',')
|
762
|
+
hiddenCustomFields: @config.snapshot_hidden_custom_fields.join(','),
|
763
|
+
cspNonce: content_security_policy_nonce,
|
764
|
+
hotwireTurboDriveSupport: @config.enable_hotwire_turbo_drive_support,
|
749
765
|
}
|
750
766
|
|
751
767
|
if current && current.page_struct
|
@@ -757,7 +773,7 @@ Append the following to your query string:
|
|
757
773
|
end
|
758
774
|
|
759
775
|
# TODO : cache this snippet
|
760
|
-
script =
|
776
|
+
script = ::File.read(::File.expand_path('../html/profile_handler.js', ::File.dirname(__FILE__)))
|
761
777
|
# replace the variables
|
762
778
|
settings.each do |k, v|
|
763
779
|
regex = Regexp.new("\\{#{k.to_s}\\}")
|
@@ -24,7 +24,9 @@ module Rack
|
|
24
24
|
|
25
25
|
def load(id)
|
26
26
|
raw = @client.get("#{@prefix}#{id}")
|
27
|
-
|
27
|
+
# rubocop:disable Security/MarshalLoad
|
28
|
+
Marshal.load(raw) if raw
|
29
|
+
# rubocop:enable Security/MarshalLoad
|
28
30
|
end
|
29
31
|
|
30
32
|
def set_unviewed(user, id)
|
@@ -65,14 +67,16 @@ module Rack
|
|
65
67
|
key1, key2, cycle_at = nil
|
66
68
|
|
67
69
|
if token_info
|
68
|
-
|
70
|
+
# rubocop:disable Security/MarshalLoad
|
71
|
+
key1, key2, cycle_at = Marshal.load(token_info)
|
72
|
+
# rubocop:enable Security/MarshalLoad
|
69
73
|
|
70
|
-
|
71
|
-
|
74
|
+
key1 = nil unless key1 && key1.length == 32
|
75
|
+
key2 = nil unless key2 && key2.length == 32
|
72
76
|
|
73
|
-
|
74
|
-
|
75
|
-
|
77
|
+
if key1 && cycle_at && (cycle_at > Process.clock_gettime(Process::CLOCK_MONOTONIC))
|
78
|
+
return [key1, key2].compact
|
79
|
+
end
|
76
80
|
end
|
77
81
|
|
78
82
|
timeout = Rack::MiniProfiler::AbstractStore::MAX_TOKEN_AGE
|
@@ -25,7 +25,9 @@ module Rack
|
|
25
25
|
key = prefixed_id(id)
|
26
26
|
raw = redis.get key
|
27
27
|
begin
|
28
|
-
|
28
|
+
# rubocop:disable Security/MarshalLoad
|
29
|
+
Marshal.load(raw) if raw
|
30
|
+
# rubocop:enable Security/MarshalLoad
|
29
31
|
rescue
|
30
32
|
# bad format, junk old data
|
31
33
|
redis.del key
|
@@ -177,7 +179,9 @@ unviewed_ids: #{get_unviewed_ids(user)}
|
|
177
179
|
batch = redis.mapped_hmget(hash_key, *ids).to_a
|
178
180
|
batch.map! do |id, bytes|
|
179
181
|
begin
|
182
|
+
# rubocop:disable Security/MarshalLoad
|
180
183
|
Marshal.load(bytes)
|
184
|
+
# rubocop:enable Security/MarshalLoad
|
181
185
|
rescue
|
182
186
|
corrupt_snapshots << id
|
183
187
|
nil
|
@@ -189,9 +193,9 @@ unviewed_ids: #{get_unviewed_ids(user)}
|
|
189
193
|
iteration += 1
|
190
194
|
end
|
191
195
|
if corrupt_snapshots.size > 0
|
192
|
-
redis.pipelined do
|
193
|
-
|
194
|
-
|
196
|
+
redis.pipelined do |pipeline|
|
197
|
+
pipeline.zrem(zset_key, corrupt_snapshots)
|
198
|
+
pipeline.hdel(hash_key, corrupt_snapshots)
|
195
199
|
end
|
196
200
|
end
|
197
201
|
end
|
@@ -200,11 +204,13 @@ unviewed_ids: #{get_unviewed_ids(user)}
|
|
200
204
|
hash_key = snapshot_hash_key()
|
201
205
|
bytes = redis.hget(hash_key, id)
|
202
206
|
begin
|
207
|
+
# rubocop:disable Security/MarshalLoad
|
203
208
|
Marshal.load(bytes)
|
209
|
+
# rubocop:enable Security/MarshalLoad
|
204
210
|
rescue
|
205
|
-
redis.pipelined do
|
206
|
-
|
207
|
-
|
211
|
+
redis.pipelined do |pipeline|
|
212
|
+
pipeline.zrem(snapshot_zset_key(), id)
|
213
|
+
pipeline.hdel(hash_key, id)
|
208
214
|
end
|
209
215
|
nil
|
210
216
|
end
|
@@ -253,11 +259,11 @@ unviewed_ids: #{get_unviewed_ids(user)}
|
|
253
259
|
|
254
260
|
# only used in tests
|
255
261
|
def wipe_snapshots_data
|
256
|
-
redis.
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
262
|
+
redis.del(
|
263
|
+
snapshot_counter_key(),
|
264
|
+
snapshot_zset_key(),
|
265
|
+
snapshot_hash_key(),
|
266
|
+
)
|
261
267
|
end
|
262
268
|
end
|
263
269
|
end
|
data/lib/patches/db/riak.rb
CHANGED
data/rack-mini-profiler.gemspec
CHANGED
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
|
|
24
24
|
s.required_ruby_version = '>= 2.4.0'
|
25
25
|
|
26
26
|
s.metadata = {
|
27
|
-
'source_code_uri' =>
|
27
|
+
'source_code_uri' => Rack::MiniProfiler::SOURCE_CODE_URI,
|
28
28
|
'changelog_uri' => 'https://github.com/MiniProfiler/rack-mini-profiler/blob/master/CHANGELOG.md'
|
29
29
|
}
|
30
30
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rack-mini-profiler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sam Saffron
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2022-02-22 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rack
|
@@ -354,7 +354,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
354
354
|
- !ruby/object:Gem::Version
|
355
355
|
version: '0'
|
356
356
|
requirements: []
|
357
|
-
rubygems_version: 3.
|
357
|
+
rubygems_version: 3.1.6
|
358
358
|
signing_key:
|
359
359
|
specification_version: 4
|
360
360
|
summary: Profiles loading speed for rack applications.
|