rails_performance 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/rails_performance/rails_performance_controller.rb +1 -0
- data/app/views/rails_performance/rails_performance/index.html.erb +29 -0
- data/app/views/rails_performance/rails_performance/requests.html.erb +9 -2
- data/app/views/rails_performance/stylesheets/style.css +4 -0
- data/lib/rails_performance/models/request_record.rb +6 -1
- data/lib/rails_performance/reports/base_report.rb +3 -3
- data/lib/rails_performance/reports/percentile_report.rb +14 -0
- data/lib/rails_performance/reports/requests_report.rb +4 -1
- data/lib/rails_performance/utils.rb +11 -0
- data/lib/rails_performance/version.rb +1 -1
- data/lib/rails_performance.rb +2 -2
- metadata +4 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3252836acfb4bfe1d62ace64e6c49633df64761b41f8aedf7286f41d9f11e889
|
4
|
+
data.tar.gz: 234011eabad7794de9d5fc6c367a3cd74d6db14db48907e8f0552f67229b4160
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6b3e38a15d53cf1518542972fb5d5dfcaffff218ef325d97b6bb776d987c699936fa6237de1b0f191370185dad2ecbcc52821e0d13bd0fb21b0200c063e3f51
|
7
|
+
data.tar.gz: e7e77fb6229377c2550e70813f7276041c542b2bf0fa2c2c0ef00edca95d6ab82cc9802dfde0a995f4374559f0159c5224c4b21452e74fd392d9c91e9552ae69
|
@@ -13,6 +13,7 @@ module RailsPerformance
|
|
13
13
|
|
14
14
|
@throughput_report_data = RailsPerformance::Reports::ThroughputReport.new(db).data
|
15
15
|
@response_time_report_data = RailsPerformance::Reports::ResponseTimeReport.new(db).data
|
16
|
+
@percentile_report_data = RailsPerformance::Reports::PercentileReport.new(db).data
|
16
17
|
end
|
17
18
|
|
18
19
|
def summary
|
@@ -4,6 +4,35 @@
|
|
4
4
|
<%#= link_to raw("← Back"), rails_performance_path, class: "back_link" %>
|
5
5
|
<% end %>
|
6
6
|
|
7
|
+
<div class="columns">
|
8
|
+
<div class="column">
|
9
|
+
<div class="card">
|
10
|
+
<div class="card-content">
|
11
|
+
<h2 class="subtitle is-size-1"><%= ms @percentile_report_data[:p50] %></h2>
|
12
|
+
<p class="content is-size-4">p50</p>
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
|
17
|
+
<div class="column">
|
18
|
+
<div class="card">
|
19
|
+
<div class="card-content">
|
20
|
+
<h2 class="subtitle is-size-1"><%= ms @percentile_report_data[:p95] %></h2>
|
21
|
+
<p class="content is-size-4">p95</p>
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
|
26
|
+
<div class="column">
|
27
|
+
<div class="card">
|
28
|
+
<div class="card-content">
|
29
|
+
<h2 class="subtitle is-size-1"><%= ms @percentile_report_data[:p99] %></h2>
|
30
|
+
<p class="content is-size-4">p99</p>
|
31
|
+
</div>
|
32
|
+
</div>
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
|
7
36
|
<div class="card">
|
8
37
|
<div class="card-content">
|
9
38
|
<h2 class="subtitle">Throughput Report</h2>
|
@@ -2,16 +2,17 @@
|
|
2
2
|
<div class="card-content">
|
3
3
|
<div class="columns is-vcentered">
|
4
4
|
<div class="column">
|
5
|
-
<h2 class="subtitle">Requests
|
5
|
+
<h2 class="subtitle">Requests Analysis</h2>
|
6
6
|
</div>
|
7
7
|
<div class="column is-narrow">
|
8
|
-
<%= render "export" %>
|
8
|
+
<%= render "export" %>
|
9
9
|
</div>
|
10
10
|
</div>
|
11
11
|
<table class="table is-fullwidth is-hoverable is-narrow">
|
12
12
|
<thead>
|
13
13
|
<tr>
|
14
14
|
<th colspan='3'>Name</th>
|
15
|
+
<th colspan='3' class="attention">Percentile</th>
|
15
16
|
<th colspan='3'>Average</th>
|
16
17
|
<th colspan='3'>Slowest</th>
|
17
18
|
</tr>
|
@@ -19,6 +20,9 @@
|
|
19
20
|
<th data-sort="string">Controller#action</th>
|
20
21
|
<th data-sort="string">Format</th>
|
21
22
|
<th data-sort="int">Requests</th>
|
23
|
+
<th data-sort="float" class="attention">P50</th>
|
24
|
+
<th data-sort="float" class="attention">P95</th>
|
25
|
+
<th data-sort="float" class="attention">P99</th>
|
22
26
|
<th data-sort="float">Duration</th>
|
23
27
|
<th data-sort="float">Views</th>
|
24
28
|
<th data-sort="float">DB</th>
|
@@ -35,6 +39,9 @@
|
|
35
39
|
<td><%= link_to groups[0], rails_performance.rails_performance_summary_path({controller_eq: c, action_eq: a}), remote: true %></td>
|
36
40
|
<td><%= link_to groups[1].try(:upcase), rails_performance.rails_performance_summary_path({controller_eq: c, action_eq: a, format_eq: groups[1]}), remote: true %></td>
|
37
41
|
<td><%= e[:count] %></td>
|
42
|
+
<td class="nowrap attention"><%= ms e[:p50_duration] %></td>
|
43
|
+
<td class="nowrap attention"><%= ms e[:p95_duration] %></td>
|
44
|
+
<td class="nowrap attention"><%= ms e[:p99_duration] %></td>
|
38
45
|
<td class="nowrap"><%= ms e[:duration_average] %></td>
|
39
46
|
<td class="nowrap"><%= ms e[:view_runtime_average] %></td>
|
40
47
|
<td class="nowrap"><%= ms e[:db_runtime_average] %></td>
|
@@ -30,6 +30,8 @@ module RailsPerformance
|
|
30
30
|
def self.from_db(key, value)
|
31
31
|
items = key.split("|")
|
32
32
|
|
33
|
+
parsed_value = JSON.parse(value) rescue {}
|
34
|
+
|
33
35
|
RequestRecord.new(
|
34
36
|
controller: items[2],
|
35
37
|
action: items[4],
|
@@ -40,7 +42,10 @@ module RailsPerformance
|
|
40
42
|
method: items[14],
|
41
43
|
path: items[16],
|
42
44
|
request_id: items[18],
|
43
|
-
json: value
|
45
|
+
json: value,
|
46
|
+
duration: parsed_value["duration"],
|
47
|
+
view_runtime: parsed_value["view_runtime"],
|
48
|
+
db_runtime: parsed_value["db_runtime"],
|
44
49
|
)
|
45
50
|
end
|
46
51
|
|
@@ -12,15 +12,15 @@ module RailsPerformance
|
|
12
12
|
set_defaults
|
13
13
|
end
|
14
14
|
|
15
|
+
def set_defaults
|
16
|
+
end
|
17
|
+
|
15
18
|
def collect
|
16
19
|
db.group_by(group).each_with_object([]) do |(k, v), res|
|
17
20
|
res << yield(k, v)
|
18
21
|
end
|
19
22
|
end
|
20
23
|
|
21
|
-
def set_defaults
|
22
|
-
end
|
23
|
-
|
24
24
|
def self.time_in_app_time_zone(time)
|
25
25
|
app_time_zone = ::Rails.application.config.time_zone
|
26
26
|
if app_time_zone.present?
|
@@ -0,0 +1,14 @@
|
|
1
|
+
module RailsPerformance
|
2
|
+
module Reports
|
3
|
+
class PercentileReport < BaseReport
|
4
|
+
def data
|
5
|
+
durations = db.data.collect(&:duration)
|
6
|
+
{
|
7
|
+
p50: RailsPerformance::Utils.percentile(durations, 50),
|
8
|
+
p95: RailsPerformance::Utils.percentile(durations, 95),
|
9
|
+
p99: RailsPerformance::Utils.percentile(durations, 99)
|
10
|
+
}
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -18,7 +18,10 @@ module RailsPerformance
|
|
18
18
|
db_runtime_average: db_runtimes.sum.to_f / db_runtimes.size,
|
19
19
|
duration_slowest: durations.max,
|
20
20
|
view_runtime_slowest: view_runtimes.max,
|
21
|
-
db_runtime_slowest: db_runtimes.max
|
21
|
+
db_runtime_slowest: db_runtimes.max,
|
22
|
+
p50_duration: RailsPerformance::Utils.percentile(durations, 50),
|
23
|
+
p95_duration: RailsPerformance::Utils.percentile(durations, 95),
|
24
|
+
p99_duration: RailsPerformance::Utils.percentile(durations, 99),
|
22
25
|
}
|
23
26
|
end.sort_by { |e| -e[sort].to_f } # to_f because could ne NaN or nil
|
24
27
|
end
|
@@ -49,5 +49,16 @@ module RailsPerformance
|
|
49
49
|
sorted[center]
|
50
50
|
end
|
51
51
|
end
|
52
|
+
|
53
|
+
def self.percentile(values, percentile)
|
54
|
+
return nil if values.empty?
|
55
|
+
|
56
|
+
sorted = values.sort
|
57
|
+
rank = (percentile.to_f / 100) * (sorted.size - 1)
|
58
|
+
|
59
|
+
lower = sorted[rank.floor]
|
60
|
+
upper = sorted[rank.ceil]
|
61
|
+
lower + (upper - lower) * (rank - rank.floor)
|
62
|
+
end
|
52
63
|
end
|
53
64
|
end
|
data/lib/rails_performance.rb
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
require "redis"
|
2
|
-
require "redis-namespace"
|
3
2
|
require "browser"
|
4
3
|
require "active_support/core_ext/integer"
|
5
4
|
require_relative "rails_performance/version"
|
@@ -24,6 +23,7 @@ require_relative "rails_performance/reports/recent_requests_report"
|
|
24
23
|
require_relative "rails_performance/reports/slow_requests_report"
|
25
24
|
require_relative "rails_performance/reports/breakdown_report"
|
26
25
|
require_relative "rails_performance/reports/trace_report"
|
26
|
+
require_relative "rails_performance/reports/percentile_report"
|
27
27
|
require_relative "rails_performance/extensions/trace"
|
28
28
|
require_relative "rails_performance/thread/current_request"
|
29
29
|
|
@@ -31,7 +31,7 @@ module RailsPerformance
|
|
31
31
|
FORMAT = "%Y%m%dT%H%M"
|
32
32
|
|
33
33
|
mattr_accessor :redis
|
34
|
-
@@redis = Redis
|
34
|
+
@@redis = Redis.new
|
35
35
|
|
36
36
|
mattr_accessor :duration
|
37
37
|
@@duration = 4.hours
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_performance
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Igor Kasyanchuk
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -38,20 +38,6 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: redis-namespace
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
type: :runtime
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
42
|
name: browser
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -351,6 +337,7 @@ files:
|
|
351
337
|
- lib/rails_performance/reports/base_report.rb
|
352
338
|
- lib/rails_performance/reports/breakdown_report.rb
|
353
339
|
- lib/rails_performance/reports/crash_report.rb
|
340
|
+
- lib/rails_performance/reports/percentile_report.rb
|
354
341
|
- lib/rails_performance/reports/recent_requests_report.rb
|
355
342
|
- lib/rails_performance/reports/requests_report.rb
|
356
343
|
- lib/rails_performance/reports/response_time_report.rb
|
@@ -379,7 +366,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
379
366
|
- !ruby/object:Gem::Version
|
380
367
|
version: '0'
|
381
368
|
requirements: []
|
382
|
-
rubygems_version: 3.
|
369
|
+
rubygems_version: 3.3.7
|
383
370
|
signing_key:
|
384
371
|
specification_version: 4
|
385
372
|
summary: Simple Rails Performance tracker. Alternative to the NewRelic, Datadog or
|