Skip to content

Instantly share code, notes, and snippets.

@jkndrkn
Created April 28, 2011 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkndrkn/946784 to your computer and use it in GitHub Desktop.
Save jkndrkn/946784 to your computer and use it in GitHub Desktop.
ops@leadtune.com newrelic_agent.log after adding add_transaction_method
#1
require 'newrelic_rpm'
require 'new_relic/control'
require 'new_relic/agent/instrumentation/controller_instrumentation'
class PayloadRanker
include NewRelic::Agent::Instrumentation::ControllerInstrumentation
def initialize(payload)
@payload = payload
NewRelic::Agent.manual_start :agent_enabled => true
ObjectSpace.define_finalizer(self, proc {|_| NewRelic::Agent.shutdown})
end
def rank
ranking = Appraiser.value(@payload[:appraiser_code], @payload[:potential_offer], @payload[:decision_config])
ranking.factor_values = Prominator.populated_decision_factors(@payload[:decision_factors], @payload[:potential_offer][:potential_event])
ranking
end
add_transaction_tracer :rank, :category => :task
end
#2
class RevenueAppraiser < Appraiser
include NewRelic::Agent::Instrumentation::ControllerInstrumentation
acts_as_logger :group => 'Stats', :name => 'RA'
def initialize(options = { })
NewRelic::Agent.manual_start :agent_enabled => true
ObjectSpace.define_finalizer(self, proc {|_| NewRelic::Agent.shutdown})
super(options)
end
def predictor_probabilities(predictor, potential_event, predictor_options)
predictor.probabilities(potential_event, predictor_options)
end
add_transaction_tracer :predictor_probabilities, :category => :task
def value(potential_offer, return_ranking = false, decision_config = DecisionConfiguration.new({}))
potential_event = potential_offer[:potential_event]
predictor_options = decision_config[:predictor_options] || Hash.new
predictor = predictor_options[:predictor] == "leadtune" ? LeadtunePredictor : @predictor
probabilities = predictor_probabilities(predictor, potential_event, predictor_options)
result, variables = revenue_computation(potential_event, potential_offer, probabilities, decision_config
# ...
[04/28/11 11:30:01 -0500 example.com (14623)] INFO : Dispatcher: passenger
[04/28/11 11:30:01 -0500 example.com (14623)] INFO : Application: Market (Staging)
[04/28/11 11:30:01 -0500 example.com (14623)] INFO : Connecting workers after forking.
[04/28/11 11:30:01 -0500 example.com (14623)] INFO : New Relic RPM Agent 2.14.1 Initialized: pid = 14623
[04/28/11 11:30:01 -0500 example.com (14623)] INFO : Agent Log found in /var/www/market_staging/releases/20110428160745/log/newrelic_agent.log
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/net.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/rack.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/acts_as_solr.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/queue_time.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/sequel.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/active_merchant.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/authlogic.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/controller_instrumentation.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/sunspot.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/sinatra.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/data_mapper.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/memcache.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/metric_frame.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/rails/errors.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/rails/action_web_service.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/rails/action_controller.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Processing instrumentation file '/var/www/market_staging/shared/vendor/ruby/1.8/gems/newrelic_rpm-2.14.1/lib/new_relic/agent/instrumentation/rails/active_record_instrumentation.rb'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Installing Passenger event hooks.
[04/28/11 11:30:01 -0500 example.com (14623)] WARN : An older version of Phusion Passenger has been detected. We recommend using at least release 2.1.1.
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Traced method: class = ActionView::RenderablePartial,method = render_partial, metric = 'View/#{path[%r{^(/.*/)?(.*)$},2]}/Partial'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Traced method: class = ActionView::Template,method = render, metric = 'View/#{path[%r{^(/.*/)?(.*)$},2]}/Rendering'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Traced method: class = ,method = find_by_sql, metric = 'ActiveRecord/#{self.name}/find_by_sql'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Traced method: class = ,method = transaction, metric = 'ActiveRecord/#{self.name}/transaction'
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Finished instrumentation
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Adding harvest-time sampler: #<NewRelic::Agent::Samplers::CpuSampler:0x2aaab179c698 @id=:cpu, @last_stime=4.51, @stats_engine=#<NewRelic::Agent::StatsEngine:0x2aaab1874098 @transaction_sampler=#<NewRelic::Agent::TransactionSampler:0x2aaab18725e0 @samples_lock=#<Mutex:0x2aaab18724a0>, @max_samples=100, @stack_trace_threshold=0.5, @harvest_count=0, @segment_limit=4000, @samples=[], @random_sample=nil>, @periodic_samplers=[], @harvest_samplers=[#<NewRelic::Agent::Samplers::CpuSampler:0x2aaab179c698 ...>]>, @last_utime=7.23, @last_time=Thu Apr 28 11:30:01.736367 -0500 2011>
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Registered NewRelic::Agent::Samplers::CpuSampler for harvest time sampling
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Using /proc/14623/status for reading process memory.
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Adding harvest-time sampler: #<NewRelic::Agent::Samplers::MemorySampler:0x2aaab179c710 @id=:memory, @sampler=proc status file sampler: /proc/14623/status, @stats_engine=#<NewRelic::Agent::StatsEngine:0x2aaab1874098 @transaction_sampler=#<NewRelic::Agent::TransactionSampler:0x2aaab18725e0 @samples_lock=#<Mutex:0x2aaab18724a0>, @max_samples=100, @stack_trace_threshold=0.5, @harvest_count=0, @segment_limit=4000, @samples=[], @random_sample=nil>, @periodic_samplers=[], @harvest_samplers=[#<NewRelic::Agent::Samplers::CpuSampler:0x2aaab179c698 @id=:cpu, @last_stime=4.51, @stats_engine=#<NewRelic::Agent::StatsEngine:0x2aaab1874098 ...>, @last_utime=7.23, @last_time=Thu Apr 28 11:30:01.736367 -0500 2011>, #<NewRelic::Agent::Samplers::MemorySampler:0x2aaab179c710 ...>]>>
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : Registered NewRelic::Agent::Samplers::MemorySampler for harvest time sampling
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : NewRelic::Agent::Samplers::ObjectSampler not supported on this platform.
[04/28/11 11:30:01 -0500 example.com (14623)] DEBUG : NewRelic::Agent::Samplers::DelayedJobLockSampler not supported on this platform.
[04/28/11 11:30:04 -0500 example.com (14721)] INFO : Starting the worker thread in 14721 after forking.
[04/28/11 11:30:04 -0500 example.com (14721)] DEBUG : Creating RPM worker thread.
[04/28/11 11:30:04 -0500 example.com (14723)] INFO : Starting the worker thread in 14723 after forking.
[04/28/11 11:30:04 -0500 example.com (14723)] DEBUG : Creating RPM worker thread.
[04/28/11 11:30:05 -0500 example.com (14725)] INFO : Starting the worker thread in 14725 after forking.
[04/28/11 11:30:05 -0500 example.com (14725)] DEBUG : Creating RPM worker thread.
[04/28/11 11:30:05 -0500 example.com (14728)] INFO : Starting the worker thread in 14728 after forking.
[04/28/11 11:30:05 -0500 example.com (14728)] DEBUG : Creating RPM worker thread.
[04/28/11 11:30:05 -0500 example.com (14730)] INFO : Starting the worker thread in 14730 after forking.
[04/28/11 11:30:05 -0500 example.com (14730)] DEBUG : Creating RPM worker thread.
[04/28/11 11:30:05 -0500 example.com (14732)] INFO : Starting the worker thread in 14732 after forking.
[04/28/11 11:30:05 -0500 example.com (14732)] DEBUG : Creating RPM worker thread.
[04/28/11 11:30:05 -0500 example.com (14734)] INFO : Starting the worker thread in 14734 after forking.
[04/28/11 11:30:05 -0500 example.com (14734)] DEBUG : Creating RPM worker thread.
[04/28/11 11:30:05 -0500 example.com (14736)] INFO : Starting the worker thread in 14736 after forking.
[04/28/11 11:30:05 -0500 example.com (14736)] DEBUG : Creating RPM worker thread.
[04/28/11 11:30:14 -0500 example.com (14721)] DEBUG : Connecting Process to RPM: Rails: /var/www/market_staging/current
[04/28/11 11:30:14 -0500 example.com (14721)] INFO : Resolved collector.newrelic.com to 204.93.223.153
[04/28/11 11:30:14 -0500 example.com (14721)] DEBUG : Connect to collector.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/get_redirect_host
[04/28/11 11:30:14 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.153:80
[04/28/11 11:30:14 -0500 example.com (14723)] DEBUG : Connecting Process to RPM: Rails: /var/www/market_staging/current
[04/28/11 11:30:14 -0500 example.com (14723)] INFO : Resolved collector.newrelic.com to 204.93.223.153
[04/28/11 11:30:14 -0500 example.com (14723)] DEBUG : Connect to collector.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/get_redirect_host
[04/28/11 11:30:14 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.153:80
[04/28/11 11:30:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14721)] INFO : Resolved collector-4.newrelic.com to 204.93.223.138
[04/28/11 11:30:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/connect
[04/28/11 11:30:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Connecting Process to RPM: Rails: /var/www/market_staging/current
[04/28/11 11:30:15 -0500 example.com (14725)] INFO : Resolved collector.newrelic.com to 204.93.223.153
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Connect to collector.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/get_redirect_host
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.153:80
[04/28/11 11:30:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14723)] INFO : Resolved collector-4.newrelic.com to 204.93.223.138
[04/28/11 11:30:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/connect
[04/28/11 11:30:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14721)] DEBUG : Agent Run = 103632908.
[04/28/11 11:30:15 -0500 example.com (14721)] DEBUG : Connection data = {"apdex_t"=>0.5, "data_report_period"=>60, "sampling_rate"=>0, "collect_errors"=>false, "collect_traces"=>false, "url_rules"=>[#<NewRelic::UrlRule:0x2aaab149f378 @eval_order=1, @each_segment=true, @replacement="*", @match_expression="^[0-9][0-9a-f_,.-]*$", @terminate_chain=false, @ignore=false, @replace_all=false>, #<NewRelic::UrlRule:0x2aaab149f170 @eval_order=0, @each_segment=false, @replacement="/*.\\1", @match_expression=".*\\.(css|gif|ico|jpe?g|js|png|swf)$", @terminate_chain=true, @ignore=false, @replace_all=false>], "agent_run_id"=>103632908}
[04/28/11 11:30:15 -0500 example.com (14721)] DEBUG : Transaction traces will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14721)] DEBUG : Errors will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14721)] INFO : Reporting performance data every 60 seconds.
[04/28/11 11:30:15 -0500 example.com (14721)] DEBUG : Running worker loop
[04/28/11 11:30:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:30:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Connecting Process to RPM: Rails: /var/www/market_staging/current
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14725)] INFO : Resolved collector-4.newrelic.com to 204.93.223.138
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/connect
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14723)] DEBUG : Agent Run = 103632909.
[04/28/11 11:30:15 -0500 example.com (14723)] DEBUG : Connection data = {"apdex_t"=>0.5, "data_report_period"=>60, "sampling_rate"=>0, "collect_errors"=>false, "collect_traces"=>false, "url_rules"=>[#<NewRelic::UrlRule:0x2aaab1480180 @eval_order=1, @each_segment=true, @replacement="*", @match_expression="^[0-9][0-9a-f_,.-]*$", @terminate_chain=false, @ignore=false, @replace_all=false>, #<NewRelic::UrlRule:0x2aaab147ff00 @eval_order=0, @each_segment=false, @replacement="/*.\\1", @match_expression=".*\\.(css|gif|ico|jpe?g|js|png|swf)$", @terminate_chain=true, @ignore=false, @replace_all=false>], "agent_run_id"=>103632909}
[04/28/11 11:30:15 -0500 example.com (14723)] DEBUG : Transaction traces will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14723)] DEBUG : Errors will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14723)] INFO : Reporting performance data every 60 seconds.
[04/28/11 11:30:15 -0500 example.com (14723)] DEBUG : Running worker loop
[04/28/11 11:30:15 -0500 example.com (14728)] INFO : Resolved collector.newrelic.com to 204.93.223.153
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Connect to collector.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/get_redirect_host
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.153:80
[04/28/11 11:30:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:30:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:30:15 -0500 2011: sent 21 timeslices (103632908) in 0.095243 seconds
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Connecting Process to RPM: Rails: /var/www/market_staging/current
[04/28/11 11:30:15 -0500 example.com (14730)] INFO : Resolved collector.newrelic.com to 204.93.223.153
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Connect to collector.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/get_redirect_host
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.153:80
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Agent Run = 103632910.
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Connection data = {"apdex_t"=>0.5, "data_report_period"=>60, "sampling_rate"=>0, "collect_errors"=>false, "collect_traces"=>false, "url_rules"=>[#<NewRelic::UrlRule:0x2aaab147fe60 @eval_order=1, @each_segment=true, @replacement="*", @match_expression="^[0-9][0-9a-f_,.-]*$", @terminate_chain=false, @ignore=false, @replace_all=false>, #<NewRelic::UrlRule:0x2aaab147fc30 @eval_order=0, @each_segment=false, @replacement="/*.\\1", @match_expression=".*\\.(css|gif|ico|jpe?g|js|png|swf)$", @terminate_chain=true, @ignore=false, @replace_all=false>], "agent_run_id"=>103632910}
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Transaction traces will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Errors will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14725)] INFO : Reporting performance data every 60 seconds.
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Running worker loop
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:30:15 -0500 2011: sent 21 timeslices (103632909) in 0.099409 seconds
[04/28/11 11:30:15 -0500 example.com (14728)] INFO : Resolved collector-4.newrelic.com to 204.93.223.138
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/connect
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14732)] DEBUG : Connecting Process to RPM: Rails: /var/www/market_staging/current
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14732)] INFO : Resolved collector.newrelic.com to 204.93.223.153
[04/28/11 11:30:15 -0500 example.com (14732)] DEBUG : Connect to collector.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/get_redirect_host
[04/28/11 11:30:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.153:80
[04/28/11 11:30:15 -0500 example.com (14730)] INFO : Resolved collector-4.newrelic.com to 204.93.223.138
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/connect
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:30:15 -0500 2011: sent 22 timeslices (103632910) in 0.097263 seconds
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Connecting Process to RPM: Rails: /var/www/market_staging/current
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Agent Run = 103632911.
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Connection data = {"apdex_t"=>0.5, "data_report_period"=>60, "sampling_rate"=>0, "collect_errors"=>false, "collect_traces"=>false, "url_rules"=>[#<NewRelic::UrlRule:0x2aaab149eb08 @eval_order=1, @each_segment=true, @replacement="*", @match_expression="^[0-9][0-9a-f_,.-]*$", @terminate_chain=false, @ignore=false, @replace_all=false>, #<NewRelic::UrlRule:0x2aaab149e928 @eval_order=0, @each_segment=false, @replacement="/*.\\1", @match_expression=".*\\.(css|gif|ico|jpe?g|js|png|swf)$", @terminate_chain=true, @ignore=false, @replace_all=false>], "agent_run_id"=>103632911}
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Transaction traces will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Errors will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14728)] INFO : Reporting performance data every 60 seconds.
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Running worker loop
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14734)] INFO : Resolved collector.newrelic.com to 204.93.223.153
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Connect to collector.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/get_redirect_host
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.153:80
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Connecting Process to RPM: Rails: /var/www/market_staging/current
[04/28/11 11:30:15 -0500 example.com (14736)] INFO : Resolved collector.newrelic.com to 204.93.223.153
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Connect to collector.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/get_redirect_host
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.153:80
[04/28/11 11:30:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14732)] INFO : Resolved collector-4.newrelic.com to 204.93.223.138
[04/28/11 11:30:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/connect
[04/28/11 11:30:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Agent Run = 103632913.
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Connection data = {"apdex_t"=>0.5, "data_report_period"=>60, "sampling_rate"=>0, "collect_errors"=>false, "collect_traces"=>false, "url_rules"=>[#<NewRelic::UrlRule:0x2aaab147f9d8 @eval_order=1, @each_segment=true, @replacement="*", @match_expression="^[0-9][0-9a-f_,.-]*$", @terminate_chain=false, @ignore=false, @replace_all=false>, #<NewRelic::UrlRule:0x2aaab147f780 @eval_order=0, @each_segment=false, @replacement="/*.\\1", @match_expression=".*\\.(css|gif|ico|jpe?g|js|png|swf)$", @terminate_chain=true, @ignore=false, @replace_all=false>], "agent_run_id"=>103632913}
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Transaction traces will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Errors will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14730)] INFO : Reporting performance data every 60 seconds.
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Running worker loop
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:30:15 -0500 2011: sent 21 timeslices (103632911) in 0.141881 seconds
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14734)] INFO : Resolved collector-4.newrelic.com to 204.93.223.138
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/connect
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14736)] INFO : Resolved collector-4.newrelic.com to 204.93.223.138
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/connect
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14732)] DEBUG : Agent Run = 103632914.
[04/28/11 11:30:15 -0500 example.com (14732)] DEBUG : Connection data = {"apdex_t"=>0.5, "data_report_period"=>60, "sampling_rate"=>0, "collect_errors"=>false, "collect_traces"=>false, "url_rules"=>[#<NewRelic::UrlRule:0x2aaab1265b48 @eval_order=1, @each_segment=true, @replacement="*", @match_expression="^[0-9][0-9a-f_,.-]*$", @terminate_chain=false, @ignore=false, @replace_all=false>, #<NewRelic::UrlRule:0x2aaab1265788 @eval_order=0, @each_segment=false, @replacement="/*.\\1", @match_expression=".*\\.(css|gif|ico|jpe?g|js|png|swf)$", @terminate_chain=true, @ignore=false, @replace_all=false>], "agent_run_id"=>103632914}
[04/28/11 11:30:15 -0500 example.com (14732)] DEBUG : Transaction traces will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14732)] DEBUG : Errors will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14732)] INFO : Reporting performance data every 60 seconds.
[04/28/11 11:30:15 -0500 example.com (14732)] DEBUG : Running worker loop
[04/28/11 11:30:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:30:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:30:15 -0500 2011: sent 21 timeslices (103632913) in 0.127653 seconds
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Agent Run = 103632915.
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Connection data = {"apdex_t"=>0.5, "data_report_period"=>60, "sampling_rate"=>0, "collect_errors"=>false, "collect_traces"=>false, "url_rules"=>[#<NewRelic::UrlRule:0x2aaab149e2c0 @eval_order=1, @each_segment=true, @replacement="*", @match_expression="^[0-9][0-9a-f_,.-]*$", @terminate_chain=false, @ignore=false, @replace_all=false>, #<NewRelic::UrlRule:0x2aaab149e0e0 @eval_order=0, @each_segment=false, @replacement="/*.\\1", @match_expression=".*\\.(css|gif|ico|jpe?g|js|png|swf)$", @terminate_chain=true, @ignore=false, @replace_all=false>], "agent_run_id"=>103632915}
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Transaction traces will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Errors will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14734)] INFO : Reporting performance data every 60 seconds.
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Running worker loop
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Agent Run = 103632916.
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Connection data = {"apdex_t"=>0.5, "data_report_period"=>60, "sampling_rate"=>0, "collect_errors"=>false, "collect_traces"=>false, "url_rules"=>[#<NewRelic::UrlRule:0x2aaab149e090 @eval_order=1, @each_segment=true, @replacement="*", @match_expression="^[0-9][0-9a-f_,.-]*$", @terminate_chain=false, @ignore=false, @replace_all=false>, #<NewRelic::UrlRule:0x2aaab149de10 @eval_order=0, @each_segment=false, @replacement="/*.\\1", @match_expression=".*\\.(css|gif|ico|jpe?g|js|png|swf)$", @terminate_chain=true, @ignore=false, @replace_all=false>], "agent_run_id"=>103632916}
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Transaction traces will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Errors will not be sent to the RPM service.
[04/28/11 11:30:15 -0500 example.com (14736)] INFO : Reporting performance data every 60 seconds.
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Running worker loop
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:30:15 -0500 2011: sent 21 timeslices (103632915) in 0.130952 seconds
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:30:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:30:15 -0500 2011: sent 21 timeslices (103632916) in 0.136724 seconds
[04/28/11 11:30:16 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:30:16 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:30:15 -0500 2011: sent 21 timeslices (103632914) in 0.876403 seconds
[04/28/11 11:31:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:31:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:31:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:31:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:31:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:31:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:31:15 -0500 2011: sent 6 timeslices (103632908) in 0.096044 seconds
[04/28/11 11:31:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:31:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:31:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:31:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:31:15 -0500 2011: sent 6 timeslices (103632909) in 0.112359 seconds
[04/28/11 11:31:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:31:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:31:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:31:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:31:15 -0500 2011: sent 6 timeslices (103632910) in 0.131383 seconds
[04/28/11 11:31:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:31:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:31:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:31:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:31:15 -0500 2011: sent 6 timeslices (103632911) in 0.159789 seconds
[04/28/11 11:31:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:31:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:31:15 -0500 2011: sent 6 timeslices (103632913) in 0.125329 seconds
[04/28/11 11:31:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:31:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:31:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:31:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:31:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:31:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:31:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:31:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:31:15 -0500 2011: sent 22 timeslices (103632914) in 0.149508 seconds
[04/28/11 11:31:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:31:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:31:15 -0500 2011: sent 22 timeslices (103632915) in 0.136546 seconds
[04/28/11 11:31:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:31:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:31:15 -0500 2011: sent 6 timeslices (103632916) in 0.139347 seconds
[04/28/11 11:32:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:32:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:32:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:32:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:32:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:32:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:32:15 -0500 2011: sent 6 timeslices (103632908) in 0.097011 seconds
[04/28/11 11:32:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:32:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:32:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:32:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:32:15 -0500 2011: sent 6 timeslices (103632909) in 0.097175 seconds
[04/28/11 11:32:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:32:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:32:15 -0500 2011: sent 6 timeslices (103632910) in 0.099668 seconds
[04/28/11 11:32:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:32:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:32:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:32:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:32:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:32:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:32:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:32:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:32:15 -0500 2011: sent 6 timeslices (103632913) in 0.12681 seconds
[04/28/11 11:32:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:32:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:32:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:32:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:32:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:32:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:32:15 -0500 2011: sent 6 timeslices (103632911) in 0.360969 seconds
[04/28/11 11:32:16 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:32:16 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:32:15 -0500 2011: sent 22 timeslices (103632914) in 0.369582 seconds
[04/28/11 11:32:16 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:32:16 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:32:15 -0500 2011: sent 6 timeslices (103632916) in 0.375275 seconds
[04/28/11 11:32:16 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:32:16 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:32:15 -0500 2011: sent 23 timeslices (103632915) in 0.872563 seconds
[04/28/11 11:33:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:33:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:33:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:33:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:33:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:33:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:33:15 -0500 2011: sent 6 timeslices (103632908) in 0.094224 seconds
[04/28/11 11:33:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:33:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:33:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:33:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:33:15 -0500 2011: sent 6 timeslices (103632909) in 0.094655 seconds
[04/28/11 11:33:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:33:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:33:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:33:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:33:15 -0500 2011: sent 6 timeslices (103632910) in 0.134318 seconds
[04/28/11 11:33:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:33:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:33:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:33:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:33:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:33:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:33:15 -0500 2011: sent 6 timeslices (103632913) in 0.148331 seconds
[04/28/11 11:33:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:33:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:33:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:33:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:33:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:33:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:33:15 -0500 2011: sent 22 timeslices (103632914) in 0.138398 seconds
[04/28/11 11:33:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:33:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:33:15 -0500 2011: sent 22 timeslices (103632915) in 0.135106 seconds
[04/28/11 11:33:16 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:33:16 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:33:15 -0500 2011: sent 6 timeslices (103632916) in 0.852229 seconds
[04/28/11 11:33:18 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:33:18 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:33:15 -0500 2011: sent 6 timeslices (103632911) in 3.090802 seconds
[04/28/11 11:34:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:34:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:34:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:34:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:34:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:34:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:34:15 -0500 2011: sent 6 timeslices (103632908) in 0.093439 seconds
[04/28/11 11:34:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:34:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:34:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:34:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:34:15 -0500 2011: sent 6 timeslices (103632909) in 0.097071 seconds
[04/28/11 11:34:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:34:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:34:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:34:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:34:15 -0500 2011: sent 6 timeslices (103632910) in 0.112517 seconds
[04/28/11 11:34:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:34:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:34:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:34:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:34:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:34:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:34:15 -0500 2011: sent 6 timeslices (103632913) in 0.143779 seconds
[04/28/11 11:34:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:34:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:34:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:34:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:34:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:34:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:34:15 -0500 2011: sent 23 timeslices (103632914) in 0.126378 seconds
[04/28/11 11:34:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:34:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:34:15 -0500 2011: sent 6 timeslices (103632911) in 0.388177 seconds
[04/28/11 11:34:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:34:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:34:15 -0500 2011: sent 22 timeslices (103632915) in 0.130855 seconds
[04/28/11 11:34:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:34:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:34:15 -0500 2011: sent 6 timeslices (103632916) in 0.13201 seconds
[04/28/11 11:35:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:35:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:35:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:35:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:35:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:35:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:35:15 -0500 2011: sent 6 timeslices (103632908) in 0.093568 seconds
[04/28/11 11:35:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:35:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:35:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:35:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:35:15 -0500 2011: sent 6 timeslices (103632909) in 0.096779 seconds
[04/28/11 11:35:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:35:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:35:15 -0500 2011: sent 6 timeslices (103632910) in 0.095522 seconds
[04/28/11 11:35:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:35:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:35:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:35:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:35:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:35:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:35:15 -0500 2011: sent 6 timeslices (103632911) in 0.156956 seconds
[04/28/11 11:35:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:35:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:35:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:35:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:35:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:35:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:35:15 -0500 2011: sent 6 timeslices (103632913) in 0.158802 seconds
[04/28/11 11:35:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:35:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:35:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:35:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:35:15 -0500 2011: sent 23 timeslices (103632914) in 0.144904 seconds
[04/28/11 11:35:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:35:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:35:15 -0500 2011: sent 6 timeslices (103632916) in 0.135278 seconds
[04/28/11 11:35:16 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:35:16 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:35:15 -0500 2011: sent 22 timeslices (103632915) in 0.418677 seconds
[04/28/11 11:36:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:36:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:36:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:36:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:36:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:36:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:36:15 -0500 2011: sent 6 timeslices (103632908) in 0.094033 seconds
[04/28/11 11:36:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:36:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:36:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:36:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:36:15 -0500 2011: sent 6 timeslices (103632909) in 0.095157 seconds
[04/28/11 11:36:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:36:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:36:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:36:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:36:15 -0500 2011: sent 6 timeslices (103632910) in 0.132877 seconds
[04/28/11 11:36:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:36:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:36:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:36:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:36:15 -0500 2011: sent 6 timeslices (103632911) in 0.161507 seconds
[04/28/11 11:36:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:36:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:36:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:36:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:36:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:36:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:36:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:36:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:36:15 -0500 2011: sent 22 timeslices (103632914) in 0.137423 seconds
[04/28/11 11:36:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:36:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:36:15 -0500 2011: sent 23 timeslices (103632915) in 0.135947 seconds
[04/28/11 11:36:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:36:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:36:15 -0500 2011: sent 6 timeslices (103632916) in 0.139398 seconds
[04/28/11 11:36:18 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:36:18 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:36:15 -0500 2011: sent 6 timeslices (103632913) in 3.089907 seconds
[04/28/11 11:37:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:37:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:37:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:37:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:37:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:37:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:37:15 -0500 2011: sent 6 timeslices (103632908) in 0.093905 seconds
[04/28/11 11:37:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:37:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:37:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:37:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:37:15 -0500 2011: sent 6 timeslices (103632909) in 0.10427 seconds
[04/28/11 11:37:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:37:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:37:15 -0500 2011: sent 6 timeslices (103632910) in 0.095527 seconds
[04/28/11 11:37:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:37:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:37:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:37:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:37:15 -0500 2011: sent 6 timeslices (103632911) in 0.110953 seconds
[04/28/11 11:37:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:37:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:37:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:37:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:37:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:37:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:37:15 -0500 2011: sent 6 timeslices (103632913) in 0.145319 seconds
[04/28/11 11:37:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:37:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:37:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:37:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:37:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:37:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:37:15 -0500 2011: sent 22 timeslices (103632914) in 0.117299 seconds
[04/28/11 11:37:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:37:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:37:15 -0500 2011: sent 23 timeslices (103632915) in 0.128583 seconds
[04/28/11 11:37:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:37:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:37:15 -0500 2011: sent 6 timeslices (103632916) in 0.131631 seconds
[04/28/11 11:38:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:38:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:38:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:38:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:38:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:38:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:38:15 -0500 2011: sent 6 timeslices (103632908) in 0.096415 seconds
[04/28/11 11:38:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:38:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:38:15 -0500 2011: sent 6 timeslices (103632909) in 0.104934 seconds
[04/28/11 11:38:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:38:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:38:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:38:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:38:15 -0500 2011: sent 6 timeslices (103632910) in 0.094713 seconds
[04/28/11 11:38:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:38:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:38:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:38:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:38:15 -0500 2011: sent 6 timeslices (103632911) in 0.108921 seconds
[04/28/11 11:38:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:38:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:38:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:38:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:38:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:38:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:38:15 -0500 2011: sent 6 timeslices (103632913) in 0.150527 seconds
[04/28/11 11:38:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:38:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:38:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:38:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:38:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:38:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:38:15 -0500 2011: sent 22 timeslices (103632914) in 0.130059 seconds
[04/28/11 11:38:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:38:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:38:15 -0500 2011: sent 6 timeslices (103632916) in 0.13237 seconds
[04/28/11 11:38:16 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:38:16 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:38:15 -0500 2011: sent 22 timeslices (103632915) in 0.420652 seconds
[04/28/11 11:39:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:39:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:39:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:39:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:39:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:39:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:39:15 -0500 2011: sent 6 timeslices (103632908) in 0.09737 seconds
[04/28/11 11:39:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:39:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:39:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:39:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:39:15 -0500 2011: sent 6 timeslices (103632909) in 0.096903 seconds
[04/28/11 11:39:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:39:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:39:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:39:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:39:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:39:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:39:15 -0500 2011: sent 6 timeslices (103632911) in 0.131788 seconds
[04/28/11 11:39:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:39:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:39:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:39:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:39:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:39:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:39:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:39:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:39:15 -0500 2011: sent 23 timeslices (103632914) in 0.130223 seconds
[04/28/11 11:39:16 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:39:16 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:39:15 -0500 2011: sent 23 timeslices (103632915) in 0.420047 seconds
[04/28/11 11:39:16 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:39:16 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:39:15 -0500 2011: sent 6 timeslices (103632916) in 0.379763 seconds
[04/28/11 11:39:18 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:39:18 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:39:15 -0500 2011: sent 6 timeslices (103632910) in 3.102449 seconds
[04/28/11 11:39:18 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:39:18 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:39:15 -0500 2011: sent 6 timeslices (103632913) in 3.110083 seconds
[04/28/11 11:40:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:40:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:40:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:40:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:40:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:40:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:40:15 -0500 2011: sent 6 timeslices (103632908) in 0.094744 seconds
[04/28/11 11:40:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:40:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:40:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:40:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:40:15 -0500 2011: sent 6 timeslices (103632909) in 0.095262 seconds
[04/28/11 11:40:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:40:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:40:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:40:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:40:15 -0500 2011: sent 6 timeslices (103632910) in 0.131498 seconds
[04/28/11 11:40:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:40:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:40:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:40:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:40:15 -0500 2011: sent 6 timeslices (103632911) in 0.132938 seconds
[04/28/11 11:40:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:40:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:40:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:40:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:40:15 -0500 2011: sent 6 timeslices (103632913) in 0.187455 seconds
[04/28/11 11:40:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:40:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:40:15 -0500 2011: sent 22 timeslices (103632914) in 0.135721 seconds
[04/28/11 11:40:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:40:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:40:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:40:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:40:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:40:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:40:15 -0500 2011: sent 22 timeslices (103632915) in 0.131503 seconds
[04/28/11 11:40:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:40:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:40:15 -0500 2011: sent 6 timeslices (103632916) in 0.130102 seconds
[04/28/11 11:41:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:41:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:41:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:41:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:41:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:41:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:41:15 -0500 2011: sent 6 timeslices (103632908) in 0.104801 seconds
[04/28/11 11:41:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:41:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:41:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:41:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:41:15 -0500 2011: sent 6 timeslices (103632909) in 0.095586 seconds
[04/28/11 11:41:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:41:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:41:15 -0500 2011: sent 6 timeslices (103632910) in 0.093854 seconds
[04/28/11 11:41:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:41:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:41:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:41:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:41:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:41:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:41:15 -0500 2011: sent 6 timeslices (103632911) in 0.129751 seconds
[04/28/11 11:41:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:41:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:41:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:41:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:41:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:41:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:41:15 -0500 2011: sent 6 timeslices (103632913) in 0.162153 seconds
[04/28/11 11:41:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:41:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:41:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:41:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:41:15 -0500 2011: sent 23 timeslices (103632914) in 0.140108 seconds
[04/28/11 11:41:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:41:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:41:15 -0500 2011: sent 6 timeslices (103632916) in 0.132773 seconds
[04/28/11 11:41:18 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:41:18 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:41:15 -0500 2011: sent 22 timeslices (103632915) in 3.10938 seconds
[04/28/11 11:42:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:42:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:42:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:42:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:42:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:42:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:42:15 -0500 2011: sent 6 timeslices (103632908) in 0.098891 seconds
[04/28/11 11:42:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:42:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:42:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:42:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:42:15 -0500 2011: sent 6 timeslices (103632909) in 0.097597 seconds
[04/28/11 11:42:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:42:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:42:15 -0500 2011: sent 6 timeslices (103632910) in 0.104468 seconds
[04/28/11 11:42:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:42:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:42:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:42:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:42:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:42:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:42:15 -0500 2011: sent 6 timeslices (103632911) in 0.131604 seconds
[04/28/11 11:42:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:42:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:42:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:42:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:42:15 -0500 2011: sent 6 timeslices (103632913) in 0.14662 seconds
[04/28/11 11:42:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:42:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:42:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:42:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:42:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:42:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:42:15 -0500 2011: sent 6 timeslices (103632916) in 0.145889 seconds
[04/28/11 11:42:16 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:42:16 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:42:15 -0500 2011: sent 23 timeslices (103632914) in 0.378173 seconds
[04/28/11 11:42:16 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:42:16 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:42:15 -0500 2011: sent 22 timeslices (103632915) in 0.370937 seconds
[04/28/11 11:43:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:43:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:43:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:43:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:43:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:43:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:43:15 -0500 2011: sent 6 timeslices (103632908) in 0.094601 seconds
[04/28/11 11:43:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:43:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:43:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:43:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:43:15 -0500 2011: sent 6 timeslices (103632909) in 0.10639 seconds
[04/28/11 11:43:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:43:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:43:15 -0500 2011: sent 6 timeslices (103632910) in 0.093567 seconds
[04/28/11 11:43:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:43:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:43:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:43:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:43:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:43:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:43:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:43:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:43:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:43:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:43:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:43:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:43:15 -0500 2011: sent 22 timeslices (103632914) in 0.146834 seconds
[04/28/11 11:43:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:43:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:43:15 -0500 2011: sent 6 timeslices (103632916) in 0.132518 seconds
[04/28/11 11:43:16 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:43:16 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:43:15 -0500 2011: sent 22 timeslices (103632915) in 0.433437 seconds
[04/28/11 11:43:16 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:43:16 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:43:15 -0500 2011: sent 6 timeslices (103632911) in 0.827794 seconds
[04/28/11 11:43:18 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:43:18 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:43:15 -0500 2011: sent 6 timeslices (103632913) in 3.104633 seconds
[04/28/11 11:44:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:44:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:44:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:44:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:44:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:44:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:44:15 -0500 2011: sent 6 timeslices (103632908) in 0.095908 seconds
[04/28/11 11:44:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:44:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:44:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:44:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:44:15 -0500 2011: sent 6 timeslices (103632909) in 0.093313 seconds
[04/28/11 11:44:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:44:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:44:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:44:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:44:15 -0500 2011: sent 6 timeslices (103632910) in 0.117754 seconds
[04/28/11 11:44:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:44:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:44:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:44:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:44:15 -0500 2011: sent 6 timeslices (103632911) in 0.129308 seconds
[04/28/11 11:44:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:44:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:44:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:44:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:44:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:44:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:44:15 -0500 2011: sent 6 timeslices (103632913) in 0.166131 seconds
[04/28/11 11:44:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:44:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:44:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:44:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:44:15 -0500 2011: sent 22 timeslices (103632914) in 0.133354 seconds
[04/28/11 11:44:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:44:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:44:15 -0500 2011: sent 22 timeslices (103632915) in 0.136284 seconds
[04/28/11 11:44:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:44:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:44:15 -0500 2011: sent 6 timeslices (103632916) in 0.143602 seconds
[04/28/11 11:45:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:45:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:45:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:45:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:45:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:45:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:45:15 -0500 2011: sent 6 timeslices (103632908) in 0.093181 seconds
[04/28/11 11:45:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:45:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:45:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:45:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:45:15 -0500 2011: sent 6 timeslices (103632909) in 0.09831 seconds
[04/28/11 11:45:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:45:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:45:15 -0500 2011: sent 6 timeslices (103632910) in 0.094461 seconds
[04/28/11 11:45:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:45:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:45:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:45:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:45:15 -0500 2011: sent 6 timeslices (103632911) in 0.093492 seconds
[04/28/11 11:45:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:45:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:45:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:45:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:45:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:45:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:45:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:45:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:45:15 -0500 2011: sent 6 timeslices (103632913) in 0.15443 seconds
[04/28/11 11:45:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:45:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:45:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:45:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:45:15 -0500 2011: sent 22 timeslices (103632914) in 0.138165 seconds
[04/28/11 11:45:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:45:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:45:15 -0500 2011: sent 22 timeslices (103632915) in 0.136773 seconds
[04/28/11 11:45:16 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:45:16 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:45:15 -0500 2011: sent 6 timeslices (103632916) in 0.382851 seconds
[04/28/11 11:46:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:46:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:46:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:46:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:46:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:46:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:46:15 -0500 2011: sent 6 timeslices (103632908) in 0.09351 seconds
[04/28/11 11:46:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:46:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:46:15 -0500 2011: sent 6 timeslices (103632909) in 0.09415 seconds
[04/28/11 11:46:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:46:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:46:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:46:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:46:15 -0500 2011: sent 6 timeslices (103632910) in 0.094495 seconds
[04/28/11 11:46:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:46:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:46:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:46:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:46:15 -0500 2011: sent 6 timeslices (103632911) in 0.093208 seconds
[04/28/11 11:46:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:46:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:46:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:46:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:46:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:46:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:46:15 -0500 2011: sent 6 timeslices (103632913) in 0.142833 seconds
[04/28/11 11:46:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:46:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:46:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:46:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:46:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:46:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:46:15 -0500 2011: sent 22 timeslices (103632914) in 0.133495 seconds
[04/28/11 11:46:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:46:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:46:15 -0500 2011: sent 23 timeslices (103632915) in 0.133366 seconds
[04/28/11 11:46:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:46:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:46:15 -0500 2011: sent 6 timeslices (103632916) in 0.129798 seconds
[04/28/11 11:47:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:47:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:47:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:47:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:47:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:47:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:47:15 -0500 2011: sent 6 timeslices (103632908) in 0.095976 seconds
[04/28/11 11:47:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:47:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:47:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:47:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:47:15 -0500 2011: sent 6 timeslices (103632909) in 0.093432 seconds
[04/28/11 11:47:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:47:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:47:15 -0500 2011: sent 6 timeslices (103632910) in 0.110708 seconds
[04/28/11 11:47:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:47:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:47:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:47:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:47:15 -0500 2011: sent 6 timeslices (103632911) in 0.119487 seconds
[04/28/11 11:47:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:47:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:47:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:47:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:47:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:47:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:47:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:47:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:47:15 -0500 2011: sent 6 timeslices (103632913) in 0.156265 seconds
[04/28/11 11:47:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:47:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:47:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:47:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:47:15 -0500 2011: sent 6 timeslices (103632914) in 0.130154 seconds
[04/28/11 11:47:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:47:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:47:15 -0500 2011: sent 22 timeslices (103632915) in 0.127751 seconds
[04/28/11 11:47:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:47:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:47:15 -0500 2011: sent 6 timeslices (103632916) in 0.131965 seconds
[04/28/11 11:48:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:48:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:48:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:48:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:48:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:48:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:48:15 -0500 2011: sent 6 timeslices (103632908) in 0.094784 seconds
[04/28/11 11:48:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:48:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:48:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:48:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:48:15 -0500 2011: sent 6 timeslices (103632909) in 0.096987 seconds
[04/28/11 11:48:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:48:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:48:15 -0500 2011: sent 6 timeslices (103632910) in 0.09801 seconds
[04/28/11 11:48:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:48:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:48:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:48:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:48:15 -0500 2011: sent 6 timeslices (103632911) in 0.103442 seconds
[04/28/11 11:48:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:48:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:48:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:48:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:48:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:48:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:48:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:48:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:48:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:48:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:48:15 -0500 2011: sent 23 timeslices (103632914) in 0.150047 seconds
[04/28/11 11:48:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:48:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:48:15 -0500 2011: sent 6 timeslices (103632913) in 0.371292 seconds
[04/28/11 11:48:18 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:48:18 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:48:15 -0500 2011: sent 22 timeslices (103632915) in 3.144653 seconds
[04/28/11 11:48:18 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:48:18 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:48:15 -0500 2011: sent 6 timeslices (103632916) in 3.092082 seconds
[04/28/11 11:49:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:49:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:49:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:49:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:49:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:49:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:49:15 -0500 2011: sent 6 timeslices (103632908) in 0.0975 seconds
[04/28/11 11:49:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:49:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:49:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:49:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:49:15 -0500 2011: sent 6 timeslices (103632909) in 0.093071 seconds
[04/28/11 11:49:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:49:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:49:15 -0500 2011: sent 6 timeslices (103632910) in 0.096939 seconds
[04/28/11 11:49:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:49:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:49:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:49:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:49:15 -0500 2011: sent 6 timeslices (103632911) in 0.115476 seconds
[04/28/11 11:49:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:49:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:49:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:49:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:49:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:49:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:49:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:49:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:49:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:49:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:49:15 -0500 2011: sent 23 timeslices (103632914) in 0.139403 seconds
[04/28/11 11:49:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:49:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:49:15 -0500 2011: sent 23 timeslices (103632915) in 0.131494 seconds
[04/28/11 11:49:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:49:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:49:15 -0500 2011: sent 6 timeslices (103632916) in 0.12979 seconds
[04/28/11 11:49:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:49:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:49:15 -0500 2011: sent 6 timeslices (103632913) in 0.369093 seconds
[04/28/11 11:50:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:50:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:50:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:50:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:50:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:50:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:50:15 -0500 2011: sent 6 timeslices (103632908) in 0.098469 seconds
[04/28/11 11:50:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:50:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:50:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:50:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:50:15 -0500 2011: sent 6 timeslices (103632909) in 0.093917 seconds
[04/28/11 11:50:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:50:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:50:15 -0500 2011: sent 6 timeslices (103632910) in 0.095906 seconds
[04/28/11 11:50:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:50:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:50:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:50:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:50:15 -0500 2011: sent 6 timeslices (103632911) in 0.121079 seconds
[04/28/11 11:50:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:50:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:50:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:50:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:50:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:50:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:50:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:50:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:50:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:50:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:50:15 -0500 2011: sent 6 timeslices (103632914) in 0.128554 seconds
[04/28/11 11:50:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:50:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:50:15 -0500 2011: sent 22 timeslices (103632915) in 0.125938 seconds
[04/28/11 11:50:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:50:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:50:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:50:15 -0500 2011: sent 6 timeslices (103632913) in 0.360728 seconds
[04/28/11 11:50:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:50:15 -0500 2011: sent 6 timeslices (103632916) in 0.128673 seconds
[04/28/11 11:51:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:51:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:51:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:51:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:51:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:51:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:51:15 -0500 2011: sent 6 timeslices (103632908) in 0.092378 seconds
[04/28/11 11:51:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:51:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:51:15 -0500 2011: sent 6 timeslices (103632909) in 0.092559 seconds
[04/28/11 11:51:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:51:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:51:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:51:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:51:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:51:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:51:15 -0500 2011: sent 6 timeslices (103632910) in 0.131744 seconds
[04/28/11 11:51:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:51:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:51:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:51:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:51:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:51:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:51:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:51:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:51:15 -0500 2011: sent 6 timeslices (103632913) in 0.159279 seconds
[04/28/11 11:51:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:51:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:51:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:51:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:51:15 -0500 2011: sent 6 timeslices (103632914) in 0.159658 seconds
[04/28/11 11:51:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:51:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:51:15 -0500 2011: sent 23 timeslices (103632915) in 0.148374 seconds
[04/28/11 11:51:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:51:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:51:15 -0500 2011: sent 6 timeslices (103632916) in 0.138946 seconds
[04/28/11 11:51:18 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:51:18 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:51:15 -0500 2011: sent 6 timeslices (103632911) in 3.103867 seconds
[04/28/11 11:52:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:52:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:52:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:52:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:52:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:52:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:52:15 -0500 2011: sent 6 timeslices (103632908) in 0.093609 seconds
[04/28/11 11:52:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:52:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:52:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:52:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:52:15 -0500 2011: sent 6 timeslices (103632909) in 0.092664 seconds
[04/28/11 11:52:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:52:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:52:15 -0500 2011: sent 6 timeslices (103632910) in 0.09147 seconds
[04/28/11 11:52:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:52:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:52:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:52:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:52:15 -0500 2011: sent 6 timeslices (103632911) in 0.115533 seconds
[04/28/11 11:52:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:52:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:52:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:52:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:52:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:52:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:52:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:52:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:52:15 -0500 2011: sent 6 timeslices (103632913) in 0.156317 seconds
[04/28/11 11:52:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:52:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:52:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:52:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:52:15 -0500 2011: sent 22 timeslices (103632914) in 0.149161 seconds
[04/28/11 11:52:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:52:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:52:15 -0500 2011: sent 22 timeslices (103632915) in 0.130978 seconds
[04/28/11 11:52:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:52:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:52:15 -0500 2011: sent 6 timeslices (103632916) in 0.12018 seconds
[04/28/11 11:53:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:53:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:53:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:53:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:53:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:53:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:53:15 -0500 2011: sent 6 timeslices (103632908) in 0.102597 seconds
[04/28/11 11:53:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:53:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:53:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:53:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:53:15 -0500 2011: sent 6 timeslices (103632909) in 0.0928 seconds
[04/28/11 11:53:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:53:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:53:15 -0500 2011: sent 6 timeslices (103632910) in 0.092322 seconds
[04/28/11 11:53:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:53:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:53:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:53:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:53:15 -0500 2011: sent 6 timeslices (103632911) in 0.098645 seconds
[04/28/11 11:53:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:53:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:53:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:53:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:53:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:53:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:53:15 -0500 2011: sent 6 timeslices (103632913) in 0.131082 seconds
[04/28/11 11:53:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:53:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:53:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:53:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:53:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:53:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:53:15 -0500 2011: sent 23 timeslices (103632914) in 0.157968 seconds
[04/28/11 11:53:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:53:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:53:15 -0500 2011: sent 22 timeslices (103632915) in 0.145938 seconds
[04/28/11 11:53:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:53:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:53:15 -0500 2011: sent 6 timeslices (103632916) in 0.136065 seconds
[04/28/11 11:54:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:54:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:54:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:54:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:54:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:54:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:54:15 -0500 2011: sent 6 timeslices (103632908) in 0.09222 seconds
[04/28/11 11:54:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:54:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:54:15 -0500 2011: sent 6 timeslices (103632909) in 0.097053 seconds
[04/28/11 11:54:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:54:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:54:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:54:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:54:15 -0500 2011: sent 6 timeslices (103632910) in 0.097785 seconds
[04/28/11 11:54:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:54:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:54:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:54:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:54:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:54:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:54:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:54:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:54:15 -0500 2011: sent 6 timeslices (103632913) in 0.130392 seconds
[04/28/11 11:54:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:54:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:54:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:54:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:54:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:54:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:54:15 -0500 2011: sent 6 timeslices (103632911) in 0.370256 seconds
[04/28/11 11:54:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:54:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:54:15 -0500 2011: sent 23 timeslices (103632914) in 0.166515 seconds
[04/28/11 11:54:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:54:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:54:15 -0500 2011: sent 22 timeslices (103632915) in 0.148657 seconds
[04/28/11 11:54:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:54:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:54:15 -0500 2011: sent 6 timeslices (103632916) in 0.129147 seconds
[04/28/11 11:55:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:55:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:55:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:55:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:55:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:55:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:55:15 -0500 2011: sent 6 timeslices (103632908) in 0.0955 seconds
[04/28/11 11:55:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:55:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:55:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:55:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:55:15 -0500 2011: sent 6 timeslices (103632909) in 0.095583 seconds
[04/28/11 11:55:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:55:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:55:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:55:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:55:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:55:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:55:15 -0500 2011: sent 6 timeslices (103632911) in 0.146003 seconds
[04/28/11 11:55:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:55:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:55:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:55:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:55:15 -0500 2011: sent 6 timeslices (103632910) in 0.354261 seconds
[04/28/11 11:55:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:55:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:55:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:55:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:55:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:55:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:55:15 -0500 2011: sent 23 timeslices (103632914) in 0.160087 seconds
[04/28/11 11:55:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:55:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:55:15 -0500 2011: sent 6 timeslices (103632915) in 0.149161 seconds
[04/28/11 11:55:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:55:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:55:15 -0500 2011: sent 6 timeslices (103632916) in 0.132493 seconds
[04/28/11 11:55:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:55:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:55:15 -0500 2011: sent 6 timeslices (103632913) in 0.3756 seconds
[04/28/11 11:56:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:56:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:56:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:56:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:56:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:56:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:56:15 -0500 2011: sent 6 timeslices (103632908) in 0.092332 seconds
[04/28/11 11:56:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:56:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:56:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:56:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:56:15 -0500 2011: sent 6 timeslices (103632909) in 0.096732 seconds
[04/28/11 11:56:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:56:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:56:15 -0500 2011: sent 6 timeslices (103632910) in 0.09158 seconds
[04/28/11 11:56:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:56:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:56:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:56:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:56:15 -0500 2011: sent 6 timeslices (103632911) in 0.09507 seconds
[04/28/11 11:56:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:56:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:56:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:56:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:56:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:56:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:56:15 -0500 2011: sent 6 timeslices (103632913) in 0.139783 seconds
[04/28/11 11:56:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:56:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:56:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:56:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:56:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:56:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:56:15 -0500 2011: sent 23 timeslices (103632914) in 0.161337 seconds
[04/28/11 11:56:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:56:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:56:15 -0500 2011: sent 22 timeslices (103632915) in 0.145305 seconds
[04/28/11 11:56:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:56:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:56:15 -0500 2011: sent 6 timeslices (103632916) in 0.132368 seconds
[04/28/11 11:57:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:57:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:57:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:57:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:57:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:57:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:57:15 -0500 2011: sent 6 timeslices (103632908) in 0.108533 seconds
[04/28/11 11:57:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:57:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:57:15 -0500 2011: sent 6 timeslices (103632909) in 0.09145 seconds
[04/28/11 11:57:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:57:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:57:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:57:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:57:15 -0500 2011: sent 6 timeslices (103632910) in 0.094157 seconds
[04/28/11 11:57:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:57:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:57:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:57:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:57:15 -0500 2011: sent 6 timeslices (103632911) in 0.107808 seconds
[04/28/11 11:57:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:57:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:57:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:57:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:57:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:57:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:57:15 -0500 2011: sent 6 timeslices (103632913) in 0.129093 seconds
[04/28/11 11:57:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:57:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:57:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:57:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:57:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:57:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:57:15 -0500 2011: sent 22 timeslices (103632914) in 0.165527 seconds
[04/28/11 11:57:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:57:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:57:15 -0500 2011: sent 6 timeslices (103632916) in 0.12484 seconds
[04/28/11 11:57:18 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:57:18 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:57:15 -0500 2011: sent 6 timeslices (103632915) in 3.091459 seconds
[04/28/11 11:58:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:58:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:58:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:58:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:58:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:58:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:58:15 -0500 2011: sent 6 timeslices (103632908) in 0.092218 seconds
[04/28/11 11:58:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:58:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:58:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:58:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:58:15 -0500 2011: sent 6 timeslices (103632909) in 0.09275 seconds
[04/28/11 11:58:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:58:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:58:15 -0500 2011: sent 6 timeslices (103632910) in 0.093555 seconds
[04/28/11 11:58:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:58:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:58:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:58:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:58:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:58:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:58:15 -0500 2011: sent 6 timeslices (103632911) in 0.130231 seconds
[04/28/11 11:58:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:58:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:58:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:58:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:58:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:58:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:58:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:58:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:58:15 -0500 2011: sent 23 timeslices (103632914) in 0.166637 seconds
[04/28/11 11:58:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:58:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:58:15 -0500 2011: sent 6 timeslices (103632916) in 0.147167 seconds
[04/28/11 11:58:18 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:58:18 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:58:15 -0500 2011: sent 6 timeslices (103632913) in 3.139018 seconds
[04/28/11 11:58:18 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:58:18 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:58:15 -0500 2011: sent 22 timeslices (103632915) in 3.091041 seconds
[04/28/11 11:59:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 11:59:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:59:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 11:59:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:59:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 11:59:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 11:59:15 -0500 2011: sent 6 timeslices (103632908) in 0.09197 seconds
[04/28/11 11:59:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 11:59:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 11:59:15 -0500 2011: sent 6 timeslices (103632909) in 0.092191 seconds
[04/28/11 11:59:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 11:59:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:59:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 11:59:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 11:59:15 -0500 2011: sent 6 timeslices (103632910) in 0.094463 seconds
[04/28/11 11:59:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 11:59:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:59:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 11:59:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 11:59:15 -0500 2011: sent 6 timeslices (103632911) in 0.092806 seconds
[04/28/11 11:59:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 11:59:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:59:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 11:59:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 11:59:15 -0500 2011: sent 6 timeslices (103632913) in 0.099782 seconds
[04/28/11 11:59:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 11:59:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:59:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 11:59:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:59:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 11:59:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 11:59:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 11:59:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 11:59:15 -0500 2011: sent 23 timeslices (103632914) in 0.150416 seconds
[04/28/11 11:59:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 11:59:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 11:59:15 -0500 2011: sent 22 timeslices (103632915) in 0.15904 seconds
[04/28/11 11:59:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 11:59:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 11:59:15 -0500 2011: sent 6 timeslices (103632916) in 0.140587 seconds
[04/28/11 12:00:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 12:00:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:00:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 12:00:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:00:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 12:00:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:00:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 12:00:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 12:00:15 -0500 2011: sent 6 timeslices (103632909) in 0.137477 seconds
[04/28/11 12:00:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 12:00:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:00:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 12:00:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 12:00:15 -0500 2011: sent 6 timeslices (103632910) in 0.1596 seconds
[04/28/11 12:00:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 12:00:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:00:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 12:00:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:00:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 12:00:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 12:00:15 -0500 2011: sent 6 timeslices (103632913) in 0.138902 seconds
[04/28/11 12:00:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 12:00:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:00:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 12:00:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:00:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 12:00:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 12:00:15 -0500 2011: sent 22 timeslices (103632914) in 0.129367 seconds
[04/28/11 12:00:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 12:00:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 12:00:15 -0500 2011: sent 6 timeslices (103632916) in 0.135285 seconds
[04/28/11 12:00:18 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 12:00:18 -0500 example.com (14721)] DEBUG : Thu Apr 28 12:00:15 -0500 2011: sent 6 timeslices (103632908) in 3.109323 seconds
[04/28/11 12:00:18 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 12:00:18 -0500 example.com (14728)] DEBUG : Thu Apr 28 12:00:15 -0500 2011: sent 6 timeslices (103632911) in 3.097053 seconds
[04/28/11 12:00:18 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 12:00:18 -0500 example.com (14734)] DEBUG : Thu Apr 28 12:00:15 -0500 2011: sent 6 timeslices (103632915) in 3.117277 seconds
[04/28/11 12:01:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 12:01:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:01:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 12:01:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:01:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 12:01:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 12:01:15 -0500 2011: sent 6 timeslices (103632908) in 0.098484 seconds
[04/28/11 12:01:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 12:01:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:01:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 12:01:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:01:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 12:01:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 12:01:15 -0500 2011: sent 6 timeslices (103632910) in 0.130572 seconds
[04/28/11 12:01:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 12:01:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:01:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 12:01:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 12:01:15 -0500 2011: sent 6 timeslices (103632911) in 0.165093 seconds
[04/28/11 12:01:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 12:01:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 12:01:15 -0500 2011: sent 6 timeslices (103632909) in 0.366615 seconds
[04/28/11 12:01:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 12:01:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:01:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 12:01:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:01:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 12:01:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:01:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 12:01:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 12:01:15 -0500 2011: sent 22 timeslices (103632915) in 0.134921 seconds
[04/28/11 12:01:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 12:01:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 12:01:15 -0500 2011: sent 6 timeslices (103632916) in 0.132934 seconds
[04/28/11 12:01:18 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 12:01:18 -0500 example.com (14730)] DEBUG : Thu Apr 28 12:01:15 -0500 2011: sent 6 timeslices (103632913) in 3.094536 seconds
[04/28/11 12:01:18 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 12:01:18 -0500 example.com (14732)] DEBUG : Thu Apr 28 12:01:15 -0500 2011: sent 23 timeslices (103632914) in 3.093149 seconds
[04/28/11 12:02:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 12:02:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:02:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 12:02:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:02:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 12:02:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 12:02:15 -0500 2011: sent 6 timeslices (103632908) in 0.0937 seconds
[04/28/11 12:02:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 12:02:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 12:02:15 -0500 2011: sent 6 timeslices (103632909) in 0.092035 seconds
[04/28/11 12:02:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 12:02:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:02:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 12:02:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:02:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 12:02:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 12:02:15 -0500 2011: sent 6 timeslices (103632910) in 0.11649 seconds
[04/28/11 12:02:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 12:02:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:02:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 12:02:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 12:02:15 -0500 2011: sent 6 timeslices (103632911) in 0.16913 seconds
[04/28/11 12:02:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 12:02:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:02:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 12:02:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 12:02:15 -0500 2011: sent 6 timeslices (103632913) in 0.13554 seconds
[04/28/11 12:02:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 12:02:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:02:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 12:02:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:02:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 12:02:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 12:02:15 -0500 2011: sent 23 timeslices (103632914) in 0.13327 seconds
[04/28/11 12:02:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 12:02:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 12:02:15 -0500 2011: sent 6 timeslices (103632916) in 0.129974 seconds
[04/28/11 12:02:18 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 12:02:18 -0500 example.com (14734)] DEBUG : Thu Apr 28 12:02:15 -0500 2011: sent 6 timeslices (103632915) in 3.105798 seconds
[04/28/11 12:03:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 12:03:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:03:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 12:03:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:03:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 12:03:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 12:03:15 -0500 2011: sent 6 timeslices (103632908) in 0.092167 seconds
[04/28/11 12:03:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 12:03:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 12:03:15 -0500 2011: sent 6 timeslices (103632909) in 0.094326 seconds
[04/28/11 12:03:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 12:03:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:03:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 12:03:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:03:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 12:03:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 12:03:15 -0500 2011: sent 6 timeslices (103632910) in 0.126601 seconds
[04/28/11 12:03:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 12:03:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:03:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 12:03:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:03:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 12:03:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 12:03:15 -0500 2011: sent 6 timeslices (103632913) in 0.130591 seconds
[04/28/11 12:03:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 12:03:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:03:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 12:03:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:03:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 12:03:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 12:03:15 -0500 2011: sent 22 timeslices (103632914) in 0.134413 seconds
[04/28/11 12:03:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 12:03:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 12:03:15 -0500 2011: sent 6 timeslices (103632916) in 0.136396 seconds
[04/28/11 12:03:16 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 12:03:16 -0500 example.com (14734)] DEBUG : Thu Apr 28 12:03:15 -0500 2011: sent 6 timeslices (103632915) in 0.373474 seconds
[04/28/11 12:03:18 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 12:03:18 -0500 example.com (14728)] DEBUG : Thu Apr 28 12:03:15 -0500 2011: sent 6 timeslices (103632911) in 3.111494 seconds
[04/28/11 12:04:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 12:04:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:04:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 12:04:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:04:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 12:04:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 12:04:15 -0500 2011: sent 6 timeslices (103632908) in 0.108834 seconds
[04/28/11 12:04:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 12:04:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:04:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 12:04:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 12:04:15 -0500 2011: sent 6 timeslices (103632909) in 0.145611 seconds
[04/28/11 12:04:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 12:04:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:04:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 12:04:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:04:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 12:04:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:04:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 12:04:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 12:04:15 -0500 2011: sent 6 timeslices (103632913) in 0.112935 seconds
[04/28/11 12:04:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 12:04:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:04:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 12:04:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:04:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 12:04:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 12:04:15 -0500 2011: sent 22 timeslices (103632915) in 0.126653 seconds
[04/28/11 12:04:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 12:04:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 12:04:15 -0500 2011: sent 6 timeslices (103632916) in 0.131818 seconds
[04/28/11 12:04:18 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 12:04:18 -0500 example.com (14725)] DEBUG : Thu Apr 28 12:04:15 -0500 2011: sent 6 timeslices (103632910) in 3.115317 seconds
[04/28/11 12:04:18 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 12:04:18 -0500 example.com (14728)] DEBUG : Thu Apr 28 12:04:15 -0500 2011: sent 6 timeslices (103632911) in 3.106384 seconds
[04/28/11 12:04:18 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 12:04:18 -0500 example.com (14732)] DEBUG : Thu Apr 28 12:04:15 -0500 2011: sent 23 timeslices (103632914) in 3.139645 seconds
[04/28/11 12:05:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 12:05:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:05:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 12:05:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:05:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 12:05:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 12:05:15 -0500 2011: sent 6 timeslices (103632908) in 0.092649 seconds
[04/28/11 12:05:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 12:05:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 12:05:15 -0500 2011: sent 6 timeslices (103632909) in 0.091453 seconds
[04/28/11 12:05:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 12:05:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:05:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 12:05:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 12:05:15 -0500 2011: sent 6 timeslices (103632910) in 0.107863 seconds
[04/28/11 12:05:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 12:05:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:05:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 12:05:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:05:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 12:05:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:05:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 12:05:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:05:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 12:05:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:05:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 12:05:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 12:05:15 -0500 2011: sent 23 timeslices (103632914) in 0.134799 seconds
[04/28/11 12:05:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 12:05:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 12:05:15 -0500 2011: sent 22 timeslices (103632915) in 0.128826 seconds
[04/28/11 12:05:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 12:05:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 12:05:15 -0500 2011: sent 6 timeslices (103632913) in 0.380216 seconds
[04/28/11 12:05:18 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 12:05:18 -0500 example.com (14728)] DEBUG : Thu Apr 28 12:05:15 -0500 2011: sent 6 timeslices (103632911) in 3.109326 seconds
[04/28/11 12:05:18 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 12:05:18 -0500 example.com (14736)] DEBUG : Thu Apr 28 12:05:15 -0500 2011: sent 6 timeslices (103632916) in 3.088698 seconds
[04/28/11 12:06:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 12:06:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:06:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 12:06:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:06:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 12:06:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 12:06:15 -0500 2011: sent 6 timeslices (103632908) in 0.12462 seconds
[04/28/11 12:06:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 12:06:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:06:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 12:06:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:06:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 12:06:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 12:06:15 -0500 2011: sent 6 timeslices (103632910) in 0.145116 seconds
[04/28/11 12:06:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 12:06:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:06:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 12:06:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:06:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 12:06:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 12:06:15 -0500 2011: sent 6 timeslices (103632913) in 0.128694 seconds
[04/28/11 12:06:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 12:06:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:06:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 12:06:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:06:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 12:06:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 12:06:15 -0500 2011: sent 23 timeslices (103632914) in 0.131581 seconds
[04/28/11 12:06:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 12:06:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 12:06:15 -0500 2011: sent 6 timeslices (103632915) in 0.131207 seconds
[04/28/11 12:06:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 12:06:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 12:06:15 -0500 2011: sent 6 timeslices (103632916) in 0.132416 seconds
[04/28/11 12:06:18 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 12:06:18 -0500 example.com (14723)] DEBUG : Thu Apr 28 12:06:15 -0500 2011: sent 6 timeslices (103632909) in 3.099105 seconds
[04/28/11 12:06:18 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 12:06:18 -0500 example.com (14728)] DEBUG : Thu Apr 28 12:06:15 -0500 2011: sent 6 timeslices (103632911) in 3.099519 seconds
[04/28/11 12:07:15 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 12:07:15 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:07:15 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 12:07:15 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:07:15 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 12:07:15 -0500 example.com (14721)] DEBUG : Thu Apr 28 12:07:15 -0500 2011: sent 6 timeslices (103632908) in 0.0917 seconds
[04/28/11 12:07:15 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 12:07:15 -0500 example.com (14723)] DEBUG : Thu Apr 28 12:07:15 -0500 2011: sent 6 timeslices (103632909) in 0.092939 seconds
[04/28/11 12:07:15 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 12:07:15 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:07:15 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 12:07:15 -0500 example.com (14725)] DEBUG : Thu Apr 28 12:07:15 -0500 2011: sent 6 timeslices (103632910) in 0.104975 seconds
[04/28/11 12:07:15 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 12:07:15 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:07:15 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 12:07:15 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:07:15 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 12:07:15 -0500 example.com (14728)] DEBUG : Thu Apr 28 12:07:15 -0500 2011: sent 6 timeslices (103632911) in 0.15589 seconds
[04/28/11 12:07:15 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 12:07:15 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:07:15 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 12:07:15 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:07:15 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 12:07:15 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:07:15 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 12:07:15 -0500 example.com (14732)] DEBUG : Thu Apr 28 12:07:15 -0500 2011: sent 23 timeslices (103632914) in 0.130927 seconds
[04/28/11 12:07:15 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 12:07:15 -0500 example.com (14734)] DEBUG : Thu Apr 28 12:07:15 -0500 2011: sent 22 timeslices (103632915) in 0.128187 seconds
[04/28/11 12:07:15 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 12:07:15 -0500 example.com (14736)] DEBUG : Thu Apr 28 12:07:15 -0500 2011: sent 6 timeslices (103632916) in 0.129913 seconds
[04/28/11 12:07:15 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 12:07:15 -0500 example.com (14730)] DEBUG : Thu Apr 28 12:07:15 -0500 2011: sent 6 timeslices (103632913) in 0.368962 seconds
[04/28/11 12:08:11 -0500 example.com (14732)] DEBUG : Passenger stopping this process, shutdown the agent.
[04/28/11 12:08:11 -0500 example.com (14732)] DEBUG : Starting Agent shutdown
[04/28/11 12:08:11 -0500 example.com (14732)] DEBUG : Flushing unsent metric data to server
[04/28/11 12:08:11 -0500 example.com (14736)] DEBUG : Passenger stopping this process, shutdown the agent.
[04/28/11 12:08:11 -0500 example.com (14736)] DEBUG : Starting Agent shutdown
[04/28/11 12:08:11 -0500 example.com (14736)] DEBUG : Flushing unsent metric data to server
[04/28/11 12:08:11 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632916
[04/28/11 12:08:11 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632914
[04/28/11 12:08:11 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14721)] DEBUG : Passenger stopping this process, shutdown the agent.
[04/28/11 12:08:11 -0500 example.com (14721)] DEBUG : Starting Agent shutdown
[04/28/11 12:08:11 -0500 example.com (14728)] DEBUG : Passenger stopping this process, shutdown the agent.
[04/28/11 12:08:11 -0500 example.com (14721)] DEBUG : Flushing unsent metric data to server
[04/28/11 12:08:11 -0500 example.com (14728)] DEBUG : Starting Agent shutdown
[04/28/11 12:08:11 -0500 example.com (14728)] DEBUG : Flushing unsent metric data to server
[04/28/11 12:08:11 -0500 example.com (14734)] DEBUG : Passenger stopping this process, shutdown the agent.
[04/28/11 12:08:11 -0500 example.com (14734)] DEBUG : Starting Agent shutdown
[04/28/11 12:08:11 -0500 example.com (14734)] DEBUG : Flushing unsent metric data to server
[04/28/11 12:08:11 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632908
[04/28/11 12:08:11 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632911
[04/28/11 12:08:11 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14725)] DEBUG : Passenger stopping this process, shutdown the agent.
[04/28/11 12:08:11 -0500 example.com (14725)] DEBUG : Starting Agent shutdown
[04/28/11 12:08:11 -0500 example.com (14725)] DEBUG : Flushing unsent metric data to server
[04/28/11 12:08:11 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632915
[04/28/11 12:08:11 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14730)] DEBUG : Passenger stopping this process, shutdown the agent.
[04/28/11 12:08:11 -0500 example.com (14723)] DEBUG : Passenger stopping this process, shutdown the agent.
[04/28/11 12:08:11 -0500 example.com (14730)] DEBUG : Starting Agent shutdown
[04/28/11 12:08:11 -0500 example.com (14723)] DEBUG : Starting Agent shutdown
[04/28/11 12:08:11 -0500 example.com (14730)] DEBUG : Flushing unsent metric data to server
[04/28/11 12:08:11 -0500 example.com (14723)] DEBUG : Flushing unsent metric data to server
[04/28/11 12:08:11 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632910
[04/28/11 12:08:11 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632913
[04/28/11 12:08:11 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/metric_data?run_id=103632909
[04/28/11 12:08:11 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14736)] DEBUG : Thu Apr 28 12:08:11 -0500 2011: sent 6 timeslices (103632916) in 0.092596 seconds
[04/28/11 12:08:11 -0500 example.com (14736)] DEBUG : Sending RPM service agent run shutdown message
[04/28/11 12:08:11 -0500 example.com (14736)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/shutdown?run_id=103632916
[04/28/11 12:08:11 -0500 example.com (14736)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14732)] DEBUG : Thu Apr 28 12:08:11 -0500 2011: sent 22 timeslices (103632914) in 0.095316 seconds
[04/28/11 12:08:11 -0500 example.com (14732)] DEBUG : Sending RPM service agent run shutdown message
[04/28/11 12:08:11 -0500 example.com (14732)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/shutdown?run_id=103632914
[04/28/11 12:08:11 -0500 example.com (14732)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14728)] DEBUG : Thu Apr 28 12:08:11 -0500 2011: sent 6 timeslices (103632911) in 0.092543 seconds
[04/28/11 12:08:11 -0500 example.com (14728)] DEBUG : Sending RPM service agent run shutdown message
[04/28/11 12:08:11 -0500 example.com (14728)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/shutdown?run_id=103632911
[04/28/11 12:08:11 -0500 example.com (14721)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14728)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14721)] DEBUG : Thu Apr 28 12:08:11 -0500 2011: sent 6 timeslices (103632908) in 0.093366 seconds
[04/28/11 12:08:11 -0500 example.com (14721)] DEBUG : Sending RPM service agent run shutdown message
[04/28/11 12:08:11 -0500 example.com (14721)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/shutdown?run_id=103632908
[04/28/11 12:08:11 -0500 example.com (14721)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14734)] DEBUG : Thu Apr 28 12:08:11 -0500 2011: sent 6 timeslices (103632915) in 0.094317 seconds
[04/28/11 12:08:11 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14734)] DEBUG : Sending RPM service agent run shutdown message
[04/28/11 12:08:11 -0500 example.com (14725)] DEBUG : Thu Apr 28 12:08:11 -0500 2011: sent 6 timeslices (103632910) in 0.092058 seconds
[04/28/11 12:08:11 -0500 example.com (14725)] DEBUG : Sending RPM service agent run shutdown message
[04/28/11 12:08:11 -0500 example.com (14734)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/shutdown?run_id=103632915
[04/28/11 12:08:11 -0500 example.com (14734)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14725)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/shutdown?run_id=103632910
[04/28/11 12:08:11 -0500 example.com (14725)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14730)] DEBUG : Thu Apr 28 12:08:11 -0500 2011: sent 6 timeslices (103632913) in 0.092471 seconds
[04/28/11 12:08:11 -0500 example.com (14730)] DEBUG : Sending RPM service agent run shutdown message
[04/28/11 12:08:11 -0500 example.com (14730)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/shutdown?run_id=103632913
[04/28/11 12:08:11 -0500 example.com (14730)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14723)] DEBUG : Thu Apr 28 12:08:11 -0500 2011: sent 6 timeslices (103632909) in 0.093153 seconds
[04/28/11 12:08:11 -0500 example.com (14723)] DEBUG : Sending RPM service agent run shutdown message
[04/28/11 12:08:11 -0500 example.com (14723)] DEBUG : Connect to collector-4.newrelic.com:80/agent_listener/8/64c340f9eefdef3cf57aa0fcb957cab8a0b2972e/shutdown?run_id=103632909
[04/28/11 12:08:11 -0500 example.com (14723)] DEBUG : Http Connection opened to 204.93.223.138:80
[04/28/11 12:08:11 -0500 example.com (14736)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14736)] DEBUG : Graceful disconnect complete
[04/28/11 12:08:11 -0500 example.com (14723)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14723)] DEBUG : Graceful disconnect complete
[04/28/11 12:08:11 -0500 example.com (14730)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14730)] DEBUG : Graceful disconnect complete
[04/28/11 12:08:11 -0500 example.com (14732)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14732)] DEBUG : Graceful disconnect complete
[04/28/11 12:08:11 -0500 example.com (14725)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14728)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14725)] DEBUG : Graceful disconnect complete
[04/28/11 12:08:11 -0500 example.com (14728)] DEBUG : Graceful disconnect complete
[04/28/11 12:08:11 -0500 example.com (14734)] DEBUG : Uncompressed content returned
[04/28/11 12:08:11 -0500 example.com (14734)] DEBUG : Graceful disconnect complete
[04/28/11 12:08:11 -0500 example.com (14721)] DEBUG : Uncompressed content returned
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment