builder_apm 0.5.1 → 0.5.3
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 +4 -4
- data/app/views/builder_apm/js/_request_details.html.erb +2 -0
- data/app/views/builder_apm/shared/_header.html.erb +52 -50
- data/lib/builder_apm/configuration.rb +1 -1
- data/lib/builder_apm/methods/instrumenter.rb +6 -8
- data/lib/builder_apm/version.rb +1 -1
- data/lib/generators/builder_apm/templates/builder_apm_config.rb +8 -8
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d4bce6745bf405a2373b99d571aed8e87ece7c99fd6041bfc2ce8965d3583e4
|
4
|
+
data.tar.gz: '0812e1ac70543838da93f3c586a1eae82801387cf9fb1735f0636b919a92690b'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac4ea9b284511b3e4e0e6639099b178d47b30839bbdfa3b686d8a09fd551338540a76940013665ec53c0b3e7f694c06f64cf48b78696085a903e1527cdd6cd9b
|
7
|
+
data.tar.gz: '0608598b9404aea84e2d6ed6fa63bce8cf4d4b1f8454b4c77ceb69765947af7b2064742b2f95bf37179f291da3e69ab88d57bd86c11dc712fbb7aea349258d45'
|
@@ -227,6 +227,8 @@
|
|
227
227
|
summaryDiv.append($('<span>').addClass('db_duration').text('DB Duration: ' + formatDuration(request.db_runtime) + 'ms'));
|
228
228
|
summaryDiv.append($('<span>').addClass('view_duration').text('View Duration: ' + formatDuration(request.view_runtime) + 'ms'));
|
229
229
|
summaryDiv.append($('<span>').addClass('method').text('Method: ' + request.method));
|
230
|
+
summaryDiv.append($('<span>').addClass('method_tracing_duration').text('APM Method Tracking Duration: ' + formatDuration(request.method_tracing) + 'ms'));
|
231
|
+
summaryDiv.append($('<span>').addClass('db_tracing_duration').text('APM DB Tracking Duration: ' + formatDuration(request.db_tracing) + 'ms'));
|
230
232
|
summaryDiv.append($('<span>').addClass('params').text('Params: ' + JSON.stringify(request.params)));
|
231
233
|
|
232
234
|
if (diagnosis.length === 0) { // Add the AiDoctor button
|
@@ -1,54 +1,56 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<html>
|
3
|
-
<head>
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
$(document).ready(function() {
|
3
|
+
<head>
|
4
|
+
<title>BuilderApm Dashboard</title>
|
5
|
+
<%= render 'builder_apm/css/main' %>
|
6
|
+
<%= render 'builder_apm/css/dark' %>
|
7
|
+
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
8
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/dygraph/2.1.0/dygraph.min.js"></script>
|
9
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/dygraph/2.1.0/dygraph.min.css"/>
|
10
|
+
<%= render 'builder_apm/js/data_fetcher' %>
|
11
|
+
<script>
|
12
|
+
$(document).ready(function () { // Check for saved 'darkMode' in localStorage
|
13
|
+
if (localStorage.getItem('darkMode') === 'true') {
|
14
|
+
$('body').addClass('dark');
|
15
|
+
}
|
13
16
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
17
|
+
$('#clearData').on('click', function () {
|
18
|
+
localStorage.removeItem('builder_apm_requests');
|
19
|
+
localStorage.removeItem('builder_apm_cursor');
|
20
|
+
alert('Local Data Cleared');
|
21
|
+
});
|
22
|
+
$('#darkModeToggle').on('click', function () {
|
23
|
+
$('body').toggleClass('dark');
|
18
24
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
<
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
<div id="options">
|
52
|
-
<input type="checkbox" id="autoUpdate" name="autoUpdate">
|
53
|
-
<label for="autoUpdate">Auto-Update</label>
|
54
|
-
</div>
|
25
|
+
// Save the current mode in localStorage
|
26
|
+
if ($('body').hasClass('dark')) {
|
27
|
+
localStorage.setItem('darkMode', 'true');
|
28
|
+
} else {
|
29
|
+
localStorage.setItem('darkMode', 'false');
|
30
|
+
}
|
31
|
+
});
|
32
|
+
$('body').show();
|
33
|
+
});
|
34
|
+
</script>
|
35
|
+
</head>
|
36
|
+
<body>
|
37
|
+
<h1 id="header">BuilderApm Dashboard<span class="version">
|
38
|
+
(<%= BuilderApm::VERSION %>)</span>
|
39
|
+
</h1>
|
40
|
+
<nav id="navbar">
|
41
|
+
<ul>
|
42
|
+
<li><%= link_to 'Dashboard', dashboard_path, class: ("active" if current_page?(dashboard_path)) %></li>
|
43
|
+
<li><%= link_to 'Request Analysis', request_analysis_path, class: ("active" if current_page?(request_analysis_path)) %></li>
|
44
|
+
<li><%= link_to '500 Errors', errors_500_path, class: ("active" if current_page?(errors_500_path)) %></li>
|
45
|
+
<li><%= link_to 'Recent Requests', recent_requests_path, class: ("active" if current_page?(recent_requests_path)) %></li>
|
46
|
+
<li><%= link_to 'Slow Requests', slow_requests_path, class: ("active" if current_page?(slow_requests_path)) %></li>
|
47
|
+
<li><%= link_to 'N+1', n_plus_one_path, class: ("active" if current_page?(n_plus_one_path)) %></li>
|
48
|
+
<li id="dark-mode-toggle">
|
49
|
+
<button id="darkModeToggle" class="nav-button">Toggle Dark Mode</button>
|
50
|
+
</li>
|
51
|
+
</ul>
|
52
|
+
</nav>
|
53
|
+
<div id="options">
|
54
|
+
<input type="checkbox" id="autoUpdate" name="autoUpdate">
|
55
|
+
<label for="autoUpdate">Load Older data</label>
|
56
|
+
</div>
|
@@ -23,14 +23,12 @@ module BuilderApm
|
|
23
23
|
me.process_trace_point(tp) if me.valid_trace_point?(tp)
|
24
24
|
duration = (Time.now.to_f * 1000) - starttime
|
25
25
|
|
26
|
-
Thread.current[
|
26
|
+
Thread.current[:method_tracing] = (Thread.current[:method_tracing] ||= 0) + duration
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
30
|
def valid_trace_point?(tp)
|
31
|
-
|
32
|
-
|
33
|
-
# !Thread.current[:request_id].nil? && not_controller_endpoint(tp) && valid_gem_path(tp)
|
31
|
+
Thread.current[:request_id] && not_controller_endpoint(tp) && valid_gem_path(tp)
|
34
32
|
end
|
35
33
|
|
36
34
|
def not_controller_endpoint(tp)
|
@@ -42,11 +40,11 @@ module BuilderApm
|
|
42
40
|
end
|
43
41
|
|
44
42
|
def valid_gem_path(tp)
|
45
|
-
|
46
|
-
|
47
|
-
|
43
|
+
return true if tp.path.start_with?(@root_path)
|
44
|
+
return false if tp.path.start_with?(@this_gem_path)
|
45
|
+
return false if gems_to_track.empty?
|
48
46
|
|
49
|
-
|
47
|
+
gems_to_track.any? { |gem| tp.path.include?(File::SEPARATOR + gem) }
|
50
48
|
end
|
51
49
|
|
52
50
|
def process_trace_point(tp)
|
data/lib/builder_apm/version.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
BuilderApm.configure do |config|
|
2
|
-
config.redis_url = 'redis://localhost:6379/0'
|
3
|
-
config.
|
4
|
-
config.
|
5
|
-
config.
|
6
|
-
|
7
|
-
|
8
|
-
config.
|
9
|
-
end
|
2
|
+
config.redis_url = 'redis://localhost:6379/0' # optional - defaults to 'redis://localhost:6379/0'
|
3
|
+
config.api_key = ENV["OPENAI_API_KEY"] #required only if you want to use Ai Doctor
|
4
|
+
config.api = "Bravo" # optional - default to 'Bravo' - "Bravo" - internal Ai / "OpenAi" - use openai ChatGPT
|
5
|
+
config.gems_to_track = [] # optional - default to empty array []
|
6
|
+
config.enable_controller_profiler = true # optional - defaults to true
|
7
|
+
config.enable_active_record_profiler = true # optional - defaults to true
|
8
|
+
config.enable_methods_profiler = true # optional - defaults to true
|
9
|
+
end
|