url-agent 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +48 -0
- data/examples/config/urls.yaml +20 -0
- data/examples/google_evented.rb +20 -0
- data/examples/log/urls.log +635 -0
- data/lib/url-agent.rb +20 -0
- data/lib/url_agent/base.rb +144 -0
- data/lib/url_agent/dispatcher.rb +20 -0
- data/lib/url_agent/dispatcher/em_http.rb +44 -0
- data/lib/url_agent/exceptions.rb +23 -0
- data/lib/url_agent/logger.rb +11 -0
- data/lib/url_agent/pinger.rb +49 -0
- data/lib/url_agent/url.rb +60 -0
- data/lib/url_agent/url_set.rb +26 -0
- metadata +240 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: a6e8470926506f0d624bae0ddf4e9c92a42d0756
|
4
|
+
data.tar.gz: 756c6395431726d3c007107f804c1e2c39e5ee13
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 65beda3e34628eb5e252e0078c6944e519d6c68f7acc8471c90fcf90c0a0d7459f7e52ab7e6dc5624074129ce44296a2c7992882c122aeba6f4d86c1f1db712c
|
7
|
+
data.tar.gz: 15d8585bdc26fb15490252115a516eb4c50247cc8223c6353d0adeebb414f8e6f53072be9247fe1f9028f4b9fbdcd2f002ae8daf0ab765e12b7c5c5a9ff4b4ef
|
data/README.md
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
## Description
|
2
|
+
|
3
|
+
URL Agent acts as a proxy for managing URL access for applications.
|
4
|
+
|
5
|
+
## Usage
|
6
|
+
|
7
|
+
config/urls.yaml:
|
8
|
+
cos:
|
9
|
+
- http://10.444.233.1/?msisdn=%msisdn%
|
10
|
+
- http://10.444.233.7/?msisdn=%msisdn%
|
11
|
+
google:
|
12
|
+
- http://google.com/?q=msisdn=%msisdn%
|
13
|
+
|
14
|
+
test:rb:
|
15
|
+
require 'url-agent'
|
16
|
+
url_agent = URLAgent::Base.instance
|
17
|
+
url_agent.configure(:path_root => File.dirname(__FILE__), :logger => Logger.new(STDOUT))
|
18
|
+
|
19
|
+
response = ""
|
20
|
+
EM.synchrony do
|
21
|
+
response = url-agent[:google].get
|
22
|
+
EM.add_timer(3) { EM.stop }
|
23
|
+
end
|
24
|
+
|
25
|
+
puts response.response
|
26
|
+
|
27
|
+
See examples/google_evented.rb for a complete working example.
|
28
|
+
|
29
|
+
## Run Tests
|
30
|
+
|
31
|
+
To run tests, run the slow server first:
|
32
|
+
|
33
|
+
$ rackup spec/server/dummy.ru
|
34
|
+
$ bundle exec rspec spec
|
35
|
+
|
36
|
+
## Install
|
37
|
+
|
38
|
+
Install rvm and ruby-1.9.2
|
39
|
+
|
40
|
+
Then do:
|
41
|
+
|
42
|
+
$ gem install bundler
|
43
|
+
$ bundle install --path vendor
|
44
|
+
$ bundle package
|
45
|
+
|
46
|
+
## Deployment
|
47
|
+
|
48
|
+
This is a library, and is meant to be used included in other projects.
|
@@ -0,0 +1,20 @@
|
|
1
|
+
google:
|
2
|
+
active: http://www.google.co.in/search?client=%%client%%&q=%%query%%
|
3
|
+
backup: http://www.google.com/search?client=%%client%%&q=%%query%%
|
4
|
+
|
5
|
+
pinger:
|
6
|
+
google:
|
7
|
+
verb: get
|
8
|
+
params:
|
9
|
+
client: safari
|
10
|
+
query: hello
|
11
|
+
tick: 5
|
12
|
+
|
13
|
+
timeouts:
|
14
|
+
connection: 2
|
15
|
+
inactivity: 5
|
16
|
+
|
17
|
+
logger:
|
18
|
+
log_level: debug
|
19
|
+
path: log/urls.log
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
$:.push(File.expand_path(File.dirname(__FILE__) + '/../lib'))
|
2
|
+
|
3
|
+
require 'em-synchrony'
|
4
|
+
require 'em-http-request'
|
5
|
+
require 'em-synchrony/em-http'
|
6
|
+
|
7
|
+
require 'url-agent'
|
8
|
+
|
9
|
+
puts 'Tail logs/urls.log for something interesting to see!'
|
10
|
+
|
11
|
+
EM.synchrony do
|
12
|
+
url_agent = URLAgent::Base.instance
|
13
|
+
url_agent.configure(:path_root => File.dirname(__FILE__), :logger => Logger.new(STDOUT))
|
14
|
+
|
15
|
+
response = url_agent[:google].get
|
16
|
+
EM.add_timer(2) { print "." }
|
17
|
+
EM.add_timer(20) { EM.stop }
|
18
|
+
end
|
19
|
+
|
20
|
+
puts 'Whoa! Done.'
|
@@ -0,0 +1,635 @@
|
|
1
|
+
# Logfile created on 2014-06-07 11:13:13 +0530 by logger.rb/31641
|
2
|
+
2014-06-07 11:13:13 INFO URL Agent starting up...
|
3
|
+
|
4
|
+
2014-06-07 11:13:13 INFO Log level is DEBUG
|
5
|
+
|
6
|
+
2014-06-07 11:13:13 INFO Using em_http dispatcher
|
7
|
+
|
8
|
+
2014-06-07 11:13:13 INFO Pinger started
|
9
|
+
|
10
|
+
2014-06-07 11:13:13 DEBUG MONITOR
|
11
|
+
|
12
|
+
2014-06-07 11:13:13 DEBUG DISPATCH google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% GET
|
13
|
+
|
14
|
+
2014-06-07 11:13:13 DEBUG GET google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {}
|
15
|
+
|
16
|
+
2014-06-07 11:13:14 DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {:redirects=>0, :followed=>0} 44961 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
17
|
+
|
18
|
+
2014-06-07 11:13:18 DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
19
|
+
|
20
|
+
2014-06-07 11:13:18 DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
21
|
+
|
22
|
+
2014-06-07 11:13:18 DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
23
|
+
|
24
|
+
2014-06-07 11:13:19 DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 41659 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
25
|
+
|
26
|
+
2014-06-07 11:13:19 DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 41659 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
27
|
+
|
28
|
+
2014-06-07 11:13:19 INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
29
|
+
|
30
|
+
2014-06-07 11:13:19 DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
31
|
+
|
32
|
+
2014-06-07 11:13:19 DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
33
|
+
|
34
|
+
2014-06-07 11:13:19 DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
35
|
+
|
36
|
+
2014-06-07 11:13:19 DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
37
|
+
|
38
|
+
2014-06-07 11:13:19 DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
39
|
+
|
40
|
+
2014-06-07 11:13:19 INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
41
|
+
|
42
|
+
2014-06-07 11:13:23 DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
43
|
+
|
44
|
+
2014-06-07 11:13:23 DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
45
|
+
|
46
|
+
2014-06-07 11:13:23 DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
47
|
+
|
48
|
+
2014-06-07 11:13:24 DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 41659 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
49
|
+
|
50
|
+
2014-06-07 11:13:24 DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 41659 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
51
|
+
|
52
|
+
2014-06-07 11:13:24 INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
53
|
+
|
54
|
+
2014-06-07 11:13:24 DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
55
|
+
|
56
|
+
2014-06-07 11:13:24 DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
57
|
+
|
58
|
+
2014-06-07 11:13:24 DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
59
|
+
|
60
|
+
2014-06-07 11:13:26 DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
61
|
+
|
62
|
+
2014-06-07 11:13:26 DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
63
|
+
|
64
|
+
2014-06-07 11:13:26 INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
65
|
+
|
66
|
+
2014-06-07 11:13:29 DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
67
|
+
|
68
|
+
2014-06-07 11:13:29 DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
69
|
+
|
70
|
+
2014-06-07 11:13:29 DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
71
|
+
|
72
|
+
2014-06-07 11:13:34 DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 34837 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
73
|
+
|
74
|
+
2014-06-07 11:13:34 DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 34837 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
75
|
+
|
76
|
+
2014-06-07 11:13:34 INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
77
|
+
|
78
|
+
2014-06-07 11:13:34 DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
79
|
+
|
80
|
+
2014-06-07 11:13:34 DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
81
|
+
|
82
|
+
2014-06-07 11:13:34 DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
83
|
+
|
84
|
+
2014-06-07 11:37:04, INFO URL Agent starting up...
|
85
|
+
2014-06-07 11:37:04, INFO Log level is DEBUG
|
86
|
+
2014-06-07 11:37:04, INFO Using em_http dispatcher
|
87
|
+
2014-06-07 11:37:04, INFO Pinger started
|
88
|
+
2014-06-07 11:37:04, DEBUG MONITOR
|
89
|
+
2014-06-07 11:37:04, DEBUG DISPATCH google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% GET
|
90
|
+
2014-06-07 11:37:04, DEBUG GET google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {}
|
91
|
+
2014-06-07 11:37:05, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {:redirects=>0, :followed=>0} 45157 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
92
|
+
2014-06-07 11:37:09, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
93
|
+
2014-06-07 11:37:09, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
94
|
+
2014-06-07 11:37:09, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
95
|
+
2014-06-07 11:37:10, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 41523 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
96
|
+
2014-06-07 11:37:10, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 41523 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
97
|
+
2014-06-07 11:37:10, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
98
|
+
2014-06-07 11:37:10, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
99
|
+
2014-06-07 11:37:10, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
100
|
+
2014-06-07 11:37:10, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
101
|
+
2014-06-07 11:37:10, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
102
|
+
2014-06-07 11:37:10, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
103
|
+
2014-06-07 11:37:10, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
104
|
+
2014-06-07 11:37:14, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
105
|
+
2014-06-07 11:37:14, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
106
|
+
2014-06-07 11:37:14, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
107
|
+
2014-06-07 11:37:15, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 41659 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
108
|
+
2014-06-07 11:37:15, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 41659 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
109
|
+
2014-06-07 11:37:15, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
110
|
+
2014-06-07 11:37:15, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
111
|
+
2014-06-07 11:37:15, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
112
|
+
2014-06-07 11:37:15, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
113
|
+
2014-06-07 11:37:15, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
114
|
+
2014-06-07 11:37:15, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
115
|
+
2014-06-07 11:37:15, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
116
|
+
2014-06-07 11:37:19, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
117
|
+
2014-06-07 11:37:19, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
118
|
+
2014-06-07 11:37:19, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
119
|
+
2014-06-07 11:37:21, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 41659 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
120
|
+
2014-06-07 11:37:21, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 41659 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
121
|
+
2014-06-07 11:37:21, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
122
|
+
2014-06-07 11:37:21, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
123
|
+
2014-06-07 11:37:21, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
124
|
+
2014-06-07 11:37:21, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
125
|
+
2014-06-07 11:37:26, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
126
|
+
2014-06-07 11:37:26, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
127
|
+
2014-06-07 11:37:26, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
128
|
+
2014-06-07 11:37:26, ERROR GET google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} Timeout Exception
|
129
|
+
2014-06-07 11:37:26, WARN DEAD google:backup http://www.google.com/search?client=safari&q=hello Timeout Exception
|
130
|
+
2014-06-07 11:37:26, ERROR GET google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} Timeout Exception
|
131
|
+
2014-06-07 11:37:26, WARN DEAD google:active http://www.google.co.in/search?client=safari&q=hello Timeout Exception
|
132
|
+
2014-06-07 11:37:26, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
133
|
+
2014-06-07 11:37:26, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
134
|
+
2014-06-07 11:37:26, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
135
|
+
2014-06-07 18:28:32, INFO URL Agent starting up...
|
136
|
+
2014-06-07 18:28:32, INFO Log level is DEBUG
|
137
|
+
2014-06-07 18:28:32, INFO Using em_http dispatcher
|
138
|
+
2014-06-07 18:28:32, INFO Pinger started
|
139
|
+
2014-06-07 18:28:32, DEBUG MONITOR
|
140
|
+
2014-06-07 18:28:32, DEBUG DISPATCH google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% GET
|
141
|
+
2014-06-07 18:28:32, DEBUG GET google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {}
|
142
|
+
2014-06-07 18:28:32, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {:redirects=>0, :followed=>0} 45165 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
143
|
+
2014-06-07 18:28:37, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
144
|
+
2014-06-07 18:28:37, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
145
|
+
2014-06-07 18:28:37, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
146
|
+
2014-06-07 18:28:37, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 41633 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
147
|
+
2014-06-07 18:28:37, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 41633 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
148
|
+
2014-06-07 18:28:37, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
149
|
+
2014-06-07 18:28:37, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
150
|
+
2014-06-07 18:28:37, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
151
|
+
2014-06-07 18:28:37, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
152
|
+
2014-06-07 18:28:37, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
153
|
+
2014-06-07 18:28:37, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
154
|
+
2014-06-07 18:28:37, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
155
|
+
2014-06-07 18:28:42, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
156
|
+
2014-06-07 18:28:42, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
157
|
+
2014-06-07 18:28:42, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
158
|
+
2014-06-07 18:28:42, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 41697 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
159
|
+
2014-06-07 18:28:42, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 41697 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
160
|
+
2014-06-07 18:28:42, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
161
|
+
2014-06-07 18:28:42, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
162
|
+
2014-06-07 18:28:42, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
163
|
+
2014-06-07 18:28:42, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
164
|
+
2014-06-07 18:28:42, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
165
|
+
2014-06-07 18:28:42, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
166
|
+
2014-06-07 18:28:42, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
167
|
+
2014-06-07 18:28:47, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
168
|
+
2014-06-07 18:28:47, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
169
|
+
2014-06-07 18:28:47, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
170
|
+
2014-06-07 18:28:47, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 41497 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
171
|
+
2014-06-07 18:28:47, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 41497 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
172
|
+
2014-06-07 18:28:47, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
173
|
+
2014-06-07 18:28:47, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
174
|
+
2014-06-07 18:28:47, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
175
|
+
2014-06-07 18:28:47, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
176
|
+
2014-06-07 18:28:48, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
177
|
+
2014-06-07 18:28:48, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
178
|
+
2014-06-07 18:28:48, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
179
|
+
2014-06-07 18:28:52, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
180
|
+
2014-06-07 18:28:52, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
181
|
+
2014-06-07 18:28:52, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
182
|
+
2014-06-07 18:28:52, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 16403 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
183
|
+
2014-06-07 18:28:52, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 16403 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
184
|
+
2014-06-07 18:28:52, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
185
|
+
2014-06-07 18:28:52, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
186
|
+
2014-06-07 18:28:52, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
187
|
+
2014-06-07 18:28:52, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
188
|
+
2014-06-07 18:40:00, INFO URL Agent starting up...
|
189
|
+
2014-06-07 18:40:00, INFO Log level is DEBUG
|
190
|
+
2014-06-07 18:40:00, INFO Using em_http dispatcher
|
191
|
+
2014-06-07 18:40:00, INFO Pinger started
|
192
|
+
2014-06-07 18:40:00, DEBUG MONITOR
|
193
|
+
2014-06-07 18:40:00, DEBUG DISPATCH google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% GET
|
194
|
+
2014-06-07 18:40:00, DEBUG GET google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {}
|
195
|
+
2014-06-07 18:40:00, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {:redirects=>0, :followed=>0} 45165 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
196
|
+
2014-06-07 18:40:05, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
197
|
+
2014-06-07 18:40:05, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
198
|
+
2014-06-07 18:40:05, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
199
|
+
2014-06-07 18:40:05, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 41633 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
200
|
+
2014-06-07 18:40:05, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 41633 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
201
|
+
2014-06-07 18:40:05, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
202
|
+
2014-06-07 18:40:05, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
203
|
+
2014-06-07 18:40:05, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
204
|
+
2014-06-07 18:40:05, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
205
|
+
2014-06-07 18:40:05, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
206
|
+
2014-06-07 18:40:05, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
207
|
+
2014-06-07 18:40:05, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
208
|
+
2014-06-07 18:40:10, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
209
|
+
2014-06-07 18:40:10, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
210
|
+
2014-06-07 18:40:10, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
211
|
+
2014-06-07 18:40:10, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 41633 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
212
|
+
2014-06-07 18:40:10, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 41633 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
213
|
+
2014-06-07 18:40:10, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
214
|
+
2014-06-07 18:40:10, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
215
|
+
2014-06-07 18:40:10, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
216
|
+
2014-06-07 18:40:10, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
217
|
+
2014-06-07 18:40:10, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
218
|
+
2014-06-07 18:40:10, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
219
|
+
2014-06-07 18:40:10, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
220
|
+
2014-06-07 18:40:15, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
221
|
+
2014-06-07 18:40:15, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
222
|
+
2014-06-07 18:40:15, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
223
|
+
2014-06-07 18:40:15, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 41633 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
224
|
+
2014-06-07 18:40:15, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 41633 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
225
|
+
2014-06-07 18:40:15, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
226
|
+
2014-06-07 18:40:15, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
227
|
+
2014-06-07 18:40:15, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
228
|
+
2014-06-07 18:40:15, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
229
|
+
2014-06-07 18:40:15, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
230
|
+
2014-06-07 18:40:15, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
231
|
+
2014-06-07 18:40:15, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
232
|
+
2014-06-07 18:40:20, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
233
|
+
2014-06-07 18:40:20, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
234
|
+
2014-06-07 18:40:20, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
235
|
+
2014-06-07 18:40:20, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 16403 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
236
|
+
2014-06-07 18:40:20, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 16403 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
237
|
+
2014-06-07 18:40:20, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
238
|
+
2014-06-07 18:40:20, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
239
|
+
2014-06-07 18:40:20, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
240
|
+
2014-06-07 18:40:20, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
241
|
+
2014-06-09 14:30:57, INFO URL Agent starting up...
|
242
|
+
2014-06-09 14:30:57, INFO Log level is DEBUG
|
243
|
+
2014-06-09 14:30:57, INFO Using em_http dispatcher
|
244
|
+
2014-06-09 14:30:57, INFO Pinger started
|
245
|
+
2014-06-09 14:30:57, DEBUG MONITOR
|
246
|
+
2014-06-09 14:30:57, DEBUG DISPATCH google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% GET
|
247
|
+
2014-06-09 14:30:57, DEBUG GET google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {}
|
248
|
+
2014-06-09 14:30:58, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {:redirects=>0, :followed=>0} 45146 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
249
|
+
2014-06-09 14:31:02, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
250
|
+
2014-06-09 14:31:02, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
251
|
+
2014-06-09 14:31:02, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
252
|
+
2014-06-09 14:31:03, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 42739 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
253
|
+
2014-06-09 14:31:03, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 42739 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
254
|
+
2014-06-09 14:31:03, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
255
|
+
2014-06-09 14:31:03, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
256
|
+
2014-06-09 14:31:03, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
257
|
+
2014-06-09 14:31:03, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
258
|
+
2014-06-09 14:31:03, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
259
|
+
2014-06-09 14:31:03, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
260
|
+
2014-06-09 14:31:03, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
261
|
+
2014-06-09 14:31:07, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
262
|
+
2014-06-09 14:31:07, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
263
|
+
2014-06-09 14:31:07, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
264
|
+
2014-06-09 14:31:13, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 42739 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
265
|
+
2014-06-09 14:31:13, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 42739 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
266
|
+
2014-06-09 14:31:13, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
267
|
+
2014-06-09 14:31:13, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
268
|
+
2014-06-09 14:31:13, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
269
|
+
2014-06-09 14:31:13, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
270
|
+
2014-06-09 14:31:13, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
271
|
+
2014-06-09 14:31:13, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
272
|
+
2014-06-09 14:31:13, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
273
|
+
2014-06-09 14:31:17, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
274
|
+
2014-06-09 14:31:17, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
275
|
+
2014-06-09 14:31:17, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
276
|
+
2014-06-09 14:31:18, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 3466 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
277
|
+
2014-06-09 14:31:18, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 3466 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
278
|
+
2014-06-09 14:31:18, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
279
|
+
2014-06-09 14:31:18, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
280
|
+
2014-06-09 14:31:18, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
281
|
+
2014-06-09 14:31:18, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
282
|
+
2014-06-09 15:28:57, INFO URL Agent starting up...
|
283
|
+
2014-06-09 15:28:57, INFO Log level is DEBUG
|
284
|
+
2014-06-09 15:28:57, INFO Using em_http dispatcher
|
285
|
+
2014-06-09 15:28:57, INFO Pinger started
|
286
|
+
2014-06-09 15:28:57, DEBUG MONITOR
|
287
|
+
2014-06-09 15:28:57, DEBUG DISPATCH google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% GET
|
288
|
+
2014-06-09 15:28:57, DEBUG GET google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {}
|
289
|
+
2014-06-09 15:28:58, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {:redirects=>0, :followed=>0} 45154 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
290
|
+
2014-06-09 15:29:02, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
291
|
+
2014-06-09 15:29:02, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
292
|
+
2014-06-09 15:29:02, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
293
|
+
2014-06-09 15:29:03, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 42739 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
294
|
+
2014-06-09 15:29:03, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 42739 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
295
|
+
2014-06-09 15:29:03, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
296
|
+
2014-06-09 15:29:03, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
297
|
+
2014-06-09 15:29:03, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
298
|
+
2014-06-09 15:29:03, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
299
|
+
2014-06-09 15:29:03, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
300
|
+
2014-06-09 15:29:03, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
301
|
+
2014-06-09 15:29:03, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
302
|
+
2014-06-09 15:29:07, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
303
|
+
2014-06-09 15:29:07, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
304
|
+
2014-06-09 15:29:07, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
305
|
+
2014-06-09 15:29:09, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 42599 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
306
|
+
2014-06-09 15:29:09, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 42599 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
307
|
+
2014-06-09 15:29:09, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
308
|
+
2014-06-09 15:29:09, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
309
|
+
2014-06-09 15:29:09, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
310
|
+
2014-06-09 15:29:09, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
311
|
+
2014-06-09 15:29:10, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
312
|
+
2014-06-09 15:29:10, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
313
|
+
2014-06-09 15:29:10, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
314
|
+
2014-06-09 15:29:13, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
315
|
+
2014-06-09 15:29:13, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
316
|
+
2014-06-09 15:29:13, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
317
|
+
2014-06-09 15:29:15, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 42739 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
318
|
+
2014-06-09 15:29:15, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 42739 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
319
|
+
2014-06-09 15:29:15, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
320
|
+
2014-06-09 15:29:15, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
321
|
+
2014-06-09 15:29:15, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
322
|
+
2014-06-09 15:29:15, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
323
|
+
2014-06-09 15:29:16, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
324
|
+
2014-06-09 15:29:16, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
325
|
+
2014-06-09 15:29:16, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
326
|
+
2014-06-09 15:29:18, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
327
|
+
2014-06-09 15:29:18, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
328
|
+
2014-06-09 15:29:18, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
329
|
+
2014-06-09 15:29:18, ERROR GET google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} Connection Error
|
330
|
+
2014-06-09 15:29:18, WARN DEAD google:active http://www.google.co.in/search?client=safari&q=hello Connection Error
|
331
|
+
2014-06-09 15:29:18, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
332
|
+
2014-06-09 15:29:18, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
333
|
+
2014-06-09 15:29:18, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
334
|
+
2014-06-09 15:29:39, INFO URL Agent starting up...
|
335
|
+
2014-06-09 15:29:39, INFO Log level is DEBUG
|
336
|
+
2014-06-09 15:29:39, INFO Using em_http dispatcher
|
337
|
+
2014-06-09 15:29:39, INFO Pinger started
|
338
|
+
2014-06-09 15:29:39, DEBUG MONITOR
|
339
|
+
2014-06-09 15:29:39, DEBUG DISPATCH google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% GET
|
340
|
+
2014-06-09 15:29:39, DEBUG GET google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {}
|
341
|
+
2014-06-09 15:29:41, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {:redirects=>0, :followed=>0} 45146 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
342
|
+
2014-06-09 15:29:44, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
343
|
+
2014-06-09 15:29:44, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
344
|
+
2014-06-09 15:29:44, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
345
|
+
2014-06-09 15:29:45, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 42739 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
346
|
+
2014-06-09 15:29:45, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 42739 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
347
|
+
2014-06-09 15:29:45, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
348
|
+
2014-06-09 15:29:45, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
349
|
+
2014-06-09 15:29:45, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
350
|
+
2014-06-09 15:29:45, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
351
|
+
2014-06-09 15:29:46, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
352
|
+
2014-06-09 15:29:46, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
353
|
+
2014-06-09 15:29:46, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
354
|
+
2014-06-09 15:29:50, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
355
|
+
2014-06-09 15:29:50, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
356
|
+
2014-06-09 15:29:50, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
357
|
+
2014-06-09 15:29:50, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 42739 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
358
|
+
2014-06-09 15:29:50, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 42739 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
359
|
+
2014-06-09 15:29:50, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
360
|
+
2014-06-09 15:29:50, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
361
|
+
2014-06-09 15:29:50, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
362
|
+
2014-06-09 15:29:50, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
363
|
+
2014-06-09 15:29:51, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
364
|
+
2014-06-09 15:29:51, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
365
|
+
2014-06-09 15:29:51, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
366
|
+
2014-06-09 15:29:55, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
367
|
+
2014-06-09 15:29:55, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
368
|
+
2014-06-09 15:29:55, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
369
|
+
2014-06-09 15:29:56, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 42739 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
370
|
+
2014-06-09 15:29:56, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 42739 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
371
|
+
2014-06-09 15:29:56, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
372
|
+
2014-06-09 15:29:56, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
373
|
+
2014-06-09 15:29:56, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
374
|
+
2014-06-09 15:29:56, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
375
|
+
2014-06-09 15:29:56, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
376
|
+
2014-06-09 15:29:56, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
377
|
+
2014-06-09 15:29:56, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
378
|
+
2014-06-09 15:30:00, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
379
|
+
2014-06-09 15:30:00, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
380
|
+
2014-06-09 15:30:00, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
381
|
+
2014-06-09 15:30:01, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 23493 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
382
|
+
2014-06-09 15:30:01, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 23493 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
383
|
+
2014-06-09 15:30:01, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
384
|
+
2014-06-09 15:30:01, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
385
|
+
2014-06-09 15:30:01, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
386
|
+
2014-06-09 15:30:01, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
387
|
+
2014-06-24 14:15:03, INFO URL Agent starting up...
|
388
|
+
2014-06-24 14:15:03, INFO Log level is DEBUG
|
389
|
+
2014-06-24 14:15:03, INFO Using em_http dispatcher
|
390
|
+
2014-06-24 14:15:03, INFO Pinger started
|
391
|
+
2014-06-24 14:15:03, DEBUG MONITOR
|
392
|
+
2014-06-24 14:15:03, DEBUG DISPATCH google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% GET
|
393
|
+
2014-06-24 14:15:03, DEBUG GET google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {}
|
394
|
+
2014-06-24 14:15:04, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {:redirects=>0, :followed=>0} 45117 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
395
|
+
2014-06-24 14:15:08, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
396
|
+
2014-06-24 14:15:08, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
397
|
+
2014-06-24 14:15:08, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
398
|
+
2014-06-24 14:15:09, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 42025 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
399
|
+
2014-06-24 14:15:09, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 42025 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
400
|
+
2014-06-24 14:15:09, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
401
|
+
2014-06-24 14:15:09, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
402
|
+
2014-06-24 14:15:09, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
403
|
+
2014-06-24 14:15:09, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
404
|
+
2014-06-24 14:15:10, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
405
|
+
2014-06-24 14:15:10, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
406
|
+
2014-06-24 14:15:10, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
407
|
+
2014-06-24 14:15:13, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
408
|
+
2014-06-24 14:15:13, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
409
|
+
2014-06-24 14:15:13, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
410
|
+
2014-06-24 14:15:14, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 42163 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
411
|
+
2014-06-24 14:15:14, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 42163 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
412
|
+
2014-06-24 14:15:14, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
413
|
+
2014-06-24 14:15:14, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
414
|
+
2014-06-24 14:15:14, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
415
|
+
2014-06-24 14:15:14, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
416
|
+
2014-06-24 14:15:14, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
417
|
+
2014-06-24 14:15:14, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
418
|
+
2014-06-24 14:15:14, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
419
|
+
2014-06-24 14:15:18, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
420
|
+
2014-06-24 14:15:18, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
421
|
+
2014-06-24 14:15:18, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
422
|
+
2014-06-24 14:15:19, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 42163 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
423
|
+
2014-06-24 14:15:19, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 42163 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
424
|
+
2014-06-24 14:15:19, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
425
|
+
2014-06-24 14:15:19, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
426
|
+
2014-06-24 14:15:19, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
427
|
+
2014-06-24 14:15:19, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
428
|
+
2014-06-24 14:15:19, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
429
|
+
2014-06-24 14:15:19, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
430
|
+
2014-06-24 14:15:19, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
431
|
+
2014-06-24 14:15:23, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
432
|
+
2014-06-24 14:15:23, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
433
|
+
2014-06-24 14:15:23, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
434
|
+
2014-06-24 14:15:24, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 16416 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
435
|
+
2014-06-24 14:15:24, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 16416 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
436
|
+
2014-06-24 14:15:24, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
437
|
+
2014-06-24 14:15:24, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
438
|
+
2014-06-24 14:15:24, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
439
|
+
2014-06-24 14:15:24, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
440
|
+
2014-06-24 14:17:14, INFO URL Agent starting up...
|
441
|
+
2014-06-24 14:17:14, INFO Log level is DEBUG
|
442
|
+
2014-06-24 14:17:14, INFO Using em_http dispatcher
|
443
|
+
2014-06-24 14:17:14, INFO Pinger started
|
444
|
+
2014-06-24 14:17:14, DEBUG MONITOR
|
445
|
+
2014-06-24 14:17:14, DEBUG DISPATCH google:active http://rubygems.org/search?query=%%query%% GET
|
446
|
+
2014-06-24 14:17:14, DEBUG GET google:active http://rubygems.org/search?query=%%query%% {}
|
447
|
+
2014-06-24 14:17:14, DEBUG GET-RESPONSE google:active http://rubygems.org/search?query=%%query%% {:redirects=>0, :followed=>0} 0 ""
|
448
|
+
2014-06-24 14:17:19, DEBUG CHECK google:active http://rubygems.org/search?query=hello
|
449
|
+
2014-06-24 14:17:19, DEBUG DISPATCH google:active http://rubygems.org/search?query=hello GET
|
450
|
+
2014-06-24 14:17:19, DEBUG GET google:active http://rubygems.org/search?query=hello {}
|
451
|
+
2014-06-24 14:17:20, DEBUG GET-RESPONSE google:active http://rubygems.org/search?query=hello {:redirects=>0, :followed=>0} 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
452
|
+
2014-06-24 14:17:20, DEBUG CHECK-RESPONSE google:active http://rubygems.org/search?query=hello 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
453
|
+
2014-06-24 14:17:20, INFO ALIVE google:active http://rubygems.org/search?query=hello
|
454
|
+
2014-06-24 14:17:20, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
455
|
+
2014-06-24 14:17:20, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
456
|
+
2014-06-24 14:17:20, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
457
|
+
2014-06-24 14:17:21, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
458
|
+
2014-06-24 14:17:21, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
459
|
+
2014-06-24 14:17:21, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
460
|
+
2014-06-24 14:17:24, DEBUG CHECK google:active http://rubygems.org/search?query=hello
|
461
|
+
2014-06-24 14:17:24, DEBUG DISPATCH google:active http://rubygems.org/search?query=hello GET
|
462
|
+
2014-06-24 14:17:24, DEBUG GET google:active http://rubygems.org/search?query=hello {}
|
463
|
+
2014-06-24 14:17:31, DEBUG GET-RESPONSE google:active http://rubygems.org/search?query=hello {:redirects=>0, :followed=>0} 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
464
|
+
2014-06-24 14:17:31, DEBUG CHECK-RESPONSE google:active http://rubygems.org/search?query=hello 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
465
|
+
2014-06-24 14:17:31, INFO ALIVE google:active http://rubygems.org/search?query=hello
|
466
|
+
2014-06-24 14:17:31, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
467
|
+
2014-06-24 14:17:31, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
468
|
+
2014-06-24 14:17:31, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
469
|
+
2014-06-24 14:17:31, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
470
|
+
2014-06-24 14:17:31, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
471
|
+
2014-06-24 14:17:31, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
472
|
+
2014-06-24 14:17:34, DEBUG CHECK google:active http://rubygems.org/search?query=hello
|
473
|
+
2014-06-24 14:17:34, DEBUG DISPATCH google:active http://rubygems.org/search?query=hello GET
|
474
|
+
2014-06-24 14:17:34, DEBUG GET google:active http://rubygems.org/search?query=hello {}
|
475
|
+
2014-06-24 14:17:35, ERROR GET google:active http://rubygems.org/search?query=hello {:redirects=>0, :followed=>0} Connection Error
|
476
|
+
2014-06-24 14:17:35, WARN DEAD google:active http://rubygems.org/search?query=hello Connection Error
|
477
|
+
2014-06-24 14:17:35, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
478
|
+
2014-06-24 14:17:35, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
479
|
+
2014-06-24 14:17:35, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
480
|
+
2014-06-24 14:18:10, INFO URL Agent starting up...
|
481
|
+
2014-06-24 14:18:10, INFO Log level is DEBUG
|
482
|
+
2014-06-24 14:18:10, INFO Using em_http dispatcher
|
483
|
+
2014-06-24 14:18:10, INFO Pinger started
|
484
|
+
2014-06-24 14:18:10, DEBUG MONITOR
|
485
|
+
2014-06-24 14:18:10, DEBUG DISPATCH google:active http://rubygems.org/search?query=%%query%% GET
|
486
|
+
2014-06-24 14:18:10, DEBUG GET google:active http://rubygems.org/search?query=%%query%% {}
|
487
|
+
2014-06-24 14:18:11, DEBUG GET-RESPONSE google:active http://rubygems.org/search?query=%%query%% {:redirects=>0, :followed=>0} 0 ""
|
488
|
+
2014-06-24 14:18:15, DEBUG CHECK google:active http://rubygems.org/search?query=hello
|
489
|
+
2014-06-24 14:18:15, DEBUG DISPATCH google:active http://rubygems.org/search?query=hello GET
|
490
|
+
2014-06-24 14:18:15, DEBUG GET google:active http://rubygems.org/search?query=hello {}
|
491
|
+
2014-06-24 14:18:17, DEBUG GET-RESPONSE google:active http://rubygems.org/search?query=hello {:redirects=>0, :followed=>0} 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
492
|
+
2014-06-24 14:18:17, DEBUG CHECK-RESPONSE google:active http://rubygems.org/search?query=hello 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
493
|
+
2014-06-24 14:18:17, INFO ALIVE google:active http://rubygems.org/search?query=hello
|
494
|
+
2014-06-24 14:18:17, DEBUG CHECK google:backup http://rubygems.org/search?query=hello
|
495
|
+
2014-06-24 14:18:17, DEBUG DISPATCH google:backup http://rubygems.org/search?query=hello GET
|
496
|
+
2014-06-24 14:18:17, DEBUG GET google:backup http://rubygems.org/search?query=hello {}
|
497
|
+
2014-06-24 14:18:18, DEBUG GET-RESPONSE google:backup http://rubygems.org/search?query=hello {:redirects=>0, :followed=>0} 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
498
|
+
2014-06-24 14:18:18, DEBUG CHECK-RESPONSE google:backup http://rubygems.org/search?query=hello 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
499
|
+
2014-06-24 14:18:18, INFO ALIVE google:backup http://rubygems.org/search?query=hello
|
500
|
+
2014-06-24 14:18:20, DEBUG CHECK google:active http://rubygems.org/search?query=hello
|
501
|
+
2014-06-24 14:18:20, DEBUG DISPATCH google:active http://rubygems.org/search?query=hello GET
|
502
|
+
2014-06-24 14:18:20, DEBUG GET google:active http://rubygems.org/search?query=hello {}
|
503
|
+
2014-06-24 14:18:22, DEBUG GET-RESPONSE google:active http://rubygems.org/search?query=hello {:redirects=>0, :followed=>0} 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
504
|
+
2014-06-24 14:18:22, DEBUG CHECK-RESPONSE google:active http://rubygems.org/search?query=hello 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
505
|
+
2014-06-24 14:18:22, INFO ALIVE google:active http://rubygems.org/search?query=hello
|
506
|
+
2014-06-24 14:18:22, DEBUG CHECK google:backup http://rubygems.org/search?query=hello
|
507
|
+
2014-06-24 14:18:22, DEBUG DISPATCH google:backup http://rubygems.org/search?query=hello GET
|
508
|
+
2014-06-24 14:18:22, DEBUG GET google:backup http://rubygems.org/search?query=hello {}
|
509
|
+
2014-06-24 14:18:23, DEBUG GET-RESPONSE google:backup http://rubygems.org/search?query=hello {:redirects=>0, :followed=>0} 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
510
|
+
2014-06-24 14:18:23, DEBUG CHECK-RESPONSE google:backup http://rubygems.org/search?query=hello 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
511
|
+
2014-06-24 14:18:23, INFO ALIVE google:backup http://rubygems.org/search?query=hello
|
512
|
+
2014-06-24 14:18:25, DEBUG CHECK google:active http://rubygems.org/search?query=hello
|
513
|
+
2014-06-24 14:18:25, DEBUG DISPATCH google:active http://rubygems.org/search?query=hello GET
|
514
|
+
2014-06-24 14:18:25, DEBUG GET google:active http://rubygems.org/search?query=hello {}
|
515
|
+
2014-06-24 14:18:27, DEBUG GET-RESPONSE google:active http://rubygems.org/search?query=hello {:redirects=>0, :followed=>0} 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
516
|
+
2014-06-24 14:18:27, DEBUG CHECK-RESPONSE google:active http://rubygems.org/search?query=hello 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
517
|
+
2014-06-24 14:18:27, INFO ALIVE google:active http://rubygems.org/search?query=hello
|
518
|
+
2014-06-24 14:18:27, DEBUG CHECK google:backup http://rubygems.org/search?query=hello
|
519
|
+
2014-06-24 14:18:27, DEBUG DISPATCH google:backup http://rubygems.org/search?query=hello GET
|
520
|
+
2014-06-24 14:18:27, DEBUG GET google:backup http://rubygems.org/search?query=hello {}
|
521
|
+
2014-06-24 14:18:29, DEBUG GET-RESPONSE google:backup http://rubygems.org/search?query=hello {:redirects=>0, :followed=>0} 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
522
|
+
2014-06-24 14:18:29, DEBUG CHECK-RESPONSE google:backup http://rubygems.org/search?query=hello 14228 "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"google-site-verification\" content=\"AuesbWQ9MCDMmC1lbDlw25
|
523
|
+
2014-06-24 14:18:29, INFO ALIVE google:backup http://rubygems.org/search?query=hello
|
524
|
+
2014-06-24 14:18:31, DEBUG CHECK google:active http://rubygems.org/search?query=hello
|
525
|
+
2014-06-24 14:18:31, DEBUG DISPATCH google:active http://rubygems.org/search?query=hello GET
|
526
|
+
2014-06-24 14:18:31, DEBUG GET google:active http://rubygems.org/search?query=hello {}
|
527
|
+
2014-06-24 14:18:31, ERROR GET google:active http://rubygems.org/search?query=hello {:redirects=>0, :followed=>0} Connection Error
|
528
|
+
2014-06-24 14:18:31, WARN DEAD google:active http://rubygems.org/search?query=hello Connection Error
|
529
|
+
2014-06-24 14:18:31, DEBUG CHECK google:backup http://rubygems.org/search?query=hello
|
530
|
+
2014-06-24 14:18:31, DEBUG DISPATCH google:backup http://rubygems.org/search?query=hello GET
|
531
|
+
2014-06-24 14:18:31, DEBUG GET google:backup http://rubygems.org/search?query=hello {}
|
532
|
+
2014-06-24 15:05:02, INFO URL Agent starting up...
|
533
|
+
2014-06-24 15:05:02, INFO Log level is DEBUG
|
534
|
+
2014-06-24 15:05:02, INFO Using em_http dispatcher
|
535
|
+
2014-06-24 15:05:02, INFO Pinger started
|
536
|
+
2014-06-24 15:05:02, DEBUG MONITOR
|
537
|
+
2014-06-24 15:05:02, DEBUG DISPATCH google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% GET
|
538
|
+
2014-06-24 15:05:02, DEBUG GET google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {}
|
539
|
+
2014-06-24 15:05:03, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {:redirects=>0, :followed=>0} 45109 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
540
|
+
2014-06-24 15:05:07, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
541
|
+
2014-06-24 15:05:07, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
542
|
+
2014-06-24 15:05:07, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
543
|
+
2014-06-24 15:05:08, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 42171 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
544
|
+
2014-06-24 15:05:08, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 42171 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
545
|
+
2014-06-24 15:05:08, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
546
|
+
2014-06-24 15:05:08, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
547
|
+
2014-06-24 15:05:08, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
548
|
+
2014-06-24 15:05:08, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
549
|
+
2014-06-24 15:05:08, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
550
|
+
2014-06-24 15:05:08, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
551
|
+
2014-06-24 15:05:08, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
552
|
+
2014-06-24 15:05:12, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
553
|
+
2014-06-24 15:05:12, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
554
|
+
2014-06-24 15:05:12, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
555
|
+
2014-06-24 15:05:13, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 42141 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
556
|
+
2014-06-24 15:05:13, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 42141 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
557
|
+
2014-06-24 15:05:13, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
558
|
+
2014-06-24 15:05:13, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
559
|
+
2014-06-24 15:05:13, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
560
|
+
2014-06-24 15:05:13, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
561
|
+
2014-06-24 15:05:13, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
562
|
+
2014-06-24 15:05:13, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
563
|
+
2014-06-24 15:05:13, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
564
|
+
2014-06-24 15:05:17, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
565
|
+
2014-06-24 15:05:17, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
566
|
+
2014-06-24 15:05:17, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
567
|
+
2014-06-24 15:05:18, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 42033 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
568
|
+
2014-06-24 15:05:18, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 42033 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
569
|
+
2014-06-24 15:05:18, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
570
|
+
2014-06-24 15:05:18, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
571
|
+
2014-06-24 15:05:18, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
572
|
+
2014-06-24 15:05:18, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
573
|
+
2014-06-24 15:05:23, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
574
|
+
2014-06-24 15:05:23, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
575
|
+
2014-06-24 15:05:23, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
576
|
+
2014-06-24 15:05:23, ERROR GET google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} Connection Error
|
577
|
+
2014-06-24 15:05:23, WARN DEAD google:backup http://www.google.com/search?client=safari&q=hello Connection Error
|
578
|
+
2014-06-24 15:05:23, ERROR GET google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} Connection Error
|
579
|
+
2014-06-24 15:05:23, WARN DEAD google:active http://www.google.co.in/search?client=safari&q=hello Connection Error
|
580
|
+
2014-06-24 15:05:23, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
581
|
+
2014-06-24 15:05:23, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
582
|
+
2014-06-24 15:05:23, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
583
|
+
2014-07-04 10:59:06, INFO URL Agent starting up...
|
584
|
+
2014-07-04 10:59:06, INFO Log level is DEBUG
|
585
|
+
2014-07-04 10:59:06, INFO Using em_http dispatcher
|
586
|
+
2014-07-04 10:59:06, INFO Pinger started
|
587
|
+
2014-07-04 10:59:06, DEBUG MONITOR
|
588
|
+
2014-07-04 10:59:06, DEBUG DISPATCH google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% GET
|
589
|
+
2014-07-04 10:59:06, DEBUG GET google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {}
|
590
|
+
2014-07-04 10:59:07, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=%%client%%&q=%%query%% {:redirects=>0, :followed=>0} 44489 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
591
|
+
2014-07-04 10:59:11, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
592
|
+
2014-07-04 10:59:11, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
593
|
+
2014-07-04 10:59:11, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
594
|
+
2014-07-04 10:59:12, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 41613 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
595
|
+
2014-07-04 10:59:12, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 41613 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
596
|
+
2014-07-04 10:59:12, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
597
|
+
2014-07-04 10:59:12, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
598
|
+
2014-07-04 10:59:12, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
599
|
+
2014-07-04 10:59:12, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
600
|
+
2014-07-04 10:59:12, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
601
|
+
2014-07-04 10:59:12, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
602
|
+
2014-07-04 10:59:12, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
603
|
+
2014-07-04 10:59:16, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
604
|
+
2014-07-04 10:59:16, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
605
|
+
2014-07-04 10:59:16, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
606
|
+
2014-07-04 10:59:17, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 41613 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
607
|
+
2014-07-04 10:59:17, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 41613 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
608
|
+
2014-07-04 10:59:17, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
609
|
+
2014-07-04 10:59:17, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
610
|
+
2014-07-04 10:59:17, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
611
|
+
2014-07-04 10:59:17, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
612
|
+
2014-07-04 10:59:17, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
613
|
+
2014-07-04 10:59:17, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
614
|
+
2014-07-04 10:59:17, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
615
|
+
2014-07-04 10:59:21, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
616
|
+
2014-07-04 10:59:21, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
617
|
+
2014-07-04 10:59:21, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
618
|
+
2014-07-04 10:59:22, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 41613 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
619
|
+
2014-07-04 10:59:22, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 41613 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
620
|
+
2014-07-04 10:59:22, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
621
|
+
2014-07-04 10:59:22, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
622
|
+
2014-07-04 10:59:22, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
623
|
+
2014-07-04 10:59:22, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|
624
|
+
2014-07-04 10:59:22, DEBUG GET-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello {:redirects=>0, :followed=>0} 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
625
|
+
2014-07-04 10:59:22, DEBUG CHECK-RESPONSE google:backup http://www.google.com/search?client=safari&q=hello 297 "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>302 Moved</TITLE></HEAD><BODY>\n<H1>302 Moved</H1>\nThe document has moved\n<A HREF=\"http://www.google.co.in
|
626
|
+
2014-07-04 10:59:22, INFO ALIVE google:backup http://www.google.com/search?client=safari&q=hello
|
627
|
+
2014-07-04 10:59:27, DEBUG CHECK google:active http://www.google.co.in/search?client=safari&q=hello
|
628
|
+
2014-07-04 10:59:27, DEBUG DISPATCH google:active http://www.google.co.in/search?client=safari&q=hello GET
|
629
|
+
2014-07-04 10:59:27, DEBUG GET google:active http://www.google.co.in/search?client=safari&q=hello {}
|
630
|
+
2014-07-04 10:59:27, DEBUG GET-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello {:redirects=>0, :followed=>0} 2048 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
631
|
+
2014-07-04 10:59:27, DEBUG CHECK-RESPONSE google:active http://www.google.co.in/search?client=safari&q=hello 2048 "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-IN\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/images/google_fa
|
632
|
+
2014-07-04 10:59:27, INFO ALIVE google:active http://www.google.co.in/search?client=safari&q=hello
|
633
|
+
2014-07-04 10:59:27, DEBUG CHECK google:backup http://www.google.com/search?client=safari&q=hello
|
634
|
+
2014-07-04 10:59:27, DEBUG DISPATCH google:backup http://www.google.com/search?client=safari&q=hello GET
|
635
|
+
2014-07-04 10:59:27, DEBUG GET google:backup http://www.google.com/search?client=safari&q=hello {}
|