Module: AppProfiler
- Includes:
- ActiveSupport::Deprecation::DeprecatedConstantAccessor
- Defined in:
- lib/app_profiler/server.rb,
lib/app_profiler.rb,
lib/app_profiler/backend.rb,
lib/app_profiler/profile.rb,
lib/app_profiler/railtie.rb,
lib/app_profiler/version.rb,
lib/app_profiler/middleware.rb,
lib/app_profiler/parameters.rb,
lib/app_profiler/yarn/command.rb,
lib/app_profiler/profile/vernier.rb,
lib/app_profiler/profile/stackprof.rb,
lib/app_profiler/request_parameters.rb,
lib/app_profiler/viewer/base_viewer.rb,
lib/app_profiler/backend/base_backend.rb,
lib/app_profiler/storage/base_storage.rb,
lib/app_profiler/storage/file_storage.rb,
lib/app_profiler/yarn/with_speedscope.rb,
lib/app_profiler/middleware/base_action.rb,
lib/app_profiler/middleware/view_action.rb,
lib/app_profiler/backend/vernier_backend.rb,
lib/app_profiler/middleware/upload_action.rb,
lib/app_profiler/viewer/speedscope_viewer.rb,
lib/app_profiler/backend/stackprof_backend.rb,
lib/app_profiler/storage/google_cloud_storage.rb,
lib/app_profiler/viewer/speedscope_remote_viewer.rb,
lib/app_profiler/viewer/speedscope_remote_viewer/middleware.rb,
lib/app_profiler/viewer/speedscope_remote_viewer/base_middleware.rb
Overview
This module provides a means to start a golang-inspired profile server it is implemented using stdlib and Rack to avoid additional dependencies
Defined Under Namespace
Modules: Backend, Server, Storage, Viewer, Yarn
Classes: BackendError, BaseProfile, ConfigurationError, Middleware, Parameters, Railtie, RequestParameters, StackprofProfile, VernierProfile
Constant Summary
collapse
- DefaultProfileFormatter =
proc do |upload|
"#{AppProfiler.speedscope_host}#profileURL=#{upload.url}"
end
- DefaultProfilePrefix =
proc do
Time.zone.now.strftime("%Y%m%d-%H%M%S")
end
- VERSION =
"0.2.1"
Class Method Summary
collapse
Class Method Details
.after_process_queue=(handler) ⇒ Object
170
171
172
173
174
175
176
|
# File 'lib/app_profiler.rb', line 170
def after_process_queue=(handler)
if handler && (!handler.is_a?(Proc) || (handler.lambda? && handler.arity != 2))
raise ArgumentError, "after_process_queue must be a proc or a lambda that accepts two arguments"
end
@@after_process_queue = handler
end
|
.backend ⇒ Object
127
128
129
130
|
# File 'lib/app_profiler.rb', line 127
def backend
@profiler_backend ||= Backend::StackprofBackend
@profiler_backend.name
end
|
.backend=(new_backend) ⇒ Object
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# File 'lib/app_profiler.rb', line 100
def backend=(new_backend)
return if new_backend == backend
new_profiler_backend = backend_for(new_backend)
if running?
raise BackendError,
"cannot change backend to #{new_backend} while #{backend} backend is running"
end
return if @profiler_backend == new_profiler_backend
clear
@profiler_backend = new_profiler_backend
end
|
.backend_for(backend_name) ⇒ Object
116
117
118
119
120
121
122
123
124
125
|
# File 'lib/app_profiler.rb', line 116
def backend_for(backend_name)
if vernier_supported? &&
backend_name == AppProfiler::Backend::VernierBackend.name
AppProfiler::Backend::VernierBackend
elsif backend_name == AppProfiler::Backend::StackprofBackend.name
AppProfiler::Backend::StackprofBackend
else
raise BackendError, "unknown backend #{backend_name}"
end
end
|
146
147
148
|
# File 'lib/app_profiler.rb', line 146
def
||= .dup << "-Data"
end
|
.profile_enqueue_failure=(handler) ⇒ Object
162
163
164
165
166
167
168
|
# File 'lib/app_profiler.rb', line 162
def profile_enqueue_failure=(handler)
if handler && (!handler.is_a?(Proc) || (handler.lambda? && handler.arity != 1))
raise ArgumentError, "profile_enqueue_failure must be a proc or a lambda that accepts one argument"
end
@@profile_enqueue_failure = handler
end
|
.profile_enqueue_success=(handler) ⇒ Object
154
155
156
157
158
159
160
|
# File 'lib/app_profiler.rb', line 154
def profile_enqueue_success=(handler)
if handler && (!handler.is_a?(Proc) || (handler.lambda? && handler.arity != 0))
raise ArgumentError, "profile_enqueue_success must be proc or a lambda that accepts no argument"
end
@@profile_enqueue_success = handler
end
|
136
137
138
139
140
|
# File 'lib/app_profiler.rb', line 136
def ()
=
= nil
= nil
end
|
.profile_url(upload) ⇒ Object
178
179
180
181
182
|
# File 'lib/app_profiler.rb', line 178
def profile_url(upload)
return unless AppProfiler.profile_url_formatter
AppProfiler.profile_url_formatter.call(upload)
end
|
150
151
152
|
# File 'lib/app_profiler.rb', line 150
def profile_url_formatter=(block)
@@profile_url_formatter = block
end
|
.profiler ⇒ Object
95
96
97
98
|
# File 'lib/app_profiler.rb', line 95
def profiler
backend
@backend ||= @profiler_backend.new
end
|
142
143
144
|
# File 'lib/app_profiler.rb', line 142
def
||= .upcase.tr("-", "_").prepend("HTTP_")
end
|
.run(*args, backend: nil, **kwargs, &block) ⇒ Object
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# File 'lib/app_profiler.rb', line 67
def run(*args, backend: nil, **kwargs, &block)
orig_backend = self.backend
begin
self.backend = backend if backend
profiler.run(*args, **kwargs, &block)
rescue BackendError => e
logger.error(
"[AppProfiler.run] exception #{e} configuring backend #{backend}: #{e.message}",
)
yield
end
ensure
AppProfiler.backend = orig_backend
end
|
.running? ⇒ Boolean
91
92
93
|
# File 'lib/app_profiler.rb', line 91
def running?
@backend&.running?
end
|
.start(*args) ⇒ Object
82
83
84
|
# File 'lib/app_profiler.rb', line 82
def start(*args)
profiler.start(*args)
end
|
.stop ⇒ Object
86
87
88
89
|
# File 'lib/app_profiler.rb', line 86
def stop
profiler.stop
profiler.results
end
|
.vernier_supported? ⇒ Boolean
132
133
134
|
# File 'lib/app_profiler.rb', line 132
def vernier_supported?
defined?(AppProfiler::Backend::VernierBackend.name)
end
|