sumo-search 2.0.0 → 2.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7ed2fa4eca034af9b83515cfcee0e1f7f491ea3a
4
- data.tar.gz: 75c6c374a0a966aaf3fefcc62d6c6400845003c9
3
+ metadata.gz: 04a0f87837909d1ade04e588c11724ba871affff
4
+ data.tar.gz: 99bca861f0c58b76c5508bd7da3af538422ec36e
5
5
  SHA512:
6
- metadata.gz: c7e7ea816310a6c07ccb81e52c8686741c4f99ed100fcce5ec702d7a9f651635cfb3eed35e219a0e4bde7345d7be766ff85967a9885c7fa21862905750ef8ef0
7
- data.tar.gz: 33e61f4c901faad6ded980d08acd6a99cf72af45b40accc9f89dbfdeec19b5f81112b855d93691328db931aa2739795bd96feda9a76922db66e1bbe6ac030707
6
+ metadata.gz: 77cc041f5adb66b3562797a2d4341ea95820918beed2f3582676db1bc465c700a609490041c10f38c06216088e005c5133fddcca3a0a14ad67d1bdfb3bc882ba
7
+ data.tar.gz: 90fe696fb8e6ad6eea5a61cad6b156c269c9b14fd4652ea329b630ba70ba5d12f02699a7fa9893a79844899a1bdb90d72800238a61c9fa28f035cca748bf1414
data/.gitignore CHANGED
@@ -2,3 +2,4 @@
2
2
  *.swp
3
3
  *.gem
4
4
  Gemfile.lock
5
+ coverage/
@@ -8,11 +8,11 @@ class Sumo::CLI < Clamp::Command
8
8
  option ['-r', '--records'], :flag, 'Extract records instead of messages.'
9
9
  option ['-v', '--version'], :flag, 'Print the version.'
10
10
 
11
- banner <<-EOS.gsub(/^.*\|/, '')
11
+ banner <<-EOS.gsub(/^\s+\|/, '')
12
12
  |Example
13
13
  |
14
14
  |Search for all of the logs containing 'HealthMetrics' on March 4, 2014,
15
- |extracting the message key from the response:
15
+ |extracting the 'message' key from the response:
16
16
  |
17
17
  |sumo --query HealthMetrics \\
18
18
  | --from 2014-03-14T00:00:00 \\
@@ -24,23 +24,21 @@ class Sumo::CLI < Clamp::Command
24
24
  # This method is called when the CLI is run.
25
25
  def execute
26
26
  if version?
27
- puts Sumo::VERSION
27
+ $stdout.puts Sumo::VERSION
28
28
  elsif records?
29
29
  search.records.each { |record| $stdout.puts record }
30
30
  else
31
- search.messages.each { |message| $stdout.puts format_message(message) }
31
+ search.messages.each { |msg| $stdout.puts format_message(msg['_raw']) }
32
32
  end
33
33
  rescue StandardError => ex
34
34
  $stderr.puts "#{ex.class}: #{ex.message}"
35
35
  exit 1
36
36
  end
37
37
 
38
- def format_message(message)
39
- if extract_key.nil?
40
- message['_raw']
41
- else
42
- JSON.parse(message['_raw'])[extract_key]
43
- end
38
+ def format_message(raw)
39
+ JSON.parse(raw)[extract_key] || raw
40
+ rescue StandardError
41
+ raw
44
42
  end
45
43
  private :format_message
46
44
 
@@ -17,21 +17,11 @@ class Sumo::Collection
17
17
  # Iterate through each member of the collection, lazily making HTTP requests
18
18
  # to get the next member. If no block is given, an `Enumerator` is returned.
19
19
  def each(&block)
20
- if block.nil?
21
- enumerator
22
- else
23
- enumerator.each { |value| block.call(value) }
24
- self
25
- end
26
- end
27
-
28
- def enumerator
29
- @enumerator ||= Enumerator.new do |values|
30
- page.each { |value| values << value }
31
- remaining.each { |value| values << value } if has_next_page?
32
- end
20
+ return enum_for(:each) if block.nil?
21
+ page.each { |value| block.call(value) }
22
+ remaining.each { |value| block.call(value) } if has_next_page?
23
+ self
33
24
  end
34
- private :enumerator
35
25
 
36
26
  def values(hash)
37
27
  @get_values.call(hash)
@@ -71,6 +61,7 @@ class Sumo::Collection
71
61
  def has_results?
72
62
  limit > 0
73
63
  end
64
+ private :has_results?
74
65
 
75
66
  def limit
76
67
  @limit ||= begin
@@ -48,7 +48,7 @@ class Sumo::Config
48
48
  private :parse_file
49
49
 
50
50
  def bad_config_file(message)
51
- <<-EOS.gsub(/^.*\|/, '')
51
+ <<-EOS.gsub(/^\s+\|/, '')
52
52
  |#{message}
53
53
  |
54
54
  |sumo-search now expects its config file (located at #{config_file}) to
@@ -2,7 +2,7 @@
2
2
  module Sumo
3
3
  MAJOR = 2
4
4
  MINOR = 0
5
- PATCH = 0
5
+ PATCH = 1
6
6
  RELEASE = nil
7
7
 
8
8
  VERSION = [MAJOR, MINOR, PATCH, RELEASE].compact.join('.')
@@ -0,0 +1,82 @@
1
+ require 'spec_helper'
2
+
3
+ describe Sumo::CLI do
4
+ subject { Sumo::CLI.new(File.expand_path(File.basename($0))) }
5
+
6
+ around do |example|
7
+ begin
8
+ $stdout = StringIO.new
9
+ example.run
10
+ ensure
11
+ $stdout = STDOUT
12
+ end
13
+ end
14
+
15
+ context 'when the `-h` flag is passed' do
16
+ let(:args) { ['-h'] }
17
+
18
+ it 'prints the help message' do
19
+ expect { subject.run(args) }.to raise_error(Clamp::HelpWanted)
20
+ end
21
+ end
22
+
23
+ context 'when the `-v` flag is passed' do
24
+ let(:args) { ['-v'] }
25
+
26
+ before { subject.run(args) }
27
+
28
+ it 'returns the version' do
29
+ expect($stdout.string.strip).to eq(Sumo::VERSION)
30
+ end
31
+ end
32
+
33
+ context 'when an incomplete query is passed' do
34
+ let(:args) { ['-q', 'Some Query'] }
35
+
36
+ before { Sumo::Search.stub(:create).and_raise(Sumo::Error::ClientError) }
37
+
38
+ it 'exits with status `1`' do
39
+ pid = fork { subject.run(args) }
40
+ Process.wait(pid)
41
+ expect($?).to_not be_success
42
+ end
43
+ end
44
+
45
+ context 'when a complete query is passed in' do
46
+ let(:args) {
47
+ %w(-q TEST -f 2014-01-01T00:00:00 -t 2014-01-02T00:00:00 -z EST)
48
+ }
49
+
50
+ context 'when there are no credentials' do
51
+ before { Sumo.stub(:creds).and_raise(Sumo::Error::NoCredsFound) }
52
+
53
+ it 'exits with status `1`' do
54
+ pid = fork { subject.run(args) }
55
+ Process.wait(pid)
56
+ expect($?).to_not be_success
57
+ end
58
+ end
59
+
60
+ context 'when there are credentials' do
61
+ let(:creds) {
62
+ {
63
+ 'email' => 'test@email.net',
64
+ 'password' => 'sumo'
65
+ }
66
+ }
67
+ let(:messages) { [{ '_raw' => 'first' }, { '_raw' => 'second' }] }
68
+ let(:raw_messages) { messages.map { |message| message['_raw'] } }
69
+ let(:fake_search) { double(Sumo::Search, :messages => messages) }
70
+
71
+ before do
72
+ Sumo.stub(:creds).and_return(creds)
73
+ Sumo::Search.stub(:create).and_return(fake_search)
74
+ end
75
+
76
+ it 'executes the query' do
77
+ subject.run(args)
78
+ expect($stdout.string.strip).to eq(raw_messages.join("\n"))
79
+ end
80
+ end
81
+ end
82
+ end
@@ -1,5 +1,8 @@
1
1
  $LOAD_PATH << File.join(File.dirname(__FILE__), '..', 'lib')
2
2
 
3
+ require 'codeclimate-test-reporter'
4
+ CodeClimate::TestReporter.start unless ENV['CODECLIMATE_REPO_TOKEN'].nil?
5
+
3
6
  require 'rspec'
4
7
  require 'pry'
5
8
  require 'sumo'
@@ -23,11 +23,11 @@ http_interactions:
23
23
  Content-Type:
24
24
  - application/json
25
25
  Date:
26
- - Wed, 26 Mar 2014 13:49:39 GMT
26
+ - Tue, 08 Apr 2014 15:34:07 GMT
27
27
  Expires:
28
28
  - Thu, 01-Jan-1970 00:00:00 GMT
29
29
  Location:
30
- - http://api.sumologic.com/api/v1/search/jobs/3B104AE0F7DE35D4
30
+ - http://api.sumologic.com/api/v1/search/jobs/25B8F7916846422C
31
31
  Strict-Transport-Security:
32
32
  - max-age=15552000
33
33
  Content-Length:
@@ -36,7 +36,7 @@ http_interactions:
36
36
  - Close
37
37
  body:
38
38
  encoding: UTF-8
39
- string: "{\"id\":\"3B104AE0F7DE35D4\",\"link\":{\"rel\":\"filtered\",\"href\":\"filtered\"}}"
39
+ string: "{\"id\":\"25B8F7916846422C\",\"link\":{\"rel\":\"filtered\",\"href\":\"filtered\"}}"
40
40
  http_version:
41
- recorded_at: Wed, 26 Mar 2014 13:49:42 GMT
41
+ recorded_at: Tue, 08 Apr 2014 15:34:07 GMT
42
42
  recorded_with: VCR 2.8.0
@@ -21,9 +21,9 @@ http_interactions:
21
21
  Content-Type:
22
22
  - application/json
23
23
  Date:
24
- - Wed, 26 Mar 2014 13:49:42 GMT
24
+ - Tue, 08 Apr 2014 15:34:12 GMT
25
25
  Location:
26
- - http://api.sumologic.com/api/v1/search/jobs/33B261D0A456467D
26
+ - http://api.sumologic.com/api/v1/search/jobs/452E2B11B758D3D8
27
27
  Strict-Transport-Security:
28
28
  - max-age=15552000
29
29
  Content-Length:
@@ -32,12 +32,12 @@ http_interactions:
32
32
  - Close
33
33
  body:
34
34
  encoding: UTF-8
35
- string: "{\"id\":\"33B261D0A456467D\",\"link\":{\"rel\":\"filtered\",\"href\":\"filtered\"}}"
35
+ string: "{\"id\":\"452E2B11B758D3D8\",\"link\":{\"rel\":\"filtered\",\"href\":\"filtered\"}}"
36
36
  http_version:
37
- recorded_at: Wed, 26 Mar 2014 13:49:43 GMT
37
+ recorded_at: Tue, 08 Apr 2014 15:34:07 GMT
38
38
  - request:
39
39
  method: delete
40
- uri: https://api.sumologic.com/api/v1/search/jobs/33B261D0A456467D
40
+ uri: https://api.sumologic.com/api/v1/search/jobs/452E2B11B758D3D8
41
41
  body:
42
42
  encoding: US-ASCII
43
43
  string: ''
@@ -56,21 +56,21 @@ http_interactions:
56
56
  Content-Type:
57
57
  - application/json
58
58
  Date:
59
- - Wed, 26 Mar 2014 13:49:42 GMT
59
+ - Tue, 08 Apr 2014 15:34:13 GMT
60
60
  Strict-Transport-Security:
61
61
  - max-age=15552000
62
- Content-Length:
63
- - '25'
62
+ transfer-encoding:
63
+ - ''
64
64
  Connection:
65
65
  - Close
66
66
  body:
67
67
  encoding: UTF-8
68
- string: "{\"id\":\"33B261D0A456467D\"}"
68
+ string: "{\"id\":\"452E2B11B758D3D8\"}"
69
69
  http_version:
70
- recorded_at: Wed, 26 Mar 2014 13:49:43 GMT
70
+ recorded_at: Tue, 08 Apr 2014 15:34:08 GMT
71
71
  - request:
72
72
  method: get
73
- uri: https://api.sumologic.com/api/v1/search/jobs/33B261D0A456467D
73
+ uri: https://api.sumologic.com/api/v1/search/jobs/452E2B11B758D3D8
74
74
  body:
75
75
  encoding: US-ASCII
76
76
  string: ''
@@ -89,14 +89,14 @@ http_interactions:
89
89
  Content-Type:
90
90
  - application/json; charset=ISO-8859-1
91
91
  Date:
92
- - Wed, 26 Mar 2014 13:49:42 GMT
92
+ - Tue, 08 Apr 2014 15:34:13 GMT
93
93
  Content-Length:
94
94
  - '124'
95
95
  Connection:
96
96
  - Close
97
97
  body:
98
98
  encoding: UTF-8
99
- string: "{\"status\":404,\"id\":\"XMQNV-4J2LJ-BVXPU\",\"code\":\"filtered\",\"message\":\"filtered\"}"
99
+ string: "{\"status\":404,\"id\":\"A49JI-O54IC-C39UJ\",\"code\":\"filtered\",\"message\":\"filtered\"}"
100
100
  http_version:
101
- recorded_at: Wed, 26 Mar 2014 13:49:43 GMT
101
+ recorded_at: Tue, 08 Apr 2014 15:34:08 GMT
102
102
  recorded_with: VCR 2.8.0
@@ -21,23 +21,23 @@ http_interactions:
21
21
  Content-Type:
22
22
  - application/json
23
23
  Date:
24
- - Wed, 26 Mar 2014 13:49:43 GMT
24
+ - Tue, 08 Apr 2014 15:34:13 GMT
25
25
  Location:
26
- - http://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
26
+ - http://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
27
27
  Strict-Transport-Security:
28
28
  - max-age=15552000
29
- transfer-encoding:
30
- - ''
29
+ Content-Length:
30
+ - '117'
31
31
  Connection:
32
32
  - Close
33
33
  body:
34
34
  encoding: UTF-8
35
- string: "{\"id\":\"33BB3648E1E22B17\",\"link\":{\"rel\":\"filtered\",\"href\":\"filtered\"}}"
35
+ string: "{\"id\":\"25091E7E50399566\",\"link\":{\"rel\":\"filtered\",\"href\":\"filtered\"}}"
36
36
  http_version:
37
- recorded_at: Wed, 26 Mar 2014 13:49:44 GMT
37
+ recorded_at: Tue, 08 Apr 2014 15:34:08 GMT
38
38
  - request:
39
39
  method: get
40
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
40
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
41
41
  body:
42
42
  encoding: US-ASCII
43
43
  string: ''
@@ -56,21 +56,21 @@ http_interactions:
56
56
  Content-Type:
57
57
  - application/json
58
58
  Date:
59
- - Wed, 26 Mar 2014 13:49:43 GMT
59
+ - Tue, 08 Apr 2014 15:34:13 GMT
60
60
  Strict-Transport-Security:
61
61
  - max-age=15552000
62
- transfer-encoding:
63
- - ''
62
+ Content-Length:
63
+ - '125'
64
64
  Connection:
65
65
  - Close
66
66
  body:
67
67
  encoding: UTF-8
68
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[],\"messageCount\":0,\"recordCount\":0}"
68
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[],\"messageCount\":0,\"recordCount\":-1}"
69
69
  http_version:
70
- recorded_at: Wed, 26 Mar 2014 13:49:44 GMT
70
+ recorded_at: Tue, 08 Apr 2014 15:34:08 GMT
71
71
  - request:
72
72
  method: get
73
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
73
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
74
74
  body:
75
75
  encoding: US-ASCII
76
76
  string: ''
@@ -89,7 +89,7 @@ http_interactions:
89
89
  Content-Type:
90
90
  - application/json
91
91
  Date:
92
- - Wed, 26 Mar 2014 13:49:43 GMT
92
+ - Tue, 08 Apr 2014 15:34:13 GMT
93
93
  Strict-Transport-Security:
94
94
  - max-age=15552000
95
95
  transfer-encoding:
@@ -100,10 +100,10 @@ http_interactions:
100
100
  encoding: UTF-8
101
101
  string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[],\"messageCount\":0,\"recordCount\":0}"
102
102
  http_version:
103
- recorded_at: Wed, 26 Mar 2014 13:49:44 GMT
103
+ recorded_at: Tue, 08 Apr 2014 15:34:08 GMT
104
104
  - request:
105
105
  method: get
106
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
106
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
107
107
  body:
108
108
  encoding: US-ASCII
109
109
  string: ''
@@ -122,7 +122,7 @@ http_interactions:
122
122
  Content-Type:
123
123
  - application/json
124
124
  Date:
125
- - Wed, 26 Mar 2014 13:49:43 GMT
125
+ - Tue, 08 Apr 2014 15:34:13 GMT
126
126
  Strict-Transport-Security:
127
127
  - max-age=15552000
128
128
  Content-Length:
@@ -133,10 +133,10 @@ http_interactions:
133
133
  encoding: UTF-8
134
134
  string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[],\"messageCount\":0,\"recordCount\":0}"
135
135
  http_version:
136
- recorded_at: Wed, 26 Mar 2014 13:49:44 GMT
136
+ recorded_at: Tue, 08 Apr 2014 15:34:08 GMT
137
137
  - request:
138
138
  method: get
139
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
139
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
140
140
  body:
141
141
  encoding: US-ASCII
142
142
  string: ''
@@ -155,21 +155,21 @@ http_interactions:
155
155
  Content-Type:
156
156
  - application/json
157
157
  Date:
158
- - Wed, 26 Mar 2014 13:49:43 GMT
158
+ - Tue, 08 Apr 2014 15:34:14 GMT
159
159
  Strict-Transport-Security:
160
160
  - max-age=15552000
161
- transfer-encoding:
162
- - ''
161
+ Content-Length:
162
+ - '124'
163
163
  Connection:
164
164
  - Close
165
165
  body:
166
166
  encoding: UTF-8
167
167
  string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[],\"messageCount\":0,\"recordCount\":0}"
168
168
  http_version:
169
- recorded_at: Wed, 26 Mar 2014 13:49:44 GMT
169
+ recorded_at: Tue, 08 Apr 2014 15:34:09 GMT
170
170
  - request:
171
171
  method: get
172
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
172
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
173
173
  body:
174
174
  encoding: US-ASCII
175
175
  string: ''
@@ -188,7 +188,7 @@ http_interactions:
188
188
  Content-Type:
189
189
  - application/json
190
190
  Date:
191
- - Wed, 26 Mar 2014 13:49:43 GMT
191
+ - Tue, 08 Apr 2014 15:34:14 GMT
192
192
  Strict-Transport-Security:
193
193
  - max-age=15552000
194
194
  Content-Length:
@@ -199,10 +199,10 @@ http_interactions:
199
199
  encoding: UTF-8
200
200
  string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[],\"messageCount\":0,\"recordCount\":0}"
201
201
  http_version:
202
- recorded_at: Wed, 26 Mar 2014 13:49:44 GMT
202
+ recorded_at: Tue, 08 Apr 2014 15:34:09 GMT
203
203
  - request:
204
204
  method: get
205
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
205
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
206
206
  body:
207
207
  encoding: US-ASCII
208
208
  string: ''
@@ -221,21 +221,21 @@ http_interactions:
221
221
  Content-Type:
222
222
  - application/json
223
223
  Date:
224
- - Wed, 26 Mar 2014 13:49:43 GMT
224
+ - Tue, 08 Apr 2014 15:34:14 GMT
225
225
  Strict-Transport-Security:
226
226
  - max-age=15552000
227
- transfer-encoding:
228
- - ''
227
+ Content-Length:
228
+ - '124'
229
229
  Connection:
230
230
  - Close
231
231
  body:
232
232
  encoding: UTF-8
233
233
  string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[],\"messageCount\":0,\"recordCount\":0}"
234
234
  http_version:
235
- recorded_at: Wed, 26 Mar 2014 13:49:45 GMT
235
+ recorded_at: Tue, 08 Apr 2014 15:34:09 GMT
236
236
  - request:
237
237
  method: get
238
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
238
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
239
239
  body:
240
240
  encoding: US-ASCII
241
241
  string: ''
@@ -254,7 +254,7 @@ http_interactions:
254
254
  Content-Type:
255
255
  - application/json
256
256
  Date:
257
- - Wed, 26 Mar 2014 13:49:44 GMT
257
+ - Tue, 08 Apr 2014 15:34:14 GMT
258
258
  Strict-Transport-Security:
259
259
  - max-age=15552000
260
260
  Content-Length:
@@ -263,12 +263,12 @@ http_interactions:
263
263
  - Close
264
264
  body:
265
265
  encoding: UTF-8
266
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":35,\"startTimestamp\":1388984400000}],\"messageCount\":35,\"recordCount\":1}"
266
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":28,\"startTimestamp\":1388984400000}],\"messageCount\":28,\"recordCount\":1}"
267
267
  http_version:
268
- recorded_at: Wed, 26 Mar 2014 13:49:45 GMT
268
+ recorded_at: Tue, 08 Apr 2014 15:34:09 GMT
269
269
  - request:
270
270
  method: get
271
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17/messages?limit=35&offset=0
271
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566/messages?limit=28&offset=0
272
272
  body:
273
273
  encoding: US-ASCII
274
274
  string: ''
@@ -287,7 +287,7 @@ http_interactions:
287
287
  Content-Type:
288
288
  - application/json
289
289
  Date:
290
- - Wed, 26 Mar 2014 13:49:44 GMT
290
+ - Tue, 08 Apr 2014 15:34:14 GMT
291
291
  Strict-Transport-Security:
292
292
  - max-age=15552000
293
293
  transfer-encoding:
@@ -296,12 +296,12 @@ http_interactions:
296
296
  - Close
297
297
  body:
298
298
  encoding: UTF-8
299
- string: "{\"fields\":[{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
299
+ string: "{\"fields\":[{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
300
300
  http_version:
301
- recorded_at: Wed, 26 Mar 2014 13:49:45 GMT
301
+ recorded_at: Tue, 08 Apr 2014 15:34:09 GMT
302
302
  - request:
303
303
  method: get
304
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
304
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
305
305
  body:
306
306
  encoding: US-ASCII
307
307
  string: ''
@@ -320,7 +320,7 @@ http_interactions:
320
320
  Content-Type:
321
321
  - application/json
322
322
  Date:
323
- - Wed, 26 Mar 2014 13:49:44 GMT
323
+ - Tue, 08 Apr 2014 15:34:14 GMT
324
324
  Strict-Transport-Security:
325
325
  - max-age=15552000
326
326
  Content-Length:
@@ -329,12 +329,12 @@ http_interactions:
329
329
  - Close
330
330
  body:
331
331
  encoding: UTF-8
332
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":35,\"startTimestamp\":1388984400000}],\"messageCount\":35,\"recordCount\":1}"
332
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":28,\"startTimestamp\":1388984400000}],\"messageCount\":28,\"recordCount\":1}"
333
333
  http_version:
334
- recorded_at: Wed, 26 Mar 2014 13:49:45 GMT
334
+ recorded_at: Tue, 08 Apr 2014 15:34:09 GMT
335
335
  - request:
336
336
  method: get
337
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
337
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
338
338
  body:
339
339
  encoding: US-ASCII
340
340
  string: ''
@@ -353,7 +353,7 @@ http_interactions:
353
353
  Content-Type:
354
354
  - application/json
355
355
  Date:
356
- - Wed, 26 Mar 2014 13:49:44 GMT
356
+ - Tue, 08 Apr 2014 15:34:15 GMT
357
357
  Strict-Transport-Security:
358
358
  - max-age=15552000
359
359
  Content-Length:
@@ -362,12 +362,12 @@ http_interactions:
362
362
  - Close
363
363
  body:
364
364
  encoding: UTF-8
365
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":35,\"startTimestamp\":1388984400000}],\"messageCount\":35,\"recordCount\":1}"
365
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":28,\"startTimestamp\":1388984400000}],\"messageCount\":28,\"recordCount\":1}"
366
366
  http_version:
367
- recorded_at: Wed, 26 Mar 2014 13:49:45 GMT
367
+ recorded_at: Tue, 08 Apr 2014 15:34:10 GMT
368
368
  - request:
369
369
  method: get
370
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
370
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
371
371
  body:
372
372
  encoding: US-ASCII
373
373
  string: ''
@@ -386,21 +386,21 @@ http_interactions:
386
386
  Content-Type:
387
387
  - application/json
388
388
  Date:
389
- - Wed, 26 Mar 2014 13:49:44 GMT
389
+ - Tue, 08 Apr 2014 15:34:15 GMT
390
390
  Strict-Transport-Security:
391
391
  - max-age=15552000
392
- transfer-encoding:
393
- - ''
392
+ Content-Length:
393
+ - '186'
394
394
  Connection:
395
395
  - Close
396
396
  body:
397
397
  encoding: UTF-8
398
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":35,\"startTimestamp\":1388984400000}],\"messageCount\":35,\"recordCount\":1}"
398
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":28,\"startTimestamp\":1388984400000}],\"messageCount\":28,\"recordCount\":1}"
399
399
  http_version:
400
- recorded_at: Wed, 26 Mar 2014 13:49:45 GMT
400
+ recorded_at: Tue, 08 Apr 2014 15:34:10 GMT
401
401
  - request:
402
402
  method: get
403
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
403
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
404
404
  body:
405
405
  encoding: US-ASCII
406
406
  string: ''
@@ -419,21 +419,21 @@ http_interactions:
419
419
  Content-Type:
420
420
  - application/json
421
421
  Date:
422
- - Wed, 26 Mar 2014 13:49:44 GMT
422
+ - Tue, 08 Apr 2014 15:34:15 GMT
423
423
  Strict-Transport-Security:
424
424
  - max-age=15552000
425
425
  Content-Length:
426
- - '186'
426
+ - '247'
427
427
  Connection:
428
428
  - Close
429
429
  body:
430
430
  encoding: UTF-8
431
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":35,\"startTimestamp\":1388984400000}],\"messageCount\":35,\"recordCount\":1}"
431
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388898000000}],\"messageCount\":51,\"recordCount\":1}"
432
432
  http_version:
433
- recorded_at: Wed, 26 Mar 2014 13:49:46 GMT
433
+ recorded_at: Tue, 08 Apr 2014 15:34:10 GMT
434
434
  - request:
435
435
  method: get
436
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
436
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566/messages?limit=23&offset=28
437
437
  body:
438
438
  encoding: US-ASCII
439
439
  string: ''
@@ -452,7 +452,7 @@ http_interactions:
452
452
  Content-Type:
453
453
  - application/json
454
454
  Date:
455
- - Wed, 26 Mar 2014 13:49:45 GMT
455
+ - Tue, 08 Apr 2014 15:34:15 GMT
456
456
  Strict-Transport-Security:
457
457
  - max-age=15552000
458
458
  transfer-encoding:
@@ -461,12 +461,12 @@ http_interactions:
461
461
  - Close
462
462
  body:
463
463
  encoding: UTF-8
464
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":35,\"startTimestamp\":1388984400000}],\"messageCount\":35,\"recordCount\":1}"
464
+ string: "{\"fields\":[{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
465
465
  http_version:
466
- recorded_at: Wed, 26 Mar 2014 13:49:46 GMT
466
+ recorded_at: Tue, 08 Apr 2014 15:34:10 GMT
467
467
  - request:
468
468
  method: get
469
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
469
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
470
470
  body:
471
471
  encoding: US-ASCII
472
472
  string: ''
@@ -485,21 +485,21 @@ http_interactions:
485
485
  Content-Type:
486
486
  - application/json
487
487
  Date:
488
- - Wed, 26 Mar 2014 13:49:45 GMT
488
+ - Tue, 08 Apr 2014 15:34:15 GMT
489
489
  Strict-Transport-Security:
490
490
  - max-age=15552000
491
- transfer-encoding:
492
- - ''
491
+ Content-Length:
492
+ - '247'
493
493
  Connection:
494
494
  - Close
495
495
  body:
496
496
  encoding: UTF-8
497
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388898000000}],\"messageCount\":67,\"recordCount\":1}"
497
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388898000000}],\"messageCount\":51,\"recordCount\":1}"
498
498
  http_version:
499
- recorded_at: Wed, 26 Mar 2014 13:49:46 GMT
499
+ recorded_at: Tue, 08 Apr 2014 15:34:10 GMT
500
500
  - request:
501
501
  method: get
502
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17/messages?limit=32&offset=35
502
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
503
503
  body:
504
504
  encoding: US-ASCII
505
505
  string: ''
@@ -518,21 +518,21 @@ http_interactions:
518
518
  Content-Type:
519
519
  - application/json
520
520
  Date:
521
- - Wed, 26 Mar 2014 13:49:45 GMT
521
+ - Tue, 08 Apr 2014 15:34:16 GMT
522
522
  Strict-Transport-Security:
523
523
  - max-age=15552000
524
- transfer-encoding:
525
- - ''
524
+ Content-Length:
525
+ - '247'
526
526
  Connection:
527
527
  - Close
528
528
  body:
529
529
  encoding: UTF-8
530
- string: "{\"fields\":[{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
530
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388898000000}],\"messageCount\":51,\"recordCount\":1}"
531
531
  http_version:
532
- recorded_at: Wed, 26 Mar 2014 13:49:46 GMT
532
+ recorded_at: Tue, 08 Apr 2014 15:34:11 GMT
533
533
  - request:
534
534
  method: get
535
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
535
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
536
536
  body:
537
537
  encoding: US-ASCII
538
538
  string: ''
@@ -551,7 +551,7 @@ http_interactions:
551
551
  Content-Type:
552
552
  - application/json
553
553
  Date:
554
- - Wed, 26 Mar 2014 13:49:45 GMT
554
+ - Tue, 08 Apr 2014 15:34:16 GMT
555
555
  Strict-Transport-Security:
556
556
  - max-age=15552000
557
557
  Content-Length:
@@ -560,12 +560,12 @@ http_interactions:
560
560
  - Close
561
561
  body:
562
562
  encoding: UTF-8
563
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388898000000}],\"messageCount\":67,\"recordCount\":1}"
563
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388898000000}],\"messageCount\":51,\"recordCount\":1}"
564
564
  http_version:
565
- recorded_at: Wed, 26 Mar 2014 13:49:46 GMT
565
+ recorded_at: Tue, 08 Apr 2014 15:34:11 GMT
566
566
  - request:
567
567
  method: get
568
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
568
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
569
569
  body:
570
570
  encoding: US-ASCII
571
571
  string: ''
@@ -584,21 +584,21 @@ http_interactions:
584
584
  Content-Type:
585
585
  - application/json
586
586
  Date:
587
- - Wed, 26 Mar 2014 13:49:45 GMT
587
+ - Tue, 08 Apr 2014 15:34:16 GMT
588
588
  Strict-Transport-Security:
589
589
  - max-age=15552000
590
- transfer-encoding:
591
- - ''
590
+ Content-Length:
591
+ - '248'
592
592
  Connection:
593
593
  - Close
594
594
  body:
595
595
  encoding: UTF-8
596
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388898000000}],\"messageCount\":67,\"recordCount\":1}"
596
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":12,\"startTimestamp\":1388898000000}],\"messageCount\":60,\"recordCount\":1}"
597
597
  http_version:
598
- recorded_at: Wed, 26 Mar 2014 13:49:46 GMT
598
+ recorded_at: Tue, 08 Apr 2014 15:34:11 GMT
599
599
  - request:
600
600
  method: get
601
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
601
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566/messages?limit=9&offset=51
602
602
  body:
603
603
  encoding: US-ASCII
604
604
  string: ''
@@ -617,21 +617,21 @@ http_interactions:
617
617
  Content-Type:
618
618
  - application/json
619
619
  Date:
620
- - Wed, 26 Mar 2014 13:49:45 GMT
620
+ - Tue, 08 Apr 2014 15:34:16 GMT
621
621
  Strict-Transport-Security:
622
622
  - max-age=15552000
623
623
  Content-Length:
624
- - '247'
624
+ - '8980'
625
625
  Connection:
626
626
  - Close
627
627
  body:
628
628
  encoding: UTF-8
629
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388898000000}],\"messageCount\":67,\"recordCount\":1}"
629
+ string: "{\"fields\":[{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
630
630
  http_version:
631
- recorded_at: Wed, 26 Mar 2014 13:49:46 GMT
631
+ recorded_at: Tue, 08 Apr 2014 15:34:11 GMT
632
632
  - request:
633
633
  method: get
634
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
634
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
635
635
  body:
636
636
  encoding: US-ASCII
637
637
  string: ''
@@ -650,21 +650,21 @@ http_interactions:
650
650
  Content-Type:
651
651
  - application/json
652
652
  Date:
653
- - Wed, 26 Mar 2014 13:49:45 GMT
653
+ - Tue, 08 Apr 2014 15:34:16 GMT
654
654
  Strict-Transport-Security:
655
655
  - max-age=15552000
656
656
  Content-Length:
657
- - '247'
657
+ - '248'
658
658
  Connection:
659
659
  - Close
660
660
  body:
661
661
  encoding: UTF-8
662
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388898000000}],\"messageCount\":67,\"recordCount\":1}"
662
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":12,\"startTimestamp\":1388898000000}],\"messageCount\":60,\"recordCount\":1}"
663
663
  http_version:
664
- recorded_at: Wed, 26 Mar 2014 13:49:47 GMT
664
+ recorded_at: Tue, 08 Apr 2014 15:34:11 GMT
665
665
  - request:
666
666
  method: get
667
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
667
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
668
668
  body:
669
669
  encoding: US-ASCII
670
670
  string: ''
@@ -683,7 +683,7 @@ http_interactions:
683
683
  Content-Type:
684
684
  - application/json
685
685
  Date:
686
- - Wed, 26 Mar 2014 13:49:46 GMT
686
+ - Tue, 08 Apr 2014 15:34:16 GMT
687
687
  Strict-Transport-Security:
688
688
  - max-age=15552000
689
689
  Content-Length:
@@ -692,12 +692,12 @@ http_interactions:
692
692
  - Close
693
693
  body:
694
694
  encoding: UTF-8
695
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":29,\"startTimestamp\":1388898000000}],\"messageCount\":93,\"recordCount\":1}"
695
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":12,\"startTimestamp\":1388898000000}],\"messageCount\":60,\"recordCount\":1}"
696
696
  http_version:
697
- recorded_at: Wed, 26 Mar 2014 13:49:47 GMT
697
+ recorded_at: Tue, 08 Apr 2014 15:34:12 GMT
698
698
  - request:
699
699
  method: get
700
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17/messages?limit=26&offset=67
700
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
701
701
  body:
702
702
  encoding: US-ASCII
703
703
  string: ''
@@ -716,21 +716,21 @@ http_interactions:
716
716
  Content-Type:
717
717
  - application/json
718
718
  Date:
719
- - Wed, 26 Mar 2014 13:49:46 GMT
719
+ - Tue, 08 Apr 2014 15:34:17 GMT
720
720
  Strict-Transport-Security:
721
721
  - max-age=15552000
722
- transfer-encoding:
723
- - ''
722
+ Content-Length:
723
+ - '248'
724
724
  Connection:
725
725
  - Close
726
726
  body:
727
727
  encoding: UTF-8
728
- string: "{\"fields\":[{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
728
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":12,\"startTimestamp\":1388898000000}],\"messageCount\":60,\"recordCount\":1}"
729
729
  http_version:
730
- recorded_at: Wed, 26 Mar 2014 13:49:47 GMT
730
+ recorded_at: Tue, 08 Apr 2014 15:34:12 GMT
731
731
  - request:
732
732
  method: get
733
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
733
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
734
734
  body:
735
735
  encoding: US-ASCII
736
736
  string: ''
@@ -749,7 +749,7 @@ http_interactions:
749
749
  Content-Type:
750
750
  - application/json
751
751
  Date:
752
- - Wed, 26 Mar 2014 13:49:46 GMT
752
+ - Tue, 08 Apr 2014 15:34:17 GMT
753
753
  Strict-Transport-Security:
754
754
  - max-age=15552000
755
755
  Content-Length:
@@ -758,12 +758,12 @@ http_interactions:
758
758
  - Close
759
759
  body:
760
760
  encoding: UTF-8
761
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":29,\"startTimestamp\":1388898000000}],\"messageCount\":93,\"recordCount\":1}"
761
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":12,\"startTimestamp\":1388898000000}],\"messageCount\":60,\"recordCount\":1}"
762
762
  http_version:
763
- recorded_at: Wed, 26 Mar 2014 13:49:47 GMT
763
+ recorded_at: Tue, 08 Apr 2014 15:34:12 GMT
764
764
  - request:
765
765
  method: get
766
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
766
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
767
767
  body:
768
768
  encoding: US-ASCII
769
769
  string: ''
@@ -782,21 +782,21 @@ http_interactions:
782
782
  Content-Type:
783
783
  - application/json
784
784
  Date:
785
- - Wed, 26 Mar 2014 13:49:46 GMT
785
+ - Tue, 08 Apr 2014 15:34:17 GMT
786
786
  Strict-Transport-Security:
787
787
  - max-age=15552000
788
788
  Content-Length:
789
- - '248'
789
+ - '310'
790
790
  Connection:
791
791
  - Close
792
792
  body:
793
793
  encoding: UTF-8
794
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":29,\"startTimestamp\":1388898000000}],\"messageCount\":93,\"recordCount\":1}"
794
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":10,\"startTimestamp\":1388811600000}],\"messageCount\":71,\"recordCount\":1}"
795
795
  http_version:
796
- recorded_at: Wed, 26 Mar 2014 13:49:47 GMT
796
+ recorded_at: Tue, 08 Apr 2014 15:34:12 GMT
797
797
  - request:
798
798
  method: get
799
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
799
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566/messages?limit=11&offset=60
800
800
  body:
801
801
  encoding: US-ASCII
802
802
  string: ''
@@ -815,21 +815,21 @@ http_interactions:
815
815
  Content-Type:
816
816
  - application/json
817
817
  Date:
818
- - Wed, 26 Mar 2014 13:49:46 GMT
818
+ - Tue, 08 Apr 2014 15:34:17 GMT
819
819
  Strict-Transport-Security:
820
820
  - max-age=15552000
821
- transfer-encoding:
822
- - ''
821
+ Content-Length:
822
+ - '10785'
823
823
  Connection:
824
824
  - Close
825
825
  body:
826
826
  encoding: UTF-8
827
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":29,\"startTimestamp\":1388898000000}],\"messageCount\":93,\"recordCount\":1}"
827
+ string: "{\"fields\":[{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
828
828
  http_version:
829
- recorded_at: Wed, 26 Mar 2014 13:49:48 GMT
829
+ recorded_at: Tue, 08 Apr 2014 15:34:12 GMT
830
830
  - request:
831
831
  method: get
832
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
832
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
833
833
  body:
834
834
  encoding: US-ASCII
835
835
  string: ''
@@ -848,21 +848,21 @@ http_interactions:
848
848
  Content-Type:
849
849
  - application/json
850
850
  Date:
851
- - Wed, 26 Mar 2014 13:49:47 GMT
851
+ - Tue, 08 Apr 2014 15:34:17 GMT
852
852
  Strict-Transport-Security:
853
853
  - max-age=15552000
854
- transfer-encoding:
855
- - ''
854
+ Content-Length:
855
+ - '310'
856
856
  Connection:
857
857
  - Close
858
858
  body:
859
859
  encoding: UTF-8
860
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":33,\"startTimestamp\":1388898000000}],\"messageCount\":97,\"recordCount\":1}"
860
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":10,\"startTimestamp\":1388811600000}],\"messageCount\":71,\"recordCount\":1}"
861
861
  http_version:
862
- recorded_at: Wed, 26 Mar 2014 13:49:48 GMT
862
+ recorded_at: Tue, 08 Apr 2014 15:34:12 GMT
863
863
  - request:
864
864
  method: get
865
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17/messages?limit=4&offset=93
865
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
866
866
  body:
867
867
  encoding: US-ASCII
868
868
  string: ''
@@ -881,21 +881,21 @@ http_interactions:
881
881
  Content-Type:
882
882
  - application/json
883
883
  Date:
884
- - Wed, 26 Mar 2014 13:49:47 GMT
884
+ - Tue, 08 Apr 2014 15:34:17 GMT
885
885
  Strict-Transport-Security:
886
886
  - max-age=15552000
887
- transfer-encoding:
888
- - ''
887
+ Content-Length:
888
+ - '310'
889
889
  Connection:
890
890
  - Close
891
891
  body:
892
892
  encoding: UTF-8
893
- string: "{\"fields\":[{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
893
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":10,\"startTimestamp\":1388811600000}],\"messageCount\":71,\"recordCount\":1}"
894
894
  http_version:
895
- recorded_at: Wed, 26 Mar 2014 13:49:48 GMT
895
+ recorded_at: Tue, 08 Apr 2014 15:34:13 GMT
896
896
  - request:
897
897
  method: get
898
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
898
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
899
899
  body:
900
900
  encoding: US-ASCII
901
901
  string: ''
@@ -914,21 +914,21 @@ http_interactions:
914
914
  Content-Type:
915
915
  - application/json
916
916
  Date:
917
- - Wed, 26 Mar 2014 13:49:47 GMT
917
+ - Tue, 08 Apr 2014 15:34:18 GMT
918
918
  Strict-Transport-Security:
919
919
  - max-age=15552000
920
920
  Content-Length:
921
- - '248'
921
+ - '310'
922
922
  Connection:
923
923
  - Close
924
924
  body:
925
925
  encoding: UTF-8
926
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":33,\"startTimestamp\":1388898000000}],\"messageCount\":97,\"recordCount\":1}"
926
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":10,\"startTimestamp\":1388811600000}],\"messageCount\":71,\"recordCount\":1}"
927
927
  http_version:
928
- recorded_at: Wed, 26 Mar 2014 13:49:48 GMT
928
+ recorded_at: Tue, 08 Apr 2014 15:34:13 GMT
929
929
  - request:
930
930
  method: get
931
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
931
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
932
932
  body:
933
933
  encoding: US-ASCII
934
934
  string: ''
@@ -947,21 +947,21 @@ http_interactions:
947
947
  Content-Type:
948
948
  - application/json
949
949
  Date:
950
- - Wed, 26 Mar 2014 13:49:47 GMT
950
+ - Tue, 08 Apr 2014 15:34:18 GMT
951
951
  Strict-Transport-Security:
952
952
  - max-age=15552000
953
953
  Content-Length:
954
- - '248'
954
+ - '310'
955
955
  Connection:
956
956
  - Close
957
957
  body:
958
958
  encoding: UTF-8
959
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":33,\"startTimestamp\":1388898000000}],\"messageCount\":97,\"recordCount\":1}"
959
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":10,\"startTimestamp\":1388811600000}],\"messageCount\":71,\"recordCount\":1}"
960
960
  http_version:
961
- recorded_at: Wed, 26 Mar 2014 13:49:48 GMT
961
+ recorded_at: Tue, 08 Apr 2014 15:34:13 GMT
962
962
  - request:
963
963
  method: get
964
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
964
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
965
965
  body:
966
966
  encoding: US-ASCII
967
967
  string: ''
@@ -980,21 +980,21 @@ http_interactions:
980
980
  Content-Type:
981
981
  - application/json
982
982
  Date:
983
- - Wed, 26 Mar 2014 13:49:47 GMT
983
+ - Tue, 08 Apr 2014 15:34:18 GMT
984
984
  Strict-Transport-Security:
985
985
  - max-age=15552000
986
- transfer-encoding:
987
- - ''
986
+ Content-Length:
987
+ - '371'
988
988
  Connection:
989
989
  - Close
990
990
  body:
991
991
  encoding: UTF-8
992
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":33,\"startTimestamp\":1388898000000}],\"messageCount\":97,\"recordCount\":1}"
992
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":1,\"startTimestamp\":1388725200000}],\"messageCount\":78,\"recordCount\":1}"
993
993
  http_version:
994
- recorded_at: Wed, 26 Mar 2014 13:49:48 GMT
994
+ recorded_at: Tue, 08 Apr 2014 15:34:13 GMT
995
995
  - request:
996
996
  method: get
997
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
997
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566/messages?limit=7&offset=71
998
998
  body:
999
999
  encoding: US-ASCII
1000
1000
  string: ''
@@ -1013,21 +1013,21 @@ http_interactions:
1013
1013
  Content-Type:
1014
1014
  - application/json
1015
1015
  Date:
1016
- - Wed, 26 Mar 2014 13:49:47 GMT
1016
+ - Tue, 08 Apr 2014 15:34:18 GMT
1017
1017
  Strict-Transport-Security:
1018
1018
  - max-age=15552000
1019
1019
  Content-Length:
1020
- - '248'
1020
+ - '7195'
1021
1021
  Connection:
1022
1022
  - Close
1023
1023
  body:
1024
1024
  encoding: UTF-8
1025
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":33,\"startTimestamp\":1388898000000}],\"messageCount\":97,\"recordCount\":1}"
1025
+ string: "{\"fields\":[{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
1026
1026
  http_version:
1027
- recorded_at: Wed, 26 Mar 2014 13:49:48 GMT
1027
+ recorded_at: Tue, 08 Apr 2014 15:34:13 GMT
1028
1028
  - request:
1029
1029
  method: get
1030
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1030
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1031
1031
  body:
1032
1032
  encoding: US-ASCII
1033
1033
  string: ''
@@ -1046,21 +1046,21 @@ http_interactions:
1046
1046
  Content-Type:
1047
1047
  - application/json
1048
1048
  Date:
1049
- - Wed, 26 Mar 2014 13:49:48 GMT
1049
+ - Tue, 08 Apr 2014 15:34:18 GMT
1050
1050
  Strict-Transport-Security:
1051
1051
  - max-age=15552000
1052
1052
  Content-Length:
1053
- - '248'
1053
+ - '371'
1054
1054
  Connection:
1055
1055
  - Close
1056
1056
  body:
1057
1057
  encoding: UTF-8
1058
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":33,\"startTimestamp\":1388898000000}],\"messageCount\":97,\"recordCount\":1}"
1058
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":1,\"startTimestamp\":1388725200000}],\"messageCount\":78,\"recordCount\":1}"
1059
1059
  http_version:
1060
- recorded_at: Wed, 26 Mar 2014 13:49:49 GMT
1060
+ recorded_at: Tue, 08 Apr 2014 15:34:13 GMT
1061
1061
  - request:
1062
1062
  method: get
1063
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1063
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1064
1064
  body:
1065
1065
  encoding: US-ASCII
1066
1066
  string: ''
@@ -1079,21 +1079,21 @@ http_interactions:
1079
1079
  Content-Type:
1080
1080
  - application/json
1081
1081
  Date:
1082
- - Wed, 26 Mar 2014 13:49:48 GMT
1082
+ - Tue, 08 Apr 2014 15:34:18 GMT
1083
1083
  Strict-Transport-Security:
1084
1084
  - max-age=15552000
1085
1085
  Content-Length:
1086
- - '311'
1086
+ - '371'
1087
1087
  Connection:
1088
1088
  - Close
1089
1089
  body:
1090
1090
  encoding: UTF-8
1091
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388811600000}],\"messageCount\":120,\"recordCount\":1}"
1091
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":1,\"startTimestamp\":1388725200000}],\"messageCount\":78,\"recordCount\":1}"
1092
1092
  http_version:
1093
- recorded_at: Wed, 26 Mar 2014 13:49:49 GMT
1093
+ recorded_at: Tue, 08 Apr 2014 15:34:13 GMT
1094
1094
  - request:
1095
1095
  method: get
1096
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17/messages?limit=23&offset=97
1096
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1097
1097
  body:
1098
1098
  encoding: US-ASCII
1099
1099
  string: ''
@@ -1112,21 +1112,21 @@ http_interactions:
1112
1112
  Content-Type:
1113
1113
  - application/json
1114
1114
  Date:
1115
- - Wed, 26 Mar 2014 13:49:48 GMT
1115
+ - Tue, 08 Apr 2014 15:34:19 GMT
1116
1116
  Strict-Transport-Security:
1117
1117
  - max-age=15552000
1118
- transfer-encoding:
1119
- - ''
1118
+ Content-Length:
1119
+ - '371'
1120
1120
  Connection:
1121
1121
  - Close
1122
1122
  body:
1123
1123
  encoding: UTF-8
1124
- string: "{\"fields\":[{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
1124
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":1,\"startTimestamp\":1388725200000}],\"messageCount\":78,\"recordCount\":1}"
1125
1125
  http_version:
1126
- recorded_at: Wed, 26 Mar 2014 13:49:49 GMT
1126
+ recorded_at: Tue, 08 Apr 2014 15:34:14 GMT
1127
1127
  - request:
1128
1128
  method: get
1129
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1129
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1130
1130
  body:
1131
1131
  encoding: US-ASCII
1132
1132
  string: ''
@@ -1145,21 +1145,21 @@ http_interactions:
1145
1145
  Content-Type:
1146
1146
  - application/json
1147
1147
  Date:
1148
- - Wed, 26 Mar 2014 13:49:48 GMT
1148
+ - Tue, 08 Apr 2014 15:34:19 GMT
1149
1149
  Strict-Transport-Security:
1150
1150
  - max-age=15552000
1151
- transfer-encoding:
1152
- - ''
1151
+ Content-Length:
1152
+ - '371'
1153
1153
  Connection:
1154
1154
  - Close
1155
1155
  body:
1156
1156
  encoding: UTF-8
1157
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388811600000}],\"messageCount\":120,\"recordCount\":1}"
1157
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":1,\"startTimestamp\":1388725200000}],\"messageCount\":78,\"recordCount\":1}"
1158
1158
  http_version:
1159
- recorded_at: Wed, 26 Mar 2014 13:49:49 GMT
1159
+ recorded_at: Tue, 08 Apr 2014 15:34:14 GMT
1160
1160
  - request:
1161
1161
  method: get
1162
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1162
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1163
1163
  body:
1164
1164
  encoding: US-ASCII
1165
1165
  string: ''
@@ -1178,21 +1178,21 @@ http_interactions:
1178
1178
  Content-Type:
1179
1179
  - application/json
1180
1180
  Date:
1181
- - Wed, 26 Mar 2014 13:49:48 GMT
1181
+ - Tue, 08 Apr 2014 15:34:19 GMT
1182
1182
  Strict-Transport-Security:
1183
1183
  - max-age=15552000
1184
- transfer-encoding:
1185
- - ''
1184
+ Content-Length:
1185
+ - '372'
1186
1186
  Connection:
1187
1187
  - Close
1188
1188
  body:
1189
1189
  encoding: UTF-8
1190
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388811600000}],\"messageCount\":120,\"recordCount\":1}"
1190
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388725200000}],\"messageCount\":90,\"recordCount\":1}"
1191
1191
  http_version:
1192
- recorded_at: Wed, 26 Mar 2014 13:49:49 GMT
1192
+ recorded_at: Tue, 08 Apr 2014 15:34:14 GMT
1193
1193
  - request:
1194
1194
  method: get
1195
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1195
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566/messages?limit=12&offset=78
1196
1196
  body:
1197
1197
  encoding: US-ASCII
1198
1198
  string: ''
@@ -1211,21 +1211,21 @@ http_interactions:
1211
1211
  Content-Type:
1212
1212
  - application/json
1213
1213
  Date:
1214
- - Wed, 26 Mar 2014 13:49:48 GMT
1214
+ - Tue, 08 Apr 2014 15:34:19 GMT
1215
1215
  Strict-Transport-Security:
1216
1216
  - max-age=15552000
1217
1217
  Content-Length:
1218
- - '311'
1218
+ - '11682'
1219
1219
  Connection:
1220
1220
  - Close
1221
1221
  body:
1222
1222
  encoding: UTF-8
1223
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388811600000}],\"messageCount\":120,\"recordCount\":1}"
1223
+ string: "{\"fields\":[{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
1224
1224
  http_version:
1225
- recorded_at: Wed, 26 Mar 2014 13:49:49 GMT
1225
+ recorded_at: Tue, 08 Apr 2014 15:34:14 GMT
1226
1226
  - request:
1227
1227
  method: get
1228
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1228
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1229
1229
  body:
1230
1230
  encoding: US-ASCII
1231
1231
  string: ''
@@ -1244,21 +1244,21 @@ http_interactions:
1244
1244
  Content-Type:
1245
1245
  - application/json
1246
1246
  Date:
1247
- - Wed, 26 Mar 2014 13:49:48 GMT
1247
+ - Tue, 08 Apr 2014 15:34:19 GMT
1248
1248
  Strict-Transport-Security:
1249
1249
  - max-age=15552000
1250
1250
  Content-Length:
1251
- - '311'
1251
+ - '372'
1252
1252
  Connection:
1253
1253
  - Close
1254
1254
  body:
1255
1255
  encoding: UTF-8
1256
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388811600000}],\"messageCount\":120,\"recordCount\":1}"
1256
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388725200000}],\"messageCount\":90,\"recordCount\":1}"
1257
1257
  http_version:
1258
- recorded_at: Wed, 26 Mar 2014 13:49:50 GMT
1258
+ recorded_at: Tue, 08 Apr 2014 15:34:14 GMT
1259
1259
  - request:
1260
1260
  method: get
1261
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1261
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1262
1262
  body:
1263
1263
  encoding: US-ASCII
1264
1264
  string: ''
@@ -1277,21 +1277,21 @@ http_interactions:
1277
1277
  Content-Type:
1278
1278
  - application/json
1279
1279
  Date:
1280
- - Wed, 26 Mar 2014 13:49:49 GMT
1280
+ - Tue, 08 Apr 2014 15:34:19 GMT
1281
1281
  Strict-Transport-Security:
1282
1282
  - max-age=15552000
1283
1283
  Content-Length:
1284
- - '311'
1284
+ - '372'
1285
1285
  Connection:
1286
1286
  - Close
1287
1287
  body:
1288
1288
  encoding: UTF-8
1289
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388811600000}],\"messageCount\":120,\"recordCount\":1}"
1289
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388725200000}],\"messageCount\":90,\"recordCount\":1}"
1290
1290
  http_version:
1291
- recorded_at: Wed, 26 Mar 2014 13:49:50 GMT
1291
+ recorded_at: Tue, 08 Apr 2014 15:34:14 GMT
1292
1292
  - request:
1293
1293
  method: get
1294
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1294
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1295
1295
  body:
1296
1296
  encoding: US-ASCII
1297
1297
  string: ''
@@ -1310,21 +1310,21 @@ http_interactions:
1310
1310
  Content-Type:
1311
1311
  - application/json
1312
1312
  Date:
1313
- - Wed, 26 Mar 2014 13:49:49 GMT
1313
+ - Tue, 08 Apr 2014 15:34:20 GMT
1314
1314
  Strict-Transport-Security:
1315
1315
  - max-age=15552000
1316
1316
  Content-Length:
1317
- - '311'
1317
+ - '372'
1318
1318
  Connection:
1319
1319
  - Close
1320
1320
  body:
1321
1321
  encoding: UTF-8
1322
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":22,\"startTimestamp\":1388811600000}],\"messageCount\":129,\"recordCount\":1}"
1322
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388725200000}],\"messageCount\":90,\"recordCount\":1}"
1323
1323
  http_version:
1324
- recorded_at: Wed, 26 Mar 2014 13:49:50 GMT
1324
+ recorded_at: Tue, 08 Apr 2014 15:34:15 GMT
1325
1325
  - request:
1326
1326
  method: get
1327
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17/messages?limit=9&offset=120
1327
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1328
1328
  body:
1329
1329
  encoding: US-ASCII
1330
1330
  string: ''
@@ -1343,21 +1343,21 @@ http_interactions:
1343
1343
  Content-Type:
1344
1344
  - application/json
1345
1345
  Date:
1346
- - Wed, 26 Mar 2014 13:49:49 GMT
1346
+ - Tue, 08 Apr 2014 15:34:20 GMT
1347
1347
  Strict-Transport-Security:
1348
1348
  - max-age=15552000
1349
1349
  Content-Length:
1350
- - '9147'
1350
+ - '372'
1351
1351
  Connection:
1352
1352
  - Close
1353
1353
  body:
1354
1354
  encoding: UTF-8
1355
- string: "{\"fields\":[{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
1355
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388725200000}],\"messageCount\":90,\"recordCount\":1}"
1356
1356
  http_version:
1357
- recorded_at: Wed, 26 Mar 2014 13:49:50 GMT
1357
+ recorded_at: Tue, 08 Apr 2014 15:34:15 GMT
1358
1358
  - request:
1359
1359
  method: get
1360
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1360
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1361
1361
  body:
1362
1362
  encoding: US-ASCII
1363
1363
  string: ''
@@ -1376,21 +1376,21 @@ http_interactions:
1376
1376
  Content-Type:
1377
1377
  - application/json
1378
1378
  Date:
1379
- - Wed, 26 Mar 2014 13:49:49 GMT
1379
+ - Tue, 08 Apr 2014 15:34:20 GMT
1380
1380
  Strict-Transport-Security:
1381
1381
  - max-age=15552000
1382
1382
  Content-Length:
1383
- - '311'
1383
+ - '372'
1384
1384
  Connection:
1385
1385
  - Close
1386
1386
  body:
1387
1387
  encoding: UTF-8
1388
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":22,\"startTimestamp\":1388811600000}],\"messageCount\":129,\"recordCount\":1}"
1388
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388725200000}],\"messageCount\":90,\"recordCount\":1}"
1389
1389
  http_version:
1390
- recorded_at: Wed, 26 Mar 2014 13:49:50 GMT
1390
+ recorded_at: Tue, 08 Apr 2014 15:34:15 GMT
1391
1391
  - request:
1392
1392
  method: get
1393
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1393
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1394
1394
  body:
1395
1395
  encoding: US-ASCII
1396
1396
  string: ''
@@ -1409,21 +1409,21 @@ http_interactions:
1409
1409
  Content-Type:
1410
1410
  - application/json
1411
1411
  Date:
1412
- - Wed, 26 Mar 2014 13:49:49 GMT
1412
+ - Tue, 08 Apr 2014 15:34:20 GMT
1413
1413
  Strict-Transport-Security:
1414
1414
  - max-age=15552000
1415
1415
  Content-Length:
1416
- - '311'
1416
+ - '373'
1417
1417
  Connection:
1418
1418
  - Close
1419
1419
  body:
1420
1420
  encoding: UTF-8
1421
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":22,\"startTimestamp\":1388811600000}],\"messageCount\":129,\"recordCount\":1}"
1421
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000}],\"messageCount\":104,\"recordCount\":1}"
1422
1422
  http_version:
1423
- recorded_at: Wed, 26 Mar 2014 13:49:50 GMT
1423
+ recorded_at: Tue, 08 Apr 2014 15:34:15 GMT
1424
1424
  - request:
1425
1425
  method: get
1426
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1426
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566/messages?limit=14&offset=90
1427
1427
  body:
1428
1428
  encoding: US-ASCII
1429
1429
  string: ''
@@ -1442,21 +1442,21 @@ http_interactions:
1442
1442
  Content-Type:
1443
1443
  - application/json
1444
1444
  Date:
1445
- - Wed, 26 Mar 2014 13:49:49 GMT
1445
+ - Tue, 08 Apr 2014 15:34:20 GMT
1446
1446
  Strict-Transport-Security:
1447
1447
  - max-age=15552000
1448
1448
  Content-Length:
1449
- - '311'
1449
+ - '13540'
1450
1450
  Connection:
1451
1451
  - Close
1452
1452
  body:
1453
1453
  encoding: UTF-8
1454
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":22,\"startTimestamp\":1388811600000}],\"messageCount\":129,\"recordCount\":1}"
1454
+ string: "{\"fields\":[{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
1455
1455
  http_version:
1456
- recorded_at: Wed, 26 Mar 2014 13:49:50 GMT
1456
+ recorded_at: Tue, 08 Apr 2014 15:34:15 GMT
1457
1457
  - request:
1458
1458
  method: get
1459
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1459
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1460
1460
  body:
1461
1461
  encoding: US-ASCII
1462
1462
  string: ''
@@ -1475,21 +1475,21 @@ http_interactions:
1475
1475
  Content-Type:
1476
1476
  - application/json
1477
1477
  Date:
1478
- - Wed, 26 Mar 2014 13:49:50 GMT
1478
+ - Tue, 08 Apr 2014 15:34:20 GMT
1479
1479
  Strict-Transport-Security:
1480
1480
  - max-age=15552000
1481
- Content-Length:
1482
- - '311'
1481
+ transfer-encoding:
1482
+ - ''
1483
1483
  Connection:
1484
1484
  - Close
1485
1485
  body:
1486
1486
  encoding: UTF-8
1487
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":22,\"startTimestamp\":1388811600000}],\"messageCount\":129,\"recordCount\":1}"
1487
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000}],\"messageCount\":104,\"recordCount\":1}"
1488
1488
  http_version:
1489
- recorded_at: Wed, 26 Mar 2014 13:49:51 GMT
1489
+ recorded_at: Tue, 08 Apr 2014 15:34:15 GMT
1490
1490
  - request:
1491
1491
  method: get
1492
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1492
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1493
1493
  body:
1494
1494
  encoding: US-ASCII
1495
1495
  string: ''
@@ -1508,7 +1508,7 @@ http_interactions:
1508
1508
  Content-Type:
1509
1509
  - application/json
1510
1510
  Date:
1511
- - Wed, 26 Mar 2014 13:49:50 GMT
1511
+ - Tue, 08 Apr 2014 15:34:20 GMT
1512
1512
  Strict-Transport-Security:
1513
1513
  - max-age=15552000
1514
1514
  Content-Length:
@@ -1517,12 +1517,12 @@ http_interactions:
1517
1517
  - Close
1518
1518
  body:
1519
1519
  encoding: UTF-8
1520
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":22,\"startTimestamp\":1388725200000}],\"messageCount\":153,\"recordCount\":1}"
1520
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000}],\"messageCount\":104,\"recordCount\":1}"
1521
1521
  http_version:
1522
- recorded_at: Wed, 26 Mar 2014 13:49:51 GMT
1522
+ recorded_at: Tue, 08 Apr 2014 15:34:16 GMT
1523
1523
  - request:
1524
1524
  method: get
1525
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17/messages?limit=24&offset=129
1525
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1526
1526
  body:
1527
1527
  encoding: US-ASCII
1528
1528
  string: ''
@@ -1541,21 +1541,21 @@ http_interactions:
1541
1541
  Content-Type:
1542
1542
  - application/json
1543
1543
  Date:
1544
- - Wed, 26 Mar 2014 13:49:50 GMT
1544
+ - Tue, 08 Apr 2014 15:34:21 GMT
1545
1545
  Strict-Transport-Security:
1546
1546
  - max-age=15552000
1547
- transfer-encoding:
1548
- - ''
1547
+ Content-Length:
1548
+ - '373'
1549
1549
  Connection:
1550
1550
  - Close
1551
1551
  body:
1552
1552
  encoding: UTF-8
1553
- string: "{\"fields\":[{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
1553
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000}],\"messageCount\":104,\"recordCount\":1}"
1554
1554
  http_version:
1555
- recorded_at: Wed, 26 Mar 2014 13:49:51 GMT
1555
+ recorded_at: Tue, 08 Apr 2014 15:34:16 GMT
1556
1556
  - request:
1557
1557
  method: get
1558
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1558
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1559
1559
  body:
1560
1560
  encoding: US-ASCII
1561
1561
  string: ''
@@ -1574,7 +1574,7 @@ http_interactions:
1574
1574
  Content-Type:
1575
1575
  - application/json
1576
1576
  Date:
1577
- - Wed, 26 Mar 2014 13:49:50 GMT
1577
+ - Tue, 08 Apr 2014 15:34:21 GMT
1578
1578
  Strict-Transport-Security:
1579
1579
  - max-age=15552000
1580
1580
  Content-Length:
@@ -1583,12 +1583,12 @@ http_interactions:
1583
1583
  - Close
1584
1584
  body:
1585
1585
  encoding: UTF-8
1586
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":22,\"startTimestamp\":1388725200000}],\"messageCount\":153,\"recordCount\":1}"
1586
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000}],\"messageCount\":104,\"recordCount\":1}"
1587
1587
  http_version:
1588
- recorded_at: Wed, 26 Mar 2014 13:49:51 GMT
1588
+ recorded_at: Tue, 08 Apr 2014 15:34:16 GMT
1589
1589
  - request:
1590
1590
  method: get
1591
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1591
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1592
1592
  body:
1593
1593
  encoding: US-ASCII
1594
1594
  string: ''
@@ -1607,7 +1607,7 @@ http_interactions:
1607
1607
  Content-Type:
1608
1608
  - application/json
1609
1609
  Date:
1610
- - Wed, 26 Mar 2014 13:49:50 GMT
1610
+ - Tue, 08 Apr 2014 15:34:21 GMT
1611
1611
  Strict-Transport-Security:
1612
1612
  - max-age=15552000
1613
1613
  Content-Length:
@@ -1616,12 +1616,12 @@ http_interactions:
1616
1616
  - Close
1617
1617
  body:
1618
1618
  encoding: UTF-8
1619
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":22,\"startTimestamp\":1388725200000}],\"messageCount\":153,\"recordCount\":1}"
1619
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000}],\"messageCount\":104,\"recordCount\":1}"
1620
1620
  http_version:
1621
- recorded_at: Wed, 26 Mar 2014 13:49:51 GMT
1621
+ recorded_at: Tue, 08 Apr 2014 15:34:16 GMT
1622
1622
  - request:
1623
1623
  method: get
1624
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1624
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1625
1625
  body:
1626
1626
  encoding: US-ASCII
1627
1627
  string: ''
@@ -1640,21 +1640,21 @@ http_interactions:
1640
1640
  Content-Type:
1641
1641
  - application/json
1642
1642
  Date:
1643
- - Wed, 26 Mar 2014 13:49:50 GMT
1643
+ - Tue, 08 Apr 2014 15:34:21 GMT
1644
1644
  Strict-Transport-Security:
1645
1645
  - max-age=15552000
1646
- transfer-encoding:
1647
- - ''
1646
+ Content-Length:
1647
+ - '435'
1648
1648
  Connection:
1649
1649
  - Close
1650
1650
  body:
1651
1651
  encoding: UTF-8
1652
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":22,\"startTimestamp\":1388725200000}],\"messageCount\":153,\"recordCount\":1}"
1652
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":21,\"startTimestamp\":1388638800000}],\"messageCount\":125,\"recordCount\":1}"
1653
1653
  http_version:
1654
- recorded_at: Wed, 26 Mar 2014 13:49:52 GMT
1654
+ recorded_at: Tue, 08 Apr 2014 15:34:16 GMT
1655
1655
  - request:
1656
1656
  method: get
1657
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1657
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566/messages?limit=21&offset=104
1658
1658
  body:
1659
1659
  encoding: US-ASCII
1660
1660
  string: ''
@@ -1673,7 +1673,7 @@ http_interactions:
1673
1673
  Content-Type:
1674
1674
  - application/json
1675
1675
  Date:
1676
- - Wed, 26 Mar 2014 13:49:51 GMT
1676
+ - Tue, 08 Apr 2014 15:34:21 GMT
1677
1677
  Strict-Transport-Security:
1678
1678
  - max-age=15552000
1679
1679
  transfer-encoding:
@@ -1682,12 +1682,12 @@ http_interactions:
1682
1682
  - Close
1683
1683
  body:
1684
1684
  encoding: UTF-8
1685
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388638800000}],\"messageCount\":171,\"recordCount\":1}"
1685
+ string: "{\"fields\":[{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
1686
1686
  http_version:
1687
- recorded_at: Wed, 26 Mar 2014 13:49:52 GMT
1687
+ recorded_at: Tue, 08 Apr 2014 15:34:16 GMT
1688
1688
  - request:
1689
1689
  method: get
1690
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17/messages?limit=18&offset=153
1690
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1691
1691
  body:
1692
1692
  encoding: US-ASCII
1693
1693
  string: ''
@@ -1706,21 +1706,21 @@ http_interactions:
1706
1706
  Content-Type:
1707
1707
  - application/json
1708
1708
  Date:
1709
- - Wed, 26 Mar 2014 13:49:51 GMT
1709
+ - Tue, 08 Apr 2014 15:34:21 GMT
1710
1710
  Strict-Transport-Security:
1711
1711
  - max-age=15552000
1712
- transfer-encoding:
1713
- - ''
1712
+ Content-Length:
1713
+ - '435'
1714
1714
  Connection:
1715
1715
  - Close
1716
1716
  body:
1717
1717
  encoding: UTF-8
1718
- string: "{\"fields\":[{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
1718
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":21,\"startTimestamp\":1388638800000}],\"messageCount\":125,\"recordCount\":1}"
1719
1719
  http_version:
1720
- recorded_at: Wed, 26 Mar 2014 13:49:52 GMT
1720
+ recorded_at: Tue, 08 Apr 2014 15:34:16 GMT
1721
1721
  - request:
1722
1722
  method: get
1723
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1723
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1724
1724
  body:
1725
1725
  encoding: US-ASCII
1726
1726
  string: ''
@@ -1739,21 +1739,21 @@ http_interactions:
1739
1739
  Content-Type:
1740
1740
  - application/json
1741
1741
  Date:
1742
- - Wed, 26 Mar 2014 13:49:51 GMT
1742
+ - Tue, 08 Apr 2014 15:34:22 GMT
1743
1743
  Strict-Transport-Security:
1744
1744
  - max-age=15552000
1745
1745
  Content-Length:
1746
- - '434'
1746
+ - '435'
1747
1747
  Connection:
1748
1748
  - Close
1749
1749
  body:
1750
1750
  encoding: UTF-8
1751
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388638800000}],\"messageCount\":171,\"recordCount\":1}"
1751
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":21,\"startTimestamp\":1388638800000}],\"messageCount\":125,\"recordCount\":1}"
1752
1752
  http_version:
1753
- recorded_at: Wed, 26 Mar 2014 13:49:52 GMT
1753
+ recorded_at: Tue, 08 Apr 2014 15:34:17 GMT
1754
1754
  - request:
1755
1755
  method: get
1756
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1756
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1757
1757
  body:
1758
1758
  encoding: US-ASCII
1759
1759
  string: ''
@@ -1772,21 +1772,21 @@ http_interactions:
1772
1772
  Content-Type:
1773
1773
  - application/json
1774
1774
  Date:
1775
- - Wed, 26 Mar 2014 13:49:51 GMT
1775
+ - Tue, 08 Apr 2014 15:34:22 GMT
1776
1776
  Strict-Transport-Security:
1777
1777
  - max-age=15552000
1778
- Content-Length:
1779
- - '434'
1778
+ transfer-encoding:
1779
+ - ''
1780
1780
  Connection:
1781
1781
  - Close
1782
1782
  body:
1783
1783
  encoding: UTF-8
1784
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388638800000}],\"messageCount\":171,\"recordCount\":1}"
1784
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":21,\"startTimestamp\":1388638800000}],\"messageCount\":125,\"recordCount\":1}"
1785
1785
  http_version:
1786
- recorded_at: Wed, 26 Mar 2014 13:49:52 GMT
1786
+ recorded_at: Tue, 08 Apr 2014 15:34:17 GMT
1787
1787
  - request:
1788
1788
  method: get
1789
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1789
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1790
1790
  body:
1791
1791
  encoding: US-ASCII
1792
1792
  string: ''
@@ -1805,21 +1805,21 @@ http_interactions:
1805
1805
  Content-Type:
1806
1806
  - application/json
1807
1807
  Date:
1808
- - Wed, 26 Mar 2014 13:49:51 GMT
1808
+ - Tue, 08 Apr 2014 15:34:22 GMT
1809
1809
  Strict-Transport-Security:
1810
1810
  - max-age=15552000
1811
- Content-Length:
1812
- - '434'
1811
+ transfer-encoding:
1812
+ - ''
1813
1813
  Connection:
1814
1814
  - Close
1815
1815
  body:
1816
1816
  encoding: UTF-8
1817
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388638800000}],\"messageCount\":171,\"recordCount\":1}"
1817
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":21,\"startTimestamp\":1388638800000}],\"messageCount\":125,\"recordCount\":1}"
1818
1818
  http_version:
1819
- recorded_at: Wed, 26 Mar 2014 13:49:52 GMT
1819
+ recorded_at: Tue, 08 Apr 2014 15:34:17 GMT
1820
1820
  - request:
1821
1821
  method: get
1822
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1822
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1823
1823
  body:
1824
1824
  encoding: US-ASCII
1825
1825
  string: ''
@@ -1838,21 +1838,21 @@ http_interactions:
1838
1838
  Content-Type:
1839
1839
  - application/json
1840
1840
  Date:
1841
- - Wed, 26 Mar 2014 13:49:51 GMT
1841
+ - Tue, 08 Apr 2014 15:34:22 GMT
1842
1842
  Strict-Transport-Security:
1843
1843
  - max-age=15552000
1844
1844
  Content-Length:
1845
- - '434'
1845
+ - '435'
1846
1846
  Connection:
1847
1847
  - Close
1848
1848
  body:
1849
1849
  encoding: UTF-8
1850
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388638800000}],\"messageCount\":171,\"recordCount\":1}"
1850
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":38,\"startTimestamp\":1388638800000}],\"messageCount\":142,\"recordCount\":1}"
1851
1851
  http_version:
1852
- recorded_at: Wed, 26 Mar 2014 13:49:53 GMT
1852
+ recorded_at: Tue, 08 Apr 2014 15:34:17 GMT
1853
1853
  - request:
1854
1854
  method: get
1855
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1855
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566/messages?limit=17&offset=125
1856
1856
  body:
1857
1857
  encoding: US-ASCII
1858
1858
  string: ''
@@ -1871,21 +1871,21 @@ http_interactions:
1871
1871
  Content-Type:
1872
1872
  - application/json
1873
1873
  Date:
1874
- - Wed, 26 Mar 2014 13:49:52 GMT
1874
+ - Tue, 08 Apr 2014 15:34:22 GMT
1875
1875
  Strict-Transport-Security:
1876
1876
  - max-age=15552000
1877
1877
  Content-Length:
1878
- - '434'
1878
+ - '16328'
1879
1879
  Connection:
1880
1880
  - Close
1881
1881
  body:
1882
1882
  encoding: UTF-8
1883
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":3,\"startTimestamp\":1388638800000}],\"messageCount\":171,\"recordCount\":1}"
1883
+ string: "{\"fields\":[{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
1884
1884
  http_version:
1885
- recorded_at: Wed, 26 Mar 2014 13:49:53 GMT
1885
+ recorded_at: Tue, 08 Apr 2014 15:34:17 GMT
1886
1886
  - request:
1887
1887
  method: get
1888
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1888
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1889
1889
  body:
1890
1890
  encoding: US-ASCII
1891
1891
  string: ''
@@ -1904,7 +1904,7 @@ http_interactions:
1904
1904
  Content-Type:
1905
1905
  - application/json
1906
1906
  Date:
1907
- - Wed, 26 Mar 2014 13:49:52 GMT
1907
+ - Tue, 08 Apr 2014 15:34:22 GMT
1908
1908
  Strict-Transport-Security:
1909
1909
  - max-age=15552000
1910
1910
  Content-Length:
@@ -1913,12 +1913,12 @@ http_interactions:
1913
1913
  - Close
1914
1914
  body:
1915
1915
  encoding: UTF-8
1916
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388638800000}],\"messageCount\":205,\"recordCount\":1}"
1916
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":38,\"startTimestamp\":1388638800000}],\"messageCount\":142,\"recordCount\":1}"
1917
1917
  http_version:
1918
- recorded_at: Wed, 26 Mar 2014 13:49:53 GMT
1918
+ recorded_at: Tue, 08 Apr 2014 15:34:17 GMT
1919
1919
  - request:
1920
1920
  method: get
1921
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17/messages?limit=34&offset=171
1921
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1922
1922
  body:
1923
1923
  encoding: US-ASCII
1924
1924
  string: ''
@@ -1937,21 +1937,21 @@ http_interactions:
1937
1937
  Content-Type:
1938
1938
  - application/json
1939
1939
  Date:
1940
- - Wed, 26 Mar 2014 13:49:52 GMT
1940
+ - Tue, 08 Apr 2014 15:34:23 GMT
1941
1941
  Strict-Transport-Security:
1942
1942
  - max-age=15552000
1943
- transfer-encoding:
1944
- - ''
1943
+ Content-Length:
1944
+ - '435'
1945
1945
  Connection:
1946
1946
  - Close
1947
1947
  body:
1948
1948
  encoding: UTF-8
1949
- string: "{\"fields\":[{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
1949
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":38,\"startTimestamp\":1388638800000}],\"messageCount\":142,\"recordCount\":1}"
1950
1950
  http_version:
1951
- recorded_at: Wed, 26 Mar 2014 13:49:53 GMT
1951
+ recorded_at: Tue, 08 Apr 2014 15:34:18 GMT
1952
1952
  - request:
1953
1953
  method: get
1954
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1954
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1955
1955
  body:
1956
1956
  encoding: US-ASCII
1957
1957
  string: ''
@@ -1970,7 +1970,7 @@ http_interactions:
1970
1970
  Content-Type:
1971
1971
  - application/json
1972
1972
  Date:
1973
- - Wed, 26 Mar 2014 13:49:52 GMT
1973
+ - Tue, 08 Apr 2014 15:34:23 GMT
1974
1974
  Strict-Transport-Security:
1975
1975
  - max-age=15552000
1976
1976
  Content-Length:
@@ -1979,12 +1979,12 @@ http_interactions:
1979
1979
  - Close
1980
1980
  body:
1981
1981
  encoding: UTF-8
1982
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388638800000}],\"messageCount\":205,\"recordCount\":1}"
1982
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":38,\"startTimestamp\":1388638800000}],\"messageCount\":142,\"recordCount\":1}"
1983
1983
  http_version:
1984
- recorded_at: Wed, 26 Mar 2014 13:49:53 GMT
1984
+ recorded_at: Tue, 08 Apr 2014 15:34:18 GMT
1985
1985
  - request:
1986
1986
  method: get
1987
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
1987
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
1988
1988
  body:
1989
1989
  encoding: US-ASCII
1990
1990
  string: ''
@@ -2003,7 +2003,7 @@ http_interactions:
2003
2003
  Content-Type:
2004
2004
  - application/json
2005
2005
  Date:
2006
- - Wed, 26 Mar 2014 13:49:52 GMT
2006
+ - Tue, 08 Apr 2014 15:34:23 GMT
2007
2007
  Strict-Transport-Security:
2008
2008
  - max-age=15552000
2009
2009
  Content-Length:
@@ -2012,12 +2012,12 @@ http_interactions:
2012
2012
  - Close
2013
2013
  body:
2014
2014
  encoding: UTF-8
2015
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388638800000}],\"messageCount\":205,\"recordCount\":1}"
2015
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":38,\"startTimestamp\":1388638800000}],\"messageCount\":142,\"recordCount\":1}"
2016
2016
  http_version:
2017
- recorded_at: Wed, 26 Mar 2014 13:49:53 GMT
2017
+ recorded_at: Tue, 08 Apr 2014 15:34:18 GMT
2018
2018
  - request:
2019
2019
  method: get
2020
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
2020
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
2021
2021
  body:
2022
2022
  encoding: US-ASCII
2023
2023
  string: ''
@@ -2036,21 +2036,21 @@ http_interactions:
2036
2036
  Content-Type:
2037
2037
  - application/json
2038
2038
  Date:
2039
- - Wed, 26 Mar 2014 13:49:52 GMT
2039
+ - Tue, 08 Apr 2014 15:34:23 GMT
2040
2040
  Strict-Transport-Security:
2041
2041
  - max-age=15552000
2042
- transfer-encoding:
2043
- - ''
2042
+ Content-Length:
2043
+ - '496'
2044
2044
  Connection:
2045
2045
  - Close
2046
2046
  body:
2047
2047
  encoding: UTF-8
2048
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388638800000}],\"messageCount\":205,\"recordCount\":1}"
2048
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":44,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":4,\"startTimestamp\":1388552400000}],\"messageCount\":152,\"recordCount\":1}"
2049
2049
  http_version:
2050
- recorded_at: Wed, 26 Mar 2014 13:49:53 GMT
2050
+ recorded_at: Tue, 08 Apr 2014 15:34:18 GMT
2051
2051
  - request:
2052
2052
  method: get
2053
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
2053
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566/messages?limit=10&offset=142
2054
2054
  body:
2055
2055
  encoding: US-ASCII
2056
2056
  string: ''
@@ -2069,21 +2069,21 @@ http_interactions:
2069
2069
  Content-Type:
2070
2070
  - application/json
2071
2071
  Date:
2072
- - Wed, 26 Mar 2014 13:49:53 GMT
2072
+ - Tue, 08 Apr 2014 15:34:23 GMT
2073
2073
  Strict-Transport-Security:
2074
2074
  - max-age=15552000
2075
2075
  Content-Length:
2076
- - '435'
2076
+ - '9860'
2077
2077
  Connection:
2078
2078
  - Close
2079
2079
  body:
2080
2080
  encoding: UTF-8
2081
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388638800000}],\"messageCount\":205,\"recordCount\":1}"
2081
+ string: "{\"fields\":[{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
2082
2082
  http_version:
2083
- recorded_at: Wed, 26 Mar 2014 13:49:54 GMT
2083
+ recorded_at: Tue, 08 Apr 2014 15:34:18 GMT
2084
2084
  - request:
2085
2085
  method: get
2086
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
2086
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
2087
2087
  body:
2088
2088
  encoding: US-ASCII
2089
2089
  string: ''
@@ -2102,21 +2102,21 @@ http_interactions:
2102
2102
  Content-Type:
2103
2103
  - application/json
2104
2104
  Date:
2105
- - Wed, 26 Mar 2014 13:49:53 GMT
2105
+ - Tue, 08 Apr 2014 15:34:23 GMT
2106
2106
  Strict-Transport-Security:
2107
2107
  - max-age=15552000
2108
- transfer-encoding:
2109
- - ''
2108
+ Content-Length:
2109
+ - '496'
2110
2110
  Connection:
2111
2111
  - Close
2112
2112
  body:
2113
2113
  encoding: UTF-8
2114
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":56,\"startTimestamp\":1388638800000}],\"messageCount\":224,\"recordCount\":1}"
2114
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":44,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":4,\"startTimestamp\":1388552400000}],\"messageCount\":152,\"recordCount\":1}"
2115
2115
  http_version:
2116
- recorded_at: Wed, 26 Mar 2014 13:49:54 GMT
2116
+ recorded_at: Tue, 08 Apr 2014 15:34:18 GMT
2117
2117
  - request:
2118
2118
  method: get
2119
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17/messages?limit=19&offset=205
2119
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
2120
2120
  body:
2121
2121
  encoding: US-ASCII
2122
2122
  string: ''
@@ -2135,21 +2135,21 @@ http_interactions:
2135
2135
  Content-Type:
2136
2136
  - application/json
2137
2137
  Date:
2138
- - Wed, 26 Mar 2014 13:49:53 GMT
2138
+ - Tue, 08 Apr 2014 15:34:24 GMT
2139
2139
  Strict-Transport-Security:
2140
2140
  - max-age=15552000
2141
- transfer-encoding:
2142
- - ''
2141
+ Content-Length:
2142
+ - '496'
2143
2143
  Connection:
2144
2144
  - Close
2145
2145
  body:
2146
2146
  encoding: UTF-8
2147
- string: "{\"fields\":[{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
2147
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":44,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":4,\"startTimestamp\":1388552400000}],\"messageCount\":152,\"recordCount\":1}"
2148
2148
  http_version:
2149
- recorded_at: Wed, 26 Mar 2014 13:49:54 GMT
2149
+ recorded_at: Tue, 08 Apr 2014 15:34:19 GMT
2150
2150
  - request:
2151
2151
  method: get
2152
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
2152
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
2153
2153
  body:
2154
2154
  encoding: US-ASCII
2155
2155
  string: ''
@@ -2168,21 +2168,21 @@ http_interactions:
2168
2168
  Content-Type:
2169
2169
  - application/json
2170
2170
  Date:
2171
- - Wed, 26 Mar 2014 13:49:53 GMT
2171
+ - Tue, 08 Apr 2014 15:34:24 GMT
2172
2172
  Strict-Transport-Security:
2173
2173
  - max-age=15552000
2174
- transfer-encoding:
2175
- - ''
2174
+ Content-Length:
2175
+ - '496'
2176
2176
  Connection:
2177
2177
  - Close
2178
2178
  body:
2179
2179
  encoding: UTF-8
2180
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":56,\"startTimestamp\":1388638800000}],\"messageCount\":224,\"recordCount\":1}"
2180
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":44,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":4,\"startTimestamp\":1388552400000}],\"messageCount\":152,\"recordCount\":1}"
2181
2181
  http_version:
2182
- recorded_at: Wed, 26 Mar 2014 13:49:54 GMT
2182
+ recorded_at: Tue, 08 Apr 2014 15:34:19 GMT
2183
2183
  - request:
2184
2184
  method: get
2185
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
2185
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
2186
2186
  body:
2187
2187
  encoding: US-ASCII
2188
2188
  string: ''
@@ -2201,21 +2201,21 @@ http_interactions:
2201
2201
  Content-Type:
2202
2202
  - application/json
2203
2203
  Date:
2204
- - Wed, 26 Mar 2014 13:49:53 GMT
2204
+ - Tue, 08 Apr 2014 15:34:24 GMT
2205
2205
  Strict-Transport-Security:
2206
2206
  - max-age=15552000
2207
2207
  Content-Length:
2208
- - '435'
2208
+ - '496'
2209
2209
  Connection:
2210
2210
  - Close
2211
2211
  body:
2212
2212
  encoding: UTF-8
2213
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":56,\"startTimestamp\":1388638800000}],\"messageCount\":224,\"recordCount\":1}"
2213
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":44,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":4,\"startTimestamp\":1388552400000}],\"messageCount\":152,\"recordCount\":1}"
2214
2214
  http_version:
2215
- recorded_at: Wed, 26 Mar 2014 13:49:54 GMT
2215
+ recorded_at: Tue, 08 Apr 2014 15:34:19 GMT
2216
2216
  - request:
2217
2217
  method: get
2218
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
2218
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
2219
2219
  body:
2220
2220
  encoding: US-ASCII
2221
2221
  string: ''
@@ -2234,7 +2234,7 @@ http_interactions:
2234
2234
  Content-Type:
2235
2235
  - application/json
2236
2236
  Date:
2237
- - Wed, 26 Mar 2014 13:49:53 GMT
2237
+ - Tue, 08 Apr 2014 15:34:24 GMT
2238
2238
  Strict-Transport-Security:
2239
2239
  - max-age=15552000
2240
2240
  transfer-encoding:
@@ -2243,12 +2243,12 @@ http_interactions:
2243
2243
  - Close
2244
2244
  body:
2245
2245
  encoding: UTF-8
2246
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":56,\"startTimestamp\":1388638800000}],\"messageCount\":224,\"recordCount\":1}"
2246
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":44,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":11,\"startTimestamp\":1388552400000}],\"messageCount\":159,\"recordCount\":1}"
2247
2247
  http_version:
2248
- recorded_at: Wed, 26 Mar 2014 13:49:54 GMT
2248
+ recorded_at: Tue, 08 Apr 2014 15:34:19 GMT
2249
2249
  - request:
2250
2250
  method: get
2251
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
2251
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566/messages?limit=7&offset=152
2252
2252
  body:
2253
2253
  encoding: US-ASCII
2254
2254
  string: ''
@@ -2267,21 +2267,21 @@ http_interactions:
2267
2267
  Content-Type:
2268
2268
  - application/json
2269
2269
  Date:
2270
- - Wed, 26 Mar 2014 13:49:53 GMT
2270
+ - Tue, 08 Apr 2014 15:34:24 GMT
2271
2271
  Strict-Transport-Security:
2272
2272
  - max-age=15552000
2273
2273
  Content-Length:
2274
- - '435'
2274
+ - '7195'
2275
2275
  Connection:
2276
2276
  - Close
2277
2277
  body:
2278
2278
  encoding: UTF-8
2279
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":56,\"startTimestamp\":1388638800000}],\"messageCount\":224,\"recordCount\":1}"
2279
+ string: "{\"fields\":[{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false},{\"name\":\"filtered\",\"fieldType\":\"filtered\",\"keyField\":false}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
2280
2280
  http_version:
2281
- recorded_at: Wed, 26 Mar 2014 13:49:55 GMT
2281
+ recorded_at: Tue, 08 Apr 2014 15:34:19 GMT
2282
2282
  - request:
2283
2283
  method: get
2284
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
2284
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
2285
2285
  body:
2286
2286
  encoding: US-ASCII
2287
2287
  string: ''
@@ -2300,21 +2300,21 @@ http_interactions:
2300
2300
  Content-Type:
2301
2301
  - application/json
2302
2302
  Date:
2303
- - Wed, 26 Mar 2014 13:49:54 GMT
2303
+ - Tue, 08 Apr 2014 15:34:24 GMT
2304
2304
  Strict-Transport-Security:
2305
2305
  - max-age=15552000
2306
2306
  Content-Length:
2307
- - '435'
2307
+ - '497'
2308
2308
  Connection:
2309
2309
  - Close
2310
2310
  body:
2311
2311
  encoding: UTF-8
2312
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":56,\"startTimestamp\":1388638800000}],\"messageCount\":224,\"recordCount\":1}"
2312
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":44,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":11,\"startTimestamp\":1388552400000}],\"messageCount\":159,\"recordCount\":1}"
2313
2313
  http_version:
2314
- recorded_at: Wed, 26 Mar 2014 13:49:55 GMT
2314
+ recorded_at: Tue, 08 Apr 2014 15:34:19 GMT
2315
2315
  - request:
2316
2316
  method: get
2317
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
2317
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
2318
2318
  body:
2319
2319
  encoding: US-ASCII
2320
2320
  string: ''
@@ -2333,7 +2333,7 @@ http_interactions:
2333
2333
  Content-Type:
2334
2334
  - application/json
2335
2335
  Date:
2336
- - Wed, 26 Mar 2014 13:49:54 GMT
2336
+ - Tue, 08 Apr 2014 15:34:25 GMT
2337
2337
  Strict-Transport-Security:
2338
2338
  - max-age=15552000
2339
2339
  Content-Length:
@@ -2342,12 +2342,12 @@ http_interactions:
2342
2342
  - Close
2343
2343
  body:
2344
2344
  encoding: UTF-8
2345
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":57,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":19,\"startTimestamp\":1388552400000}],\"messageCount\":244,\"recordCount\":1}"
2345
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":44,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":11,\"startTimestamp\":1388552400000}],\"messageCount\":159,\"recordCount\":1}"
2346
2346
  http_version:
2347
- recorded_at: Wed, 26 Mar 2014 13:49:55 GMT
2347
+ recorded_at: Tue, 08 Apr 2014 15:34:20 GMT
2348
2348
  - request:
2349
2349
  method: get
2350
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17/messages?limit=20&offset=224
2350
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
2351
2351
  body:
2352
2352
  encoding: US-ASCII
2353
2353
  string: ''
@@ -2366,7 +2366,7 @@ http_interactions:
2366
2366
  Content-Type:
2367
2367
  - application/json
2368
2368
  Date:
2369
- - Wed, 26 Mar 2014 13:49:54 GMT
2369
+ - Tue, 08 Apr 2014 15:34:25 GMT
2370
2370
  Strict-Transport-Security:
2371
2371
  - max-age=15552000
2372
2372
  transfer-encoding:
@@ -2375,12 +2375,12 @@ http_interactions:
2375
2375
  - Close
2376
2376
  body:
2377
2377
  encoding: UTF-8
2378
- string: "{\"fields\":[{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
2378
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":44,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":11,\"startTimestamp\":1388552400000}],\"messageCount\":159,\"recordCount\":1}"
2379
2379
  http_version:
2380
- recorded_at: Wed, 26 Mar 2014 13:49:55 GMT
2380
+ recorded_at: Tue, 08 Apr 2014 15:34:20 GMT
2381
2381
  - request:
2382
2382
  method: get
2383
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
2383
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
2384
2384
  body:
2385
2385
  encoding: US-ASCII
2386
2386
  string: ''
@@ -2399,73 +2399,7 @@ http_interactions:
2399
2399
  Content-Type:
2400
2400
  - application/json
2401
2401
  Date:
2402
- - Wed, 26 Mar 2014 13:49:54 GMT
2403
- Strict-Transport-Security:
2404
- - max-age=15552000
2405
- transfer-encoding:
2406
- - ''
2407
- Connection:
2408
- - Close
2409
- body:
2410
- encoding: UTF-8
2411
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":57,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":19,\"startTimestamp\":1388552400000}],\"messageCount\":244,\"recordCount\":1}"
2412
- http_version:
2413
- recorded_at: Wed, 26 Mar 2014 13:49:55 GMT
2414
- - request:
2415
- method: get
2416
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
2417
- body:
2418
- encoding: US-ASCII
2419
- string: ''
2420
- headers:
2421
- User-Agent:
2422
- - excon/0.32.1
2423
- Content-Type:
2424
- - application/json
2425
- Accept:
2426
- - application/json
2427
- response:
2428
- status:
2429
- code: 200
2430
- message:
2431
- headers:
2432
- Content-Type:
2433
- - application/json
2434
- Date:
2435
- - Wed, 26 Mar 2014 13:49:54 GMT
2436
- Strict-Transport-Security:
2437
- - max-age=15552000
2438
- transfer-encoding:
2439
- - ''
2440
- Connection:
2441
- - Close
2442
- body:
2443
- encoding: UTF-8
2444
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":57,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":19,\"startTimestamp\":1388552400000}],\"messageCount\":244,\"recordCount\":1}"
2445
- http_version:
2446
- recorded_at: Wed, 26 Mar 2014 13:49:55 GMT
2447
- - request:
2448
- method: get
2449
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
2450
- body:
2451
- encoding: US-ASCII
2452
- string: ''
2453
- headers:
2454
- User-Agent:
2455
- - excon/0.32.1
2456
- Content-Type:
2457
- - application/json
2458
- Accept:
2459
- - application/json
2460
- response:
2461
- status:
2462
- code: 200
2463
- message:
2464
- headers:
2465
- Content-Type:
2466
- - application/json
2467
- Date:
2468
- - Wed, 26 Mar 2014 13:49:54 GMT
2402
+ - Tue, 08 Apr 2014 15:34:25 GMT
2469
2403
  Strict-Transport-Security:
2470
2404
  - max-age=15552000
2471
2405
  Content-Length:
@@ -2474,12 +2408,12 @@ http_interactions:
2474
2408
  - Close
2475
2409
  body:
2476
2410
  encoding: UTF-8
2477
- string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":57,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":19,\"startTimestamp\":1388552400000}],\"messageCount\":244,\"recordCount\":1}"
2411
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":44,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":11,\"startTimestamp\":1388552400000}],\"messageCount\":159,\"recordCount\":1}"
2478
2412
  http_version:
2479
- recorded_at: Wed, 26 Mar 2014 13:49:55 GMT
2413
+ recorded_at: Tue, 08 Apr 2014 15:34:20 GMT
2480
2414
  - request:
2481
2415
  method: get
2482
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
2416
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
2483
2417
  body:
2484
2418
  encoding: US-ASCII
2485
2419
  string: ''
@@ -2498,21 +2432,21 @@ http_interactions:
2498
2432
  Content-Type:
2499
2433
  - application/json
2500
2434
  Date:
2501
- - Wed, 26 Mar 2014 13:49:54 GMT
2435
+ - Tue, 08 Apr 2014 15:34:25 GMT
2502
2436
  Strict-Transport-Security:
2503
2437
  - max-age=15552000
2504
- transfer-encoding:
2505
- - ''
2438
+ Content-Length:
2439
+ - '497'
2506
2440
  Connection:
2507
2441
  - Close
2508
2442
  body:
2509
2443
  encoding: UTF-8
2510
- string: "{\"state\":\"DONE GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":57,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":34,\"startTimestamp\":1388552400000}],\"messageCount\":259,\"recordCount\":1}"
2444
+ string: "{\"state\":\"GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":44,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":11,\"startTimestamp\":1388552400000}],\"messageCount\":159,\"recordCount\":1}"
2511
2445
  http_version:
2512
- recorded_at: Wed, 26 Mar 2014 13:49:56 GMT
2446
+ recorded_at: Tue, 08 Apr 2014 15:34:20 GMT
2513
2447
  - request:
2514
2448
  method: get
2515
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17/messages?limit=15&offset=244
2449
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
2516
2450
  body:
2517
2451
  encoding: US-ASCII
2518
2452
  string: ''
@@ -2531,21 +2465,21 @@ http_interactions:
2531
2465
  Content-Type:
2532
2466
  - application/json
2533
2467
  Date:
2534
- - Wed, 26 Mar 2014 13:49:55 GMT
2468
+ - Tue, 08 Apr 2014 15:34:25 GMT
2535
2469
  Strict-Transport-Security:
2536
2470
  - max-age=15552000
2537
2471
  Content-Length:
2538
- - '18414'
2472
+ - '502'
2539
2473
  Connection:
2540
2474
  - Close
2541
2475
  body:
2542
2476
  encoding: UTF-8
2543
- string: "{\"fields\":[{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"},{\"keyField\":false,\"name\":\"filtered\",\"fieldType\":\"filtered\"}],\"messages\":[{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}},{\"map\":{\"_receipttime\":\"filtered\",\"_source\":\"filtered\",\"_collector\":\"filtered\",\"_format\":\"filtered\",\"_blockid\":\"filtered\",\"_messageid\":\"filtered\",\"_messagetime\":\"filtered\",\"_collectorid\":\"filtered\",\"_sourcename\":\"filtered\",\"_sourcehost\":\"filtered\",\"_raw\":\"filtered\",\"_size\":\"filtered\",\"_sourcecategory\":\"filtered\",\"_sourceid\":\"filtered\",\"_messagecount\":\"filtered\"}}]}"
2477
+ string: "{\"state\":\"DONE GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":44,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":11,\"startTimestamp\":1388552400000}],\"messageCount\":159,\"recordCount\":1}"
2544
2478
  http_version:
2545
- recorded_at: Wed, 26 Mar 2014 13:49:56 GMT
2479
+ recorded_at: Tue, 08 Apr 2014 15:34:20 GMT
2546
2480
  - request:
2547
2481
  method: get
2548
- uri: https://api.sumologic.com/api/v1/search/jobs/33BB3648E1E22B17
2482
+ uri: https://api.sumologic.com/api/v1/search/jobs/25091E7E50399566
2549
2483
  body:
2550
2484
  encoding: US-ASCII
2551
2485
  string: ''
@@ -2564,7 +2498,7 @@ http_interactions:
2564
2498
  Content-Type:
2565
2499
  - application/json
2566
2500
  Date:
2567
- - Wed, 26 Mar 2014 13:49:55 GMT
2501
+ - Tue, 08 Apr 2014 15:34:25 GMT
2568
2502
  Strict-Transport-Security:
2569
2503
  - max-age=15552000
2570
2504
  Content-Length:
@@ -2573,7 +2507,7 @@ http_interactions:
2573
2507
  - Close
2574
2508
  body:
2575
2509
  encoding: UTF-8
2576
- string: "{\"state\":\"DONE GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":64,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":43,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":24,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":37,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":57,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":34,\"startTimestamp\":1388552400000}],\"messageCount\":259,\"recordCount\":1}"
2510
+ string: "{\"state\":\"DONE GATHERING RESULTS\",\"pendingWarnings\":[],\"pendingErrors\":[],\"histogramBuckets\":[{\"length\":86400000,\"count\":48,\"startTimestamp\":1388984400000},{\"length\":86400000,\"count\":13,\"startTimestamp\":1388898000000},{\"length\":86400000,\"count\":16,\"startTimestamp\":1388811600000},{\"length\":86400000,\"count\":27,\"startTimestamp\":1388725200000},{\"length\":86400000,\"count\":44,\"startTimestamp\":1388638800000},{\"length\":86400000,\"count\":11,\"startTimestamp\":1388552400000}],\"messageCount\":159,\"recordCount\":1}"
2577
2511
  http_version:
2578
- recorded_at: Wed, 26 Mar 2014 13:49:56 GMT
2512
+ recorded_at: Tue, 08 Apr 2014 15:34:20 GMT
2579
2513
  recorded_with: VCR 2.8.0