fnordmetric 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +5 -5
- data/Gemfile.lock +5 -5
- data/VERSION +1 -1
- data/fnordmetric.gemspec +16 -20
- metadata +7 -11
- data/Procfile +0 -1
- data/em_runner.rb +0 -33
- data/server.rb +0 -22
- data/test_stream.sh +0 -187
data/Gemfile
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
source "http://rubygems.org"
|
2
2
|
|
3
|
-
gem "mongoid", "
|
4
|
-
gem "mongo", "
|
5
|
-
gem "bson_ext", "
|
6
|
-
gem "sinatra", "
|
7
|
-
gem "redis", "
|
3
|
+
gem "mongoid", ">= 2.2.0"
|
4
|
+
gem "mongo", ">= 1.4.0"
|
5
|
+
gem "bson_ext", ">= 1.4.0"
|
6
|
+
gem "sinatra", ">= 1.2.6"
|
7
|
+
gem "redis", ">= 2.2.2"
|
8
8
|
gem "eventmachine"
|
9
9
|
gem "em-hiredis"
|
10
10
|
gem "json"
|
data/Gemfile.lock
CHANGED
@@ -70,7 +70,7 @@ PLATFORMS
|
|
70
70
|
ruby
|
71
71
|
|
72
72
|
DEPENDENCIES
|
73
|
-
bson_ext (
|
73
|
+
bson_ext (>= 1.4.0)
|
74
74
|
bundler (~> 1.0.0)
|
75
75
|
delorean
|
76
76
|
em-hiredis
|
@@ -78,13 +78,13 @@ DEPENDENCIES
|
|
78
78
|
haml
|
79
79
|
jeweler (~> 1.5.2)
|
80
80
|
json
|
81
|
-
mongo (
|
82
|
-
mongoid (
|
81
|
+
mongo (>= 1.4.0)
|
82
|
+
mongoid (>= 2.2.0)
|
83
83
|
rack
|
84
84
|
rack-test
|
85
|
-
redis (
|
85
|
+
redis (>= 2.2.2)
|
86
86
|
rspec (~> 2.6.0)
|
87
87
|
shoulda
|
88
|
-
sinatra (
|
88
|
+
sinatra (>= 1.2.6)
|
89
89
|
thin
|
90
90
|
yajl-ruby!
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.1
|
data/fnordmetric.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{fnordmetric}
|
8
|
-
s.version = "0.5.
|
8
|
+
s.version = "0.5.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Paul Asmuth"]
|
@@ -16,7 +16,6 @@ Gem::Specification.new do |s|
|
|
16
16
|
".document",
|
17
17
|
"Gemfile",
|
18
18
|
"Gemfile.lock",
|
19
|
-
"Procfile",
|
20
19
|
"Rakefile",
|
21
20
|
"VERSION",
|
22
21
|
"_spec/app_spec.rb",
|
@@ -32,7 +31,6 @@ Gem::Specification.new do |s|
|
|
32
31
|
"_spec/widget_spec.rb",
|
33
32
|
"doc/example_server.rb",
|
34
33
|
"doc/import_dump.rb",
|
35
|
-
"em_runner.rb",
|
36
34
|
"fnordmetric.gemspec",
|
37
35
|
"haml/app.haml",
|
38
36
|
"haml/widget.haml",
|
@@ -84,7 +82,6 @@ Gem::Specification.new do |s|
|
|
84
82
|
"pub/raphael-utils.js",
|
85
83
|
"pub/sprite.png",
|
86
84
|
"readme.rdoc",
|
87
|
-
"server.rb",
|
88
85
|
"spec/app_spec.rb",
|
89
86
|
"spec/context_spec.rb",
|
90
87
|
"spec/dashboard_spec.rb",
|
@@ -96,7 +93,6 @@ Gem::Specification.new do |s|
|
|
96
93
|
"spec/spec_helper.rb",
|
97
94
|
"spec/widget_spec.rb",
|
98
95
|
"spec/worker_spec.rb",
|
99
|
-
"test_stream.sh",
|
100
96
|
"ulm_stats.rb"
|
101
97
|
]
|
102
98
|
s.homepage = %q{http://github.com/paulasmuth/fnordmetric}
|
@@ -122,11 +118,11 @@ Gem::Specification.new do |s|
|
|
122
118
|
s.specification_version = 3
|
123
119
|
|
124
120
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
125
|
-
s.add_runtime_dependency(%q<mongoid>, ["
|
126
|
-
s.add_runtime_dependency(%q<mongo>, ["
|
127
|
-
s.add_runtime_dependency(%q<bson_ext>, ["
|
128
|
-
s.add_runtime_dependency(%q<sinatra>, ["
|
129
|
-
s.add_runtime_dependency(%q<redis>, ["
|
121
|
+
s.add_runtime_dependency(%q<mongoid>, [">= 2.2.0"])
|
122
|
+
s.add_runtime_dependency(%q<mongo>, [">= 1.4.0"])
|
123
|
+
s.add_runtime_dependency(%q<bson_ext>, [">= 1.4.0"])
|
124
|
+
s.add_runtime_dependency(%q<sinatra>, [">= 1.2.6"])
|
125
|
+
s.add_runtime_dependency(%q<redis>, [">= 2.2.2"])
|
130
126
|
s.add_runtime_dependency(%q<eventmachine>, [">= 0"])
|
131
127
|
s.add_runtime_dependency(%q<em-hiredis>, [">= 0"])
|
132
128
|
s.add_runtime_dependency(%q<json>, [">= 0"])
|
@@ -141,11 +137,11 @@ Gem::Specification.new do |s|
|
|
141
137
|
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
142
138
|
s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
|
143
139
|
else
|
144
|
-
s.add_dependency(%q<mongoid>, ["
|
145
|
-
s.add_dependency(%q<mongo>, ["
|
146
|
-
s.add_dependency(%q<bson_ext>, ["
|
147
|
-
s.add_dependency(%q<sinatra>, ["
|
148
|
-
s.add_dependency(%q<redis>, ["
|
140
|
+
s.add_dependency(%q<mongoid>, [">= 2.2.0"])
|
141
|
+
s.add_dependency(%q<mongo>, [">= 1.4.0"])
|
142
|
+
s.add_dependency(%q<bson_ext>, [">= 1.4.0"])
|
143
|
+
s.add_dependency(%q<sinatra>, [">= 1.2.6"])
|
144
|
+
s.add_dependency(%q<redis>, [">= 2.2.2"])
|
149
145
|
s.add_dependency(%q<eventmachine>, [">= 0"])
|
150
146
|
s.add_dependency(%q<em-hiredis>, [">= 0"])
|
151
147
|
s.add_dependency(%q<json>, [">= 0"])
|
@@ -161,11 +157,11 @@ Gem::Specification.new do |s|
|
|
161
157
|
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
|
162
158
|
end
|
163
159
|
else
|
164
|
-
s.add_dependency(%q<mongoid>, ["
|
165
|
-
s.add_dependency(%q<mongo>, ["
|
166
|
-
s.add_dependency(%q<bson_ext>, ["
|
167
|
-
s.add_dependency(%q<sinatra>, ["
|
168
|
-
s.add_dependency(%q<redis>, ["
|
160
|
+
s.add_dependency(%q<mongoid>, [">= 2.2.0"])
|
161
|
+
s.add_dependency(%q<mongo>, [">= 1.4.0"])
|
162
|
+
s.add_dependency(%q<bson_ext>, [">= 1.4.0"])
|
163
|
+
s.add_dependency(%q<sinatra>, [">= 1.2.6"])
|
164
|
+
s.add_dependency(%q<redis>, [">= 2.2.2"])
|
169
165
|
s.add_dependency(%q<eventmachine>, [">= 0"])
|
170
166
|
s.add_dependency(%q<em-hiredis>, [">= 0"])
|
171
167
|
s.add_dependency(%q<json>, [">= 0"])
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: fnordmetric
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.5.
|
5
|
+
version: 0.5.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Paul Asmuth
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
requirement: &id001 !ruby/object:Gem::Requirement
|
19
19
|
none: false
|
20
20
|
requirements:
|
21
|
-
- -
|
21
|
+
- - ">="
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: 2.2.0
|
24
24
|
type: :runtime
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
requirement: &id002 !ruby/object:Gem::Requirement
|
30
30
|
none: false
|
31
31
|
requirements:
|
32
|
-
- -
|
32
|
+
- - ">="
|
33
33
|
- !ruby/object:Gem::Version
|
34
34
|
version: 1.4.0
|
35
35
|
type: :runtime
|
@@ -40,7 +40,7 @@ dependencies:
|
|
40
40
|
requirement: &id003 !ruby/object:Gem::Requirement
|
41
41
|
none: false
|
42
42
|
requirements:
|
43
|
-
- -
|
43
|
+
- - ">="
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: 1.4.0
|
46
46
|
type: :runtime
|
@@ -51,7 +51,7 @@ dependencies:
|
|
51
51
|
requirement: &id004 !ruby/object:Gem::Requirement
|
52
52
|
none: false
|
53
53
|
requirements:
|
54
|
-
- -
|
54
|
+
- - ">="
|
55
55
|
- !ruby/object:Gem::Version
|
56
56
|
version: 1.2.6
|
57
57
|
type: :runtime
|
@@ -62,7 +62,7 @@ dependencies:
|
|
62
62
|
requirement: &id005 !ruby/object:Gem::Requirement
|
63
63
|
none: false
|
64
64
|
requirements:
|
65
|
-
- -
|
65
|
+
- - ">="
|
66
66
|
- !ruby/object:Gem::Version
|
67
67
|
version: 2.2.2
|
68
68
|
type: :runtime
|
@@ -223,7 +223,6 @@ files:
|
|
223
223
|
- .document
|
224
224
|
- Gemfile
|
225
225
|
- Gemfile.lock
|
226
|
-
- Procfile
|
227
226
|
- Rakefile
|
228
227
|
- VERSION
|
229
228
|
- _spec/app_spec.rb
|
@@ -239,7 +238,6 @@ files:
|
|
239
238
|
- _spec/widget_spec.rb
|
240
239
|
- doc/example_server.rb
|
241
240
|
- doc/import_dump.rb
|
242
|
-
- em_runner.rb
|
243
241
|
- fnordmetric.gemspec
|
244
242
|
- haml/app.haml
|
245
243
|
- haml/widget.haml
|
@@ -291,7 +289,6 @@ files:
|
|
291
289
|
- pub/raphael-utils.js
|
292
290
|
- pub/sprite.png
|
293
291
|
- readme.rdoc
|
294
|
-
- server.rb
|
295
292
|
- spec/app_spec.rb
|
296
293
|
- spec/context_spec.rb
|
297
294
|
- spec/dashboard_spec.rb
|
@@ -303,7 +300,6 @@ files:
|
|
303
300
|
- spec/spec_helper.rb
|
304
301
|
- spec/widget_spec.rb
|
305
302
|
- spec/worker_spec.rb
|
306
|
-
- test_stream.sh
|
307
303
|
- ulm_stats.rb
|
308
304
|
has_rdoc: true
|
309
305
|
homepage: http://github.com/paulasmuth/fnordmetric
|
@@ -319,7 +315,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
319
315
|
requirements:
|
320
316
|
- - ">="
|
321
317
|
- !ruby/object:Gem::Version
|
322
|
-
hash: -
|
318
|
+
hash: -764930577
|
323
319
|
segments:
|
324
320
|
- 0
|
325
321
|
version: "0"
|
data/Procfile
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
server: bundle exec ruby server.rb
|
data/em_runner.rb
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
require "rubygems"
|
2
|
-
require "eventmachine"
|
3
|
-
require 'em-hiredis'
|
4
|
-
|
5
|
-
module Runner
|
6
|
-
|
7
|
-
def self.redis
|
8
|
-
@redis ||= EM::Hiredis.connect("redis://localhost:6379")
|
9
|
-
end
|
10
|
-
|
11
|
-
def self.next
|
12
|
-
redis.blpop('fnordmetric-queue', 0).callback do |list, data|
|
13
|
-
puts data
|
14
|
-
EM.next_tick(&method(:next))
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
end
|
19
|
-
|
20
|
-
|
21
|
-
module Ticker
|
22
|
-
|
23
|
-
def self.tick
|
24
|
-
EM.defer(proc { print '.'; sleep 1; }, proc{ EM.next_tick(&method(:tick)) })
|
25
|
-
#EM.next_tick(&method(:next))
|
26
|
-
end
|
27
|
-
|
28
|
-
end
|
29
|
-
|
30
|
-
EM.run do
|
31
|
-
Ticker.tick
|
32
|
-
Runner.next
|
33
|
-
end
|
data/server.rb
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
$: << ::File.expand_path("../lib/", __FILE__)
|
2
|
-
|
3
|
-
require "fnordmetric"
|
4
|
-
|
5
|
-
FnordMetric.namespace :blubber do
|
6
|
-
|
7
|
-
widget 'MyDash', nil
|
8
|
-
|
9
|
-
gauge :blubbers_delta, :tick => 60
|
10
|
-
gauge :blubbers_total, :tick => 10, :progressive => true
|
11
|
-
|
12
|
-
event :foobar do
|
13
|
-
1.times do # simulate load
|
14
|
-
incr(:blubbers_total, 1)
|
15
|
-
incr(:blubbers_delta, 1)
|
16
|
-
end
|
17
|
-
#puts "fuuu: #{data} ! #{key(:blubbers_total)}"
|
18
|
-
end
|
19
|
-
|
20
|
-
end
|
21
|
-
|
22
|
-
FnordMetric.run
|
data/test_stream.sh
DELETED
@@ -1,187 +0,0 @@
|
|
1
|
-
#!/bin/sh
|
2
|
-
|
3
|
-
if [ "$1" != "stream" ]
|
4
|
-
then
|
5
|
-
if [ "$2" != "" ]
|
6
|
-
then
|
7
|
-
sh $0 stream | nc $1 $2
|
8
|
-
else
|
9
|
-
echo "usage: $0 host port"
|
10
|
-
exit
|
11
|
-
fi
|
12
|
-
else
|
13
|
-
while true; do
|
14
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
15
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
16
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
17
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
18
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
19
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
20
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
21
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
22
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"cnhsdgas6456\"}"
|
23
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
24
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
25
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
26
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
27
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
28
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
29
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
30
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
31
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
32
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
33
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
34
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
35
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
36
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
37
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
38
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
39
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"cnhsdgas6456\"}"
|
40
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
41
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
42
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
43
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
44
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
45
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
46
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
47
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
48
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
49
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
50
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
51
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"cnhsdgas6456\"}"
|
52
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
53
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
54
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
55
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
56
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
57
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
58
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
59
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
60
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
61
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
62
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
63
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
64
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
65
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
66
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
67
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
68
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"cnhsdgas6456\"}"
|
69
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
70
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
71
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
72
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
73
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
74
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
75
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
76
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
77
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
78
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
79
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
80
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
81
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"cnhsdgas6456\"}"
|
82
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
83
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
84
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
85
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
86
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
87
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
88
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
89
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
90
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
91
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
92
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
93
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
94
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"cnhsdgas6456\"}"
|
95
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
96
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
97
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
98
|
-
sleep 0.06
|
99
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
100
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
101
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
102
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
103
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
104
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
105
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
106
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
107
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"cnhsdgas6456\"}"
|
108
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
109
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
110
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
111
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
112
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
113
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
114
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
115
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
116
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
117
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
118
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
119
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
120
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
121
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
122
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
123
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
124
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"cnhsdgas6456\"}"
|
125
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
126
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
127
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
128
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
129
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
130
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
131
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
132
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
133
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
134
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
135
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
136
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"cnhsdgas6456\"}"
|
137
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
138
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
139
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
140
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
141
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
142
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
143
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
144
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
145
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
146
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
147
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
148
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
149
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
150
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
151
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
152
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
153
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"cnhsdgas6456\"}"
|
154
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
155
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
156
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"43sdf5435syf\"}"
|
157
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
158
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
159
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
160
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
161
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
162
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
163
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
164
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
165
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
166
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"cnhsdgas6456\"}"
|
167
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
168
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
169
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
170
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
171
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
172
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
173
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
174
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"hgfhw3ydgfsd\"}"
|
175
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"wurfhjfghfgh\"}"
|
176
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
177
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
178
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
179
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"cnhsdgas6456\"}"
|
180
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
181
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
182
|
-
echo "{\"_type\": \"foobar\", \"_session\": \"fghfgh7asdfa\"}"
|
183
|
-
|
184
|
-
sleep 0.15
|
185
|
-
done
|
186
|
-
fi
|
187
|
-
|