Sha256: 7a983d80732cf51fcda42619884f5ac95e678fe8745711b705ed25ea28b25364
Contents?: true
Size: 1.34 KB
Versions: 3
Compression:
Stored size: 1.34 KB
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details. require 'yaml' require 'conditional_vendored_metric_parser' require 'conditional_vendored_dependency_detection' require 'new_relic/local_environment' require 'new_relic/language_support' require 'new_relic/helper' require 'new_relic/json_wrapper' require 'singleton' require 'erb' require 'socket' require 'net/https' require 'logger' require 'new_relic/control/frameworks' require 'new_relic/control/profiling' require 'new_relic/control/server_methods' require 'new_relic/control/instrumentation' require 'new_relic/control/class_methods' require 'new_relic/control/instance_methods' require 'new_relic/agent' require 'new_relic/delayed_job_injection' module NewRelic # The Control is a singleton responsible for the startup and # initialization sequence. The initializer uses a LocalEnvironment to # detect the framework and instantiates the framework specific # subclass. # # The Control also implements some of the public API for the agent. # class Control # done in a subfile for load order purposes # extend ClassMethods # include InstanceMethods # include Profiling # include Configuration # include ServerMethods # include Instrumentation end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
newrelic_rpm-3.7.2.195 | lib/new_relic/control.rb |
newrelic_rpm-3.7.2.192 | lib/new_relic/control.rb |
newrelic_rpm-3.7.2.190.beta | lib/new_relic/control.rb |