Method: Honeybadger::Config#cluster_collection?
- Defined in:
- lib/honeybadger/config.rb
permalink #cluster_collection?(name) ⇒ Boolean
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.
295 296 297 298 299 |
# File 'lib/honeybadger/config.rb', line 295 def cluster_collection?(name) return false unless insights_enabled? return true if self[:"#{name}.insights.cluster_collection"].nil? !!self[:"#{name}.insights.cluster_collection"] end |