Module: Appsignal::Probes
- Defined in:
- lib/appsignal/probes.rb,
lib/appsignal/probes/gvl.rb,
lib/appsignal/probes/mri.rb,
lib/appsignal/probes/helpers.rb,
lib/appsignal/probes/sidekiq.rb
Class Method Summary collapse
-
.register(name, probe) ⇒ void
Register a new minutely probe.
- .start ⇒ void private
-
.started? ⇒ Boolean?
Returns if the probes thread has been started.
-
.stop ⇒ void
Stop the minutely probes mechanism.
-
.unregister(name) ⇒ void
Unregister a probe that’s registered with Probes.register.
Class Method Details
.register(name, probe) ⇒ void
This method returns an undefined value.
Register a new minutely probe.
Supported probe types are:
-
Lambda - A lambda is an object that listens to a ‘call` method call. This `call` method is called every minute.
-
Class - A class object is an object that listens to a ‘new` and `call` method call. The `new` method is called when the minutely probe thread is started to initialize all probes. This allows probes to load dependencies once beforehand. Their `call` method is called every minute.
-
Class instance - A class instance object is an object that listens to a ‘call` method call. The `call` method is called every minute.
137 138 139 140 141 |
# File 'lib/appsignal/probes.rb', line 137 def register(name, probe) probes.internal_register(name, probe) initialize_probe(name, probe) if started? end |
.start ⇒ void
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
This method returns an undefined value.
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 |
# File 'lib/appsignal/probes.rb', line 165 def start stop @started = true @thread = Thread.new do # Advise multi-threaded app servers to ignore this thread # for the purposes of fork safety warnings if Thread.current.respond_to?(:thread_variable_set) Thread.current.thread_variable_set(:fork_safe, true) end sleep initial_wait_time initialize_probes loop do start_time = Time.now logger = Appsignal.internal_logger mutex.synchronize do logger.debug("Gathering minutely metrics with #{probe_instances.count} probes") probe_instances.each do |name, probe| logger.debug("Gathering minutely metrics with '#{name}' probe") probe.call rescue => ex logger.error( "Error in minutely probe '#{name}': #{ex.class}: #{ex.}\n" \ "#{ex.backtrace.join("\n")}" ) end end end_time = Time.now duration = end_time - start_time if duration >= ITERATION_IN_SECONDS logger.error( "The minutely probes took more than 60 seconds. " \ "The probes should not take this long as metrics will not " \ "be accurately reported." ) end sleep wait_time end end end |
.started? ⇒ Boolean?
Returns if the probes thread has been started. If the value is false or nil, it has not been started yet.
210 211 212 |
# File 'lib/appsignal/probes.rb', line 210 def started? @started end |
.stop ⇒ void
This method returns an undefined value.
Stop the minutely probes mechanism. Stop the thread and clear all probe instances.
218 219 220 221 222 |
# File 'lib/appsignal/probes.rb', line 218 def stop defined?(@thread) && @thread.kill @started = false probe_instances.clear end |
.unregister(name) ⇒ void
This method returns an undefined value.
Unregister a probe that’s registered with register. Can also be used to unregister automatically registered probes by the gem.
157 158 159 160 161 |
# File 'lib/appsignal/probes.rb', line 157 def unregister(name) probes.unregister(name) uninitialize_probe(name) end |