builder_apm 0.3.1 → 0.3.2
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c694ae0d5543f44bb905abf9456e8768e3ae547bd99066fe0012f12e11aa89f
|
|
4
|
+
data.tar.gz: 1df6c105dbe848d600f1ae5197a64c2fe2816584072d4fb82ee69850dc6f61d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21f191411ce9106d7db006b92dc12ffd72efa414f62730f42bb26cdacc77ac0f841d9cabb2be482128ce3577ea9f67f5eadf8421c7ed6d0a826ab924cb40ef35
|
|
7
|
+
data.tar.gz: fcc1962c887a01e84cca5b1a7afa1deced47ef7ffcadefe2d26db6126f56c9bc99b7d0b52b9e65296ccf5a4af01bd6c131d043d50c370990364c37d6e0733637
|
|
@@ -47,13 +47,14 @@ $(document).ready(function() {
|
|
|
47
47
|
$('<td>').append(renderDuration(item['view_runtime'])).appendTo(row);
|
|
48
48
|
// Action column
|
|
49
49
|
var actionTd = $('<td>');
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
50
|
+
|
|
51
|
+
if(item.stack && item.stack.length > 0) {
|
|
52
|
+
|
|
53
|
+
var actionLink = $('<a>').text('Details');
|
|
54
|
+
actionLink.attr('href', '<%= request_details_path %>?request_id=' + item['request_id']);
|
|
55
|
+
actionLink.attr('target', '_blank');
|
|
56
|
+
actionLink.appendTo(actionTd);
|
|
57
|
+
}
|
|
57
58
|
actionTd.appendTo(row);
|
|
58
59
|
|
|
59
60
|
// Append the row to the table body
|
|
@@ -48,13 +48,14 @@ $(document).ready(function() {
|
|
|
48
48
|
$('<td>').append(renderDuration(item['view_runtime'])).appendTo(row);
|
|
49
49
|
// Action column
|
|
50
50
|
var actionTd = $('<td>');
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
51
|
+
|
|
52
|
+
if(item.stack && item.stack.length > 0) {
|
|
53
|
+
|
|
54
|
+
var actionLink = $('<a>').text('Details');
|
|
55
|
+
actionLink.attr('href', '<%= request_details_path %>?request_id=' + item['request_id']);
|
|
56
|
+
actionLink.attr('target', '_blank');
|
|
57
|
+
actionLink.appendTo(actionTd);
|
|
58
|
+
}
|
|
58
59
|
actionTd.appendTo(row);
|
|
59
60
|
|
|
60
61
|
// Append the row to the table body
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/builder_apm/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: builder_apm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paul Ketelle
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-07-
|
|
11
|
+
date: 2023-07-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -94,6 +94,9 @@ files:
|
|
|
94
94
|
- app/views/builder_apm/wip/index.html.erb
|
|
95
95
|
- bin/console
|
|
96
96
|
- bin/setup
|
|
97
|
+
- builder_apm-0.2.5.gem
|
|
98
|
+
- builder_apm-0.3.0.gem
|
|
99
|
+
- builder_apm-0.3.1.gem
|
|
97
100
|
- builder_apm.gemspec
|
|
98
101
|
- config/routes.rb
|
|
99
102
|
- lib/builder_apm.rb
|
|
@@ -110,11 +113,11 @@ files:
|
|
|
110
113
|
- lib/generators/builder_apm/templates/builder_apm_config.rb
|
|
111
114
|
- lib/generators/builder_apm/templates/create_builder_apm_requests.rb
|
|
112
115
|
- lib/generators/builder_apm/templates/create_builder_apm_sql_queries.rb
|
|
113
|
-
homepage:
|
|
116
|
+
homepage:
|
|
114
117
|
licenses:
|
|
115
118
|
- MIT
|
|
116
119
|
metadata: {}
|
|
117
|
-
post_install_message:
|
|
120
|
+
post_install_message:
|
|
118
121
|
rdoc_options: []
|
|
119
122
|
require_paths:
|
|
120
123
|
- lib
|
|
@@ -129,8 +132,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
129
132
|
- !ruby/object:Gem::Version
|
|
130
133
|
version: '0'
|
|
131
134
|
requirements: []
|
|
132
|
-
rubygems_version: 3.
|
|
133
|
-
signing_key:
|
|
135
|
+
rubygems_version: 3.0.9
|
|
136
|
+
signing_key:
|
|
134
137
|
specification_version: 4
|
|
135
138
|
summary: Write a short summary, because RubyGems requires one.
|
|
136
139
|
test_files: []
|