scram 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +173 -0
- data/Rakefile +32 -0
- data/app/models/scram/policy.rb +67 -0
- data/app/models/scram/target.rb +70 -0
- data/lib/scram.rb +11 -0
- data/lib/scram/concerns/aggregate_holder.rb +23 -0
- data/lib/scram/concerns/holder.rb +38 -0
- data/lib/scram/core_ext/symbol_extensions.rb +14 -0
- data/lib/scram/dsl/builders.rb +43 -0
- data/lib/scram/dsl/definitions.rb +36 -0
- data/lib/scram/dsl/model_conditions.rb +50 -0
- data/lib/scram/engine.rb +15 -0
- data/lib/scram/version.rb +3 -0
- data/lib/tasks/scram_tasks.rake +4 -0
- data/spec/config/mongoid.yml +6 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/config/manifest.js +5 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/javascripts/cable.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
- data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/jobs/application_job.rb +2 -0
- data/spec/dummy/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +34 -0
- data/spec/dummy/bin/update +29 -0
- data/spec/dummy/config.ru +5 -0
- data/spec/dummy/config/application.rb +23 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/cable.yml +9 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +51 -0
- data/spec/dummy/config/environments/production.rb +83 -0
- data/spec/dummy/config/environments/test.rb +42 -0
- data/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
- data/spec/dummy/config/initializers/assets.rb +11 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/new_framework_defaults.rb +21 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +9 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/mongoid.yml +147 -0
- data/spec/dummy/config/puma.rb +47 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/log/development.log +11 -0
- data/spec/dummy/log/test.log +2321 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/factories/policy.rb +0 -0
- data/spec/rails_helper.rb +78 -0
- data/spec/scram/concerns/aggregate_holder_spec.rb +58 -0
- data/spec/scram/concerns/holder_spec.rb +100 -0
- data/spec/scram/dsl_spec.rb +51 -0
- data/spec/scram/policy_spec.rb +28 -0
- data/spec/scram/target_spec.rb +40 -0
- data/spec/scram/test_implementations/simple_aggregate_holder.rb +21 -0
- data/spec/scram/test_implementations/simple_holder.rb +21 -0
- data/spec/scram/test_implementations/test_model.rb +10 -0
- data/spec/scram_spec.rb +11 -0
- data/spec/spec_helper.rb +99 -0
- data/spec/support/factory_girl.rb +9 -0
- metadata +278 -0
@@ -0,0 +1,47 @@
|
|
1
|
+
# Puma can serve each request in a thread from an internal thread pool.
|
2
|
+
# The `threads` method setting takes two numbers a minimum and maximum.
|
3
|
+
# Any libraries that use thread pools should be configured to match
|
4
|
+
# the maximum value specified for Puma. Default is set to 5 threads for minimum
|
5
|
+
# and maximum, this matches the default thread size of Active Record.
|
6
|
+
#
|
7
|
+
threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }.to_i
|
8
|
+
threads threads_count, threads_count
|
9
|
+
|
10
|
+
# Specifies the `port` that Puma will listen on to receive requests, default is 3000.
|
11
|
+
#
|
12
|
+
port ENV.fetch("PORT") { 3000 }
|
13
|
+
|
14
|
+
# Specifies the `environment` that Puma will run in.
|
15
|
+
#
|
16
|
+
environment ENV.fetch("RAILS_ENV") { "development" }
|
17
|
+
|
18
|
+
# Specifies the number of `workers` to boot in clustered mode.
|
19
|
+
# Workers are forked webserver processes. If using threads and workers together
|
20
|
+
# the concurrency of the application would be max `threads` * `workers`.
|
21
|
+
# Workers do not work on JRuby or Windows (both of which do not support
|
22
|
+
# processes).
|
23
|
+
#
|
24
|
+
# workers ENV.fetch("WEB_CONCURRENCY") { 2 }
|
25
|
+
|
26
|
+
# Use the `preload_app!` method when specifying a `workers` number.
|
27
|
+
# This directive tells Puma to first boot the application and load code
|
28
|
+
# before forking the application. This takes advantage of Copy On Write
|
29
|
+
# process behavior so workers use less memory. If you use this option
|
30
|
+
# you need to make sure to reconnect any threads in the `on_worker_boot`
|
31
|
+
# block.
|
32
|
+
#
|
33
|
+
# preload_app!
|
34
|
+
|
35
|
+
# The code in the `on_worker_boot` will be called if you are using
|
36
|
+
# clustered mode by specifying a number of `workers`. After each worker
|
37
|
+
# process is booted this block will be run, if you are using `preload_app!`
|
38
|
+
# option you will want to use this block to reconnect to any threads
|
39
|
+
# or connections that may have been created at application boot, Ruby
|
40
|
+
# cannot share connections between processes.
|
41
|
+
#
|
42
|
+
# on_worker_boot do
|
43
|
+
# ActiveRecord::Base.establish_connection if defined?(ActiveRecord)
|
44
|
+
# end
|
45
|
+
|
46
|
+
# Allow puma to be restarted by `rails restart` command.
|
47
|
+
plugin :tmp_restart
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rails secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure the secrets in this file are kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
|
13
|
+
development:
|
14
|
+
secret_key_base: d5ad519c27139c603a189c2af80e8944b73bde03ae0f6fcd840ad1af026aa6948c13fda2e3c3d7b59c52543214ee2b06390dc1db2c8ced1814ee70be15ab42cb
|
15
|
+
|
16
|
+
test:
|
17
|
+
secret_key_base: 196fd6548f9ab03e94e4dfa21979a48a36156c3892f5bef8514f7795ace856b8455f40b8fc38b0269ee7197e3b3bb8baad576f79ddb9217d7afac735a002e0ea
|
18
|
+
|
19
|
+
# Do not keep production secrets in the repository,
|
20
|
+
# instead read values from the environment.
|
21
|
+
production:
|
22
|
+
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
MONGODB | Topology type 'unknown' initializing.
|
2
|
+
MONGODB | Server localhost:27017 initializing.
|
3
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
4
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
5
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
6
|
+
MONGODB | localhost:27017 | scram_dummy_development.find | STARTED | {"find"=>"scram_policies", "filter"=>{}, "sort"=>{"_id"=>1}, "limit"=>1, "singleBatch"=>true}
|
7
|
+
MONGODB | localhost:27017 | scram_dummy_development.find | SUCCEEDED | 0.010178s
|
8
|
+
MONGODB | localhost:27017 | scram_dummy_development.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0192c366a3522114db9e1'), "priority"=>5, "context"=>"Test"}], "ordered"=>true}
|
9
|
+
MONGODB | localhost:27017 | scram_dummy_development.insert | SUCCEEDED | 0.09737699999999999s
|
10
|
+
MONGODB | localhost:27017 | scram_dummy_development.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b0192c366a3522114db9e1')}, "u"=>{"$set"=>{"context"=>"dsf"}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
11
|
+
MONGODB | localhost:27017 | scram_dummy_development.update | SUCCEEDED | 0.045752999999999995s
|
@@ -0,0 +1,2321 @@
|
|
1
|
+
MONGODB | Topology type 'unknown' initializing.
|
2
|
+
MONGODB | Server localhost:27017 initializing.
|
3
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
4
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
5
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
6
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
7
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.021963s
|
8
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
9
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00048300000000000003s
|
10
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
11
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000507s
|
12
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
13
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000938s
|
14
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
15
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002137s
|
16
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c467408'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c467409'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
17
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.055528s
|
18
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01c09366a352e0c467408')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
19
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000517s
|
20
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01c09366a352e0c467408')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
21
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0005849999999999999s
|
22
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01c09366a352e0c467408')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
23
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.00175s
|
24
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
25
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002373s
|
26
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
27
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003241s
|
28
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c46740a'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c46740b'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
|
29
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000949s
|
30
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
31
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000536s
|
32
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
33
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000686s
|
34
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c46740c'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
|
35
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000456s
|
36
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c46740d'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
|
37
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000898s
|
38
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
39
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00043900000000000005s
|
40
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
41
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0009860000000000001s
|
42
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
43
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000553s
|
44
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
45
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000535s
|
46
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
47
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000784s
|
48
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
49
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00030900000000000003s
|
50
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
51
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000458s
|
52
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
53
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000708s
|
54
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
55
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013119999999999998s
|
56
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
57
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002044s
|
58
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
59
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000471s
|
60
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
61
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000527s
|
62
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c46740e'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c46740f'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
63
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.007477s
|
64
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
65
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000941s
|
66
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
67
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008990000000000001s
|
68
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c467411'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c467412'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
69
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000699s
|
70
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
71
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000742s
|
72
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
73
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000656s
|
74
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
75
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001636s
|
76
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
77
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000836s
|
78
|
+
MONGODB | Topology type 'unknown' initializing.
|
79
|
+
MONGODB | Server localhost:27017 initializing.
|
80
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
81
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
82
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
83
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
84
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0012319999999999998s
|
85
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
86
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.017854000000000002s
|
87
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
88
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007419999999999999s
|
89
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
90
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008719999999999999s
|
91
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
92
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001075s
|
93
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
94
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002242s
|
95
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
96
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000911s
|
97
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
98
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000384s
|
99
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
100
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002951s
|
101
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
102
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.042003s
|
103
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176d6'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176d7'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
104
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0016899999999999999s
|
105
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01c30366a352fe24176d6')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
106
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000614s
|
107
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01c30366a352fe24176d6')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
108
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001021s
|
109
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01c30366a352fe24176d6')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
110
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.003666s
|
111
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
112
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000625s
|
113
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
114
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001557s
|
115
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176d8'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176d9'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
|
116
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000954s
|
117
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
118
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001319s
|
119
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
120
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000657s
|
121
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176da'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
|
122
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000455s
|
123
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176db'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
|
124
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000891s
|
125
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
126
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000673s
|
127
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
128
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000655s
|
129
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
130
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003287s
|
131
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
132
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000872s
|
133
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
134
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.009947s
|
135
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
136
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0013340000000000001s
|
137
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
138
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000945s
|
139
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
140
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008860000000000001s
|
141
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
142
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002295s
|
143
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
144
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0007740000000000001s
|
145
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
146
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0011439999999999998s
|
147
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
148
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001594s
|
149
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176dc'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176dd'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
150
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00076s
|
151
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
152
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003355s
|
153
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
154
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000544s
|
155
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176df'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176e0'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
156
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.008949s
|
157
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
158
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001104s
|
159
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
160
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0012159999999999999s
|
161
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
162
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008799999999999999s
|
163
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
164
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001619s
|
165
|
+
MONGODB | Topology type 'unknown' initializing.
|
166
|
+
MONGODB | Server localhost:27017 initializing.
|
167
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
168
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
169
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
170
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
171
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0012519999999999999s
|
172
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
173
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00058s
|
174
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
175
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000479s
|
176
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
177
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000515s
|
178
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
179
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001097s
|
180
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
181
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001663s
|
182
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
183
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000824s
|
184
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
185
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.006122s
|
186
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
187
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0009519999999999999s
|
188
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
189
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000616s
|
190
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01ec0366a3543b7f09900'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01ec0366a3543b7f09901'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
191
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0007109999999999999s
|
192
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01ec0366a3543b7f09900')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
193
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0020800000000000003s
|
194
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01ec0366a3543b7f09900')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
195
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000751s
|
196
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01ec0366a3543b7f09900')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
197
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001643s
|
198
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
199
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002463s
|
200
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
201
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001871s
|
202
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f09902'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f09903'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
|
203
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000879s
|
204
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
205
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000763s
|
206
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
207
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0010090000000000001s
|
208
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f09904'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
|
209
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0005470000000000001s
|
210
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f09905'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
|
211
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000616s
|
212
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
213
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0004s
|
214
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
215
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00042100000000000004s
|
216
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
217
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001332s
|
218
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
219
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00078s
|
220
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
221
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001065s
|
222
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
223
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.005501s
|
224
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
225
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.007932s
|
226
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
227
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000989s
|
228
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
229
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004108s
|
230
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
231
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000609s
|
232
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
233
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0029690000000000003s
|
234
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
235
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008529999999999999s
|
236
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f09906'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f09907'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
237
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0007750000000000001s
|
238
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
239
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001129s
|
240
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
241
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000713s
|
242
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f09909'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f0990a'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
243
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002252s
|
244
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
245
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001086s
|
246
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
247
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00065s
|
248
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
249
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000654s
|
250
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
251
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000642s
|
252
|
+
MONGODB | Topology type 'unknown' initializing.
|
253
|
+
MONGODB | Server localhost:27017 initializing.
|
254
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
255
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
256
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
257
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
258
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0010919999999999999s
|
259
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
260
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000803s
|
261
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
262
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000718s
|
263
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
264
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.006392999999999999s
|
265
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
266
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000516s
|
267
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
268
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000356s
|
269
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
270
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000476s
|
271
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
272
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000343s
|
273
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
274
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000483s
|
275
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
276
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000499s
|
277
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243bf'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c0'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
278
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000912s
|
279
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b02e27366a35567a1243bf')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
280
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000661s
|
281
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b02e27366a35567a1243bf')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
282
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000741s
|
283
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b02e27366a35567a1243bf')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
284
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001505s
|
285
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
286
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000678s
|
287
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
288
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00878s
|
289
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c1'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c2'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
|
290
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0008910000000000001s
|
291
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
292
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004209s
|
293
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
294
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001784s
|
295
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c3'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
|
296
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001001s
|
297
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c4'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
|
298
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001493s
|
299
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
300
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000433s
|
301
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
302
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00046800000000000005s
|
303
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
304
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007930000000000001s
|
305
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
306
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00263s
|
307
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
308
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008629999999999999s
|
309
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
310
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000683s
|
311
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
312
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007610000000000001s
|
313
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
314
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0007769999999999999s
|
315
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
316
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003551s
|
317
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
318
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00776s
|
319
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
320
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001478s
|
321
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
322
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003874s
|
323
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c5'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c6'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
324
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00113s
|
325
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
326
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001365s
|
327
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
328
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002486s
|
329
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c8'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c9'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
330
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0029600000000000004s
|
331
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
332
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007379999999999999s
|
333
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
334
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000714s
|
335
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243ca'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243cb'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
336
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.011056s
|
337
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
338
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007390000000000001s
|
339
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
340
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002413s
|
341
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
342
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001677s
|
343
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
344
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000846s
|
345
|
+
MONGODB | Topology type 'unknown' initializing.
|
346
|
+
MONGODB | Server localhost:27017 initializing.
|
347
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
348
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
349
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
350
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
351
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001815s
|
352
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
353
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.006601s
|
354
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
355
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000614s
|
356
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
357
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000406s
|
358
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
359
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001349s
|
360
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
361
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003619s
|
362
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
363
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.011016s
|
364
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
365
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.013872s
|
366
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
367
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002186s
|
368
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
369
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008410000000000001s
|
370
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b14f'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b150'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
371
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000816s
|
372
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b02e32366a35580793b14f')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
373
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.006461000000000001s
|
374
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b02e32366a35580793b14f')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
375
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.017705s
|
376
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b02e32366a35580793b14f')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
377
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0017519999999999999s
|
378
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
379
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00079s
|
380
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
381
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.005814s
|
382
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b151'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b152'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
|
383
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002039s
|
384
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
385
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000915s
|
386
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
387
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0029579999999999997s
|
388
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b153'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
|
389
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.015338000000000001s
|
390
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b154'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
|
391
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0006789999999999999s
|
392
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
393
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00067s
|
394
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
395
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.005715s
|
396
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
397
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013310000000000002s
|
398
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
399
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005809999999999999s
|
400
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
401
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004664s
|
402
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
403
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003738s
|
404
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
405
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001866s
|
406
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
407
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002337s
|
408
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
409
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0005819999999999999s
|
410
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
411
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002066s
|
412
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
413
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007509999999999999s
|
414
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
415
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000501s
|
416
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b155'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b156'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
417
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0025840000000000004s
|
418
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
419
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0020789999999999997s
|
420
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
421
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000526s
|
422
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b158'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b159'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
423
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000756s
|
424
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
425
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001763s
|
426
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
427
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0012740000000000002s
|
428
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b15a'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b15b'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
429
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004327s
|
430
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
431
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00124s
|
432
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
433
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004208s
|
434
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
435
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0017820000000000002s
|
436
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
437
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0015530000000000001s
|
438
|
+
MONGODB | Topology type 'unknown' initializing.
|
439
|
+
MONGODB | Server localhost:27017 initializing.
|
440
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
441
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
442
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
443
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
444
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002035s
|
445
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
446
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008719999999999999s
|
447
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e57366a355acfd9a7f0'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e57366a355acfd9a7f1'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
448
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.007898s
|
449
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
450
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001754s
|
451
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
452
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0066949999999999996s
|
453
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e57366a355acfd9a7f2'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e57366a355acfd9a7f3'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
454
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001405s
|
455
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
456
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0021s
|
457
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
458
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003065s
|
459
|
+
MONGODB | Topology type 'unknown' initializing.
|
460
|
+
MONGODB | Server localhost:27017 initializing.
|
461
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
462
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
463
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
464
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
465
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001374s
|
466
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
467
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006850000000000001s
|
468
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e6c366a355b696d3b8f'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e6c366a355b696d3b90'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
469
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.025413s
|
470
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
471
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006990000000000001s
|
472
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
473
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000585s
|
474
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e6c366a355b696d3b91'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e6c366a355b696d3b92'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
475
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000999s
|
476
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
477
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.026715s
|
478
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
479
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001534s
|
480
|
+
MONGODB | Topology type 'unknown' initializing.
|
481
|
+
MONGODB | Server localhost:27017 initializing.
|
482
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
483
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
484
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
485
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
486
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0011s
|
487
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
488
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00041400000000000003s
|
489
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e80366a355c0a988376'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e80366a355c0a988377'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
490
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.035988s
|
491
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
492
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000889s
|
493
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
494
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001049s
|
495
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e80366a355c0a988378'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e80366a355c0a988379'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
496
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000866s
|
497
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
498
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.023091s
|
499
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
500
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000639s
|
501
|
+
MONGODB | Topology type 'unknown' initializing.
|
502
|
+
MONGODB | Server localhost:27017 initializing.
|
503
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
504
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
505
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
506
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
507
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0011799999999999998s
|
508
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
509
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000424s
|
510
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e8c366a355c99c3ffa9'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e8c366a355c99c3ffaa'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
511
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002265s
|
512
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
513
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00146s
|
514
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
515
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0016170000000000002s
|
516
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e8c366a355c99c3ffab'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e8c366a355c99c3ffac'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
517
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.008594000000000001s
|
518
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
519
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000669s
|
520
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
521
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001382s
|
522
|
+
MONGODB | Topology type 'unknown' initializing.
|
523
|
+
MONGODB | Server localhost:27017 initializing.
|
524
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
525
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
526
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
527
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
528
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001143s
|
529
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
530
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0004980000000000001s
|
531
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ea7366a355d2593aca7'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ea7366a355d2593aca8'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
532
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.032782000000000006s
|
533
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
534
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0009299999999999999s
|
535
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
536
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001292s
|
537
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ea7366a355d2593aca9'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ea7366a355d2593acaa'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
538
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0012460000000000001s
|
539
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
540
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.030142000000000002s
|
541
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
542
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0025499999999999997s
|
543
|
+
MONGODB | Topology type 'unknown' initializing.
|
544
|
+
MONGODB | Server localhost:27017 initializing.
|
545
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
546
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
547
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
548
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
549
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001348s
|
550
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
551
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00049s
|
552
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ebc366a355de2d69710'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ebc366a355de2d69711'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
553
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002761s
|
554
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
555
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.038707000000000005s
|
556
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
557
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00675s
|
558
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ebd366a355de2d69712'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ebd366a355de2d69713'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
559
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0026279999999999997s
|
560
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
561
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000653s
|
562
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
563
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004188s
|
564
|
+
MONGODB | Topology type 'unknown' initializing.
|
565
|
+
MONGODB | Server localhost:27017 initializing.
|
566
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
567
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
568
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
569
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
570
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0012200000000000002s
|
571
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
572
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000654s
|
573
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ed3366a355e85385f3e'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ed3366a355e85385f3f'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
574
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.008907s
|
575
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
576
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.018839s
|
577
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
578
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001951s
|
579
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ed3366a355e85385f40'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ed3366a355e85385f41'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
580
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.006726s
|
581
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
582
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0005340000000000001s
|
583
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
584
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001168s
|
585
|
+
MONGODB | Topology type 'unknown' initializing.
|
586
|
+
MONGODB | Server localhost:27017 initializing.
|
587
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
588
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
589
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
590
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
591
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001016s
|
592
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
593
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00076s
|
594
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ee2366a355f24bf5271'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ee2366a355f24bf5272'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
595
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001578s
|
596
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
597
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000744s
|
598
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
599
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000959s
|
600
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ee3366a355f24bf5273'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ee3366a355f24bf5274'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
601
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.032668s
|
602
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
603
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007340000000000001s
|
604
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
605
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004703000000000001s
|
606
|
+
MONGODB | Topology type 'unknown' initializing.
|
607
|
+
MONGODB | Server localhost:27017 initializing.
|
608
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
609
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
610
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
611
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
612
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000992s
|
613
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
614
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00038199999999999996s
|
615
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ef2366a355fdd8bc0d9'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ef2366a355fdd8bc0da'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
616
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.019528s
|
617
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
618
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008810000000000001s
|
619
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
620
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000719s
|
621
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ef2366a355fdd8bc0db'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ef2366a355fdd8bc0dc'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
622
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000462s
|
623
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
624
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001387s
|
625
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
626
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00046s
|
627
|
+
MONGODB | Topology type 'unknown' initializing.
|
628
|
+
MONGODB | Server localhost:27017 initializing.
|
629
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
630
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
631
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
632
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
633
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001049s
|
634
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
635
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0014s
|
636
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02f80366a35609946818f'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02f80366a356099468190'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
637
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.039048s
|
638
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
639
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004154s
|
640
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
641
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003966s
|
642
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02f80366a356099468191'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02f80366a356099468192'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
643
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.026879s
|
644
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
645
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0016380000000000001s
|
646
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
647
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002343s
|
648
|
+
MONGODB | Topology type 'unknown' initializing.
|
649
|
+
MONGODB | Server localhost:27017 initializing.
|
650
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
651
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
652
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
653
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
654
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000964s
|
655
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
656
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000426s
|
657
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02f94366a3561399b1903'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02f94366a3561399b1904'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
658
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.020094s
|
659
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
660
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.005857s
|
661
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
662
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00679s
|
663
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02f94366a3561399b1905'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02f94366a3561399b1906'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
664
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000516s
|
665
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
666
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000794s
|
667
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
668
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002445s
|
669
|
+
MONGODB | Topology type 'unknown' initializing.
|
670
|
+
MONGODB | Server localhost:27017 initializing.
|
671
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
672
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
673
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
674
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
675
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001094s
|
676
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
677
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000546s
|
678
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02fea366a35621bd81823'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02fea366a35621bd81824'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
679
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000971s
|
680
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
681
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000676s
|
682
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
683
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0007229999999999999s
|
684
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02fea366a35621bd81825'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02fea366a35621bd81826'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
685
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000533s
|
686
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
687
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0005769999999999999s
|
688
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
689
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000964s
|
690
|
+
MONGODB | Topology type 'unknown' initializing.
|
691
|
+
MONGODB | Server localhost:27017 initializing.
|
692
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
693
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
694
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
695
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
696
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000866s
|
697
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
698
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000341s
|
699
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02fee366a356302f23fb1'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02fee366a356302f23fb2'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
700
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001375s
|
701
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
702
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000683s
|
703
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
704
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004345s
|
705
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02fee366a356302f23fb3'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02fee366a356302f23fb4'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
706
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.008866s
|
707
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
708
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004531s
|
709
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
710
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003303s
|
711
|
+
MONGODB | Topology type 'unknown' initializing.
|
712
|
+
MONGODB | Server localhost:27017 initializing.
|
713
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
714
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
715
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
716
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
717
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001293s
|
718
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
719
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000647s
|
720
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03041366a3563a71a3a4b'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03041366a3563a71a3a4c'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
721
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001467s
|
722
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
723
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.021259999999999998s
|
724
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
725
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.015965s
|
726
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03041366a3563a71a3a4d'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03041366a3563a71a3a4e'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
727
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.051048s
|
728
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
729
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000773s
|
730
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
731
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006159999999999999s
|
732
|
+
MONGODB | Topology type 'unknown' initializing.
|
733
|
+
MONGODB | Server localhost:27017 initializing.
|
734
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
735
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
736
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
737
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
738
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001006s
|
739
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
740
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008770000000000001s
|
741
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03057366a3564640fc3e4'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03057366a3564640fc3e5'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
742
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0007260000000000001s
|
743
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
744
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.008416s
|
745
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
746
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.011424s
|
747
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03057366a3564640fc3e6'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03057366a3564640fc3e7'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
748
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.003664s
|
749
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
750
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000683s
|
751
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
752
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000597s
|
753
|
+
MONGODB | Topology type 'unknown' initializing.
|
754
|
+
MONGODB | Server localhost:27017 initializing.
|
755
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
756
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
757
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
758
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
759
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001141s
|
760
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
761
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000533s
|
762
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
763
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00073s
|
764
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
765
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000481s
|
766
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
767
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.010097s
|
768
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
769
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003541s
|
770
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
771
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000619s
|
772
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
773
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00032500000000000004s
|
774
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
775
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004685s
|
776
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
777
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001712s
|
778
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043ab7'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043ab8'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
779
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0013930000000000001s
|
780
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
781
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.007425s
|
782
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
783
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.015064s
|
784
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043ab9'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043aba'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
|
785
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000786s
|
786
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
787
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0026709999999999998s
|
788
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
789
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000976s
|
790
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043abb'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
|
791
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000651s
|
792
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043abc'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
|
793
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001502s
|
794
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
795
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000544s
|
796
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
797
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000657s
|
798
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
799
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0005459999999999999s
|
800
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
801
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000491s
|
802
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
803
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001539s
|
804
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
805
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000947s
|
806
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
807
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000767s
|
808
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
809
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000969s
|
810
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
811
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0010170000000000001s
|
812
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
813
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001561s
|
814
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
815
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007549999999999999s
|
816
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
817
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000505s
|
818
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043abd'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043abe'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
819
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0008200000000000001s
|
820
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
821
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000734s
|
822
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
823
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0012070000000000002s
|
824
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043ac0'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043ac1'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
825
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0017670000000000001s
|
826
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
827
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.007995s
|
828
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
829
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004771999999999999s
|
830
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03060366a35656d043ac2'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03060366a35656d043ac3'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
831
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001921s
|
832
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
833
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00073s
|
834
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
835
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004307s
|
836
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
837
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002259s
|
838
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
839
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0015739999999999999s
|
840
|
+
MONGODB | Topology type 'unknown' initializing.
|
841
|
+
MONGODB | Server localhost:27017 initializing.
|
842
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
843
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
844
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
845
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
846
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001577s
|
847
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
848
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000563s
|
849
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
850
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000722s
|
851
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
852
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000637s
|
853
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
854
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.005487s
|
855
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
856
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001097s
|
857
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
858
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004861s
|
859
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
860
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000855s
|
861
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
862
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001907s
|
863
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
864
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001915s
|
865
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc100'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc101'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
866
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000507s
|
867
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03071366a35675dfbc100')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
868
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0024690000000000003s
|
869
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03071366a35675dfbc100')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
870
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001112s
|
871
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03071366a35675dfbc100')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
872
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0015970000000000001s
|
873
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
874
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008190000000000001s
|
875
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
876
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001519s
|
877
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc102'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc103'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
|
878
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004706999999999999s
|
879
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
880
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00077s
|
881
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
882
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.007838s
|
883
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc104'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
|
884
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0046s
|
885
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc105'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
|
886
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001213s
|
887
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
888
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0052499999999999995s
|
889
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
890
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005759999999999999s
|
891
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
892
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0026910000000000002s
|
893
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
894
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000454s
|
895
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
896
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00074s
|
897
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
898
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002242s
|
899
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
900
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003157s
|
901
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
902
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.012409s
|
903
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
904
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0040939999999999995s
|
905
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
906
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001591s
|
907
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
908
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001043s
|
909
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
910
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000902s
|
911
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc106'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc107'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
912
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00082s
|
913
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
914
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001472s
|
915
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
916
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000758s
|
917
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc109'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc10a'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
918
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001163s
|
919
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
920
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0014960000000000002s
|
921
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
922
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000646s
|
923
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc10b'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc10c'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
924
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001505s
|
925
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
926
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007459999999999999s
|
927
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
928
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00091s
|
929
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
930
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0043300000000000005s
|
931
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
932
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001949s
|
933
|
+
MONGODB | Topology type 'unknown' initializing.
|
934
|
+
MONGODB | Server localhost:27017 initializing.
|
935
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
936
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
937
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
938
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
939
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.007703s
|
940
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
941
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000484s
|
942
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
943
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000539s
|
944
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
945
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0019479999999999999s
|
946
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
947
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000669s
|
948
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
949
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000402s
|
950
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
951
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001324s
|
952
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
953
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0025689999999999997s
|
954
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
955
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.006682s
|
956
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
957
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0015680000000000002s
|
958
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a334'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a335'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
959
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0038970000000000003s
|
960
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
961
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004631s
|
962
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
963
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000774s
|
964
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a336'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a337'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
|
965
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.009011s
|
966
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
967
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000568s
|
968
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
969
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002139s
|
970
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a338'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
|
971
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002157s
|
972
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a339'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
|
973
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000812s
|
974
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
975
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001606s
|
976
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
977
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000649s
|
978
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
979
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002199s
|
980
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
981
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000791s
|
982
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
983
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.023497999999999998s
|
984
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
985
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00605s
|
986
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
987
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000766s
|
988
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
989
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000577s
|
990
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
991
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0015960000000000002s
|
992
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
993
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000488s
|
994
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
995
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001207s
|
996
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
997
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001465s
|
998
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a33a'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a33b'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
999
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0008500000000000001s
|
1000
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1001
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00236s
|
1002
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1003
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004609s
|
1004
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a33d'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a33e'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1005
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000676s
|
1006
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1007
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001963s
|
1008
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1009
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000614s
|
1010
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a33f'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a340'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1011
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001185s
|
1012
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1013
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.012136000000000001s
|
1014
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1015
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0009480000000000001s
|
1016
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1017
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0024370000000000004s
|
1018
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1019
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000852s
|
1020
|
+
MONGODB | Topology type 'unknown' initializing.
|
1021
|
+
MONGODB | Server localhost:27017 initializing.
|
1022
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1023
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1024
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1025
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1026
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001379s
|
1027
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1028
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000431s
|
1029
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0313d366a356ac58ae140'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0313d366a356ac58ae141'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1030
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000807s
|
1031
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1032
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0020970000000000003s
|
1033
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1034
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.023261s
|
1035
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0313d366a356ac58ae142'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0313d366a356ac58ae143'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1036
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000646s
|
1037
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1038
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00037900000000000005s
|
1039
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1040
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000501s
|
1041
|
+
MONGODB | Topology type 'unknown' initializing.
|
1042
|
+
MONGODB | Server localhost:27017 initializing.
|
1043
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1044
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1045
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1046
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1047
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000972s
|
1048
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1049
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000415s
|
1050
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0316b366a356b729caf8c'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0316b366a356b729caf8d'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1051
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000477s
|
1052
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1053
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00034899999999999997s
|
1054
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1055
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000816s
|
1056
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0316b366a356b729caf8e'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0316b366a356b729caf8f'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1057
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002689s
|
1058
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1059
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.017956s
|
1060
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1061
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000888s
|
1062
|
+
MONGODB | Topology type 'unknown' initializing.
|
1063
|
+
MONGODB | Server localhost:27017 initializing.
|
1064
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1065
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1066
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1067
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1068
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002472s
|
1069
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1070
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000798s
|
1071
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03181366a356c42dfe8f1'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03181366a356c42dfe8f2'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1072
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.017338s
|
1073
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1074
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.005604s
|
1075
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1076
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001124s
|
1077
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03181366a356c42dfe8f3'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03181366a356c42dfe8f4'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1078
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001467s
|
1079
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1080
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.01139s
|
1081
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1082
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00449s
|
1083
|
+
MONGODB | Topology type 'unknown' initializing.
|
1084
|
+
MONGODB | Server localhost:27017 initializing.
|
1085
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1086
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1087
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1088
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1089
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001106s
|
1090
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1091
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001952s
|
1092
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0319c366a356cecfb4877'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0319c366a356cecfb4878'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1093
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.003777s
|
1094
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1095
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001681s
|
1096
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1097
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.011535s
|
1098
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0319c366a356cecfb4879'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0319c366a356cecfb487a'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1099
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004839s
|
1100
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1101
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000768s
|
1102
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1103
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003918s
|
1104
|
+
MONGODB | Topology type 'unknown' initializing.
|
1105
|
+
MONGODB | Server localhost:27017 initializing.
|
1106
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1107
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1108
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1109
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1110
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000946s
|
1111
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1112
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000428s
|
1113
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b031b2366a356da56af7ea'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b031b2366a356da56af7eb'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1114
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0010350000000000001s
|
1115
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1116
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000889s
|
1117
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1118
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003329s
|
1119
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b031b2366a356da56af7ec'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b031b2366a356da56af7ed'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1120
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.010029s
|
1121
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1122
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000581s
|
1123
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1124
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0019920000000000003s
|
1125
|
+
MONGODB | Topology type 'unknown' initializing.
|
1126
|
+
MONGODB | Server localhost:27017 initializing.
|
1127
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1128
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1129
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1130
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1131
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000981s
|
1132
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1133
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00064s
|
1134
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b031c3366a356e614ca5d2'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b031c3366a356e614ca5d3'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1135
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.003882s
|
1136
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1137
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003317s
|
1138
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1139
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.012206s
|
1140
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b031c3366a356e614ca5d4'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b031c3366a356e614ca5d5'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1141
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000641s
|
1142
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1143
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.006095000000000001s
|
1144
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1145
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004554s
|
1146
|
+
MONGODB | Topology type 'unknown' initializing.
|
1147
|
+
MONGODB | Server localhost:27017 initializing.
|
1148
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1149
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1150
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1151
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1152
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0018160000000000001s
|
1153
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1154
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001314s
|
1155
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03247366a3574a562157a'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03247366a3574a562157b'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1156
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000758s
|
1157
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1158
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000925s
|
1159
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1160
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00379s
|
1161
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03247366a3574a562157c'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03247366a3574a562157d'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1162
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00165s
|
1163
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1164
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0069619999999999994s
|
1165
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1166
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000972s
|
1167
|
+
MONGODB | Topology type 'unknown' initializing.
|
1168
|
+
MONGODB | Server localhost:27017 initializing.
|
1169
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1170
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1171
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1172
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1173
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00104s
|
1174
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1175
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000439s
|
1176
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0327b366a3575aa4368d8'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0327b366a3575aa4368d9'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1177
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0015580000000000001s
|
1178
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1179
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.010264s
|
1180
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1181
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001155s
|
1182
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0327b366a3575aa4368da'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0327b366a3575aa4368db'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1183
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.005533000000000001s
|
1184
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1185
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000642s
|
1186
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1187
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000573s
|
1188
|
+
MONGODB | Topology type 'unknown' initializing.
|
1189
|
+
MONGODB | Server localhost:27017 initializing.
|
1190
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1191
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1192
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1193
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1194
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001003s
|
1195
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1196
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000369s
|
1197
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1198
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00047599999999999997s
|
1199
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1200
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000418s
|
1201
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1202
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013469999999999999s
|
1203
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1204
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.005813s
|
1205
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1206
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0014789999999999998s
|
1207
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1208
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0023480000000000003s
|
1209
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1210
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00071s
|
1211
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1212
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000719s
|
1213
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90831'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90832'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1214
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004901s
|
1215
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03281366a3576d3a90831')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1216
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.00505s
|
1217
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03281366a3576d3a90831')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1218
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0048519999999999995s
|
1219
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03281366a3576d3a90831')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1220
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001232s
|
1221
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1222
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0028620000000000004s
|
1223
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1224
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000708s
|
1225
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90833'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90834'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
|
1226
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000751s
|
1227
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1228
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000642s
|
1229
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1230
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006050000000000001s
|
1231
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90835'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
|
1232
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000682s
|
1233
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90836'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
|
1234
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004042s
|
1235
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1236
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000835s
|
1237
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1238
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000772s
|
1239
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1240
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001033s
|
1241
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1242
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006749999999999999s
|
1243
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1244
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003973s
|
1245
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1246
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000718s
|
1247
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1248
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000772s
|
1249
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1250
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000572s
|
1251
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1252
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000599s
|
1253
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1254
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005579999999999999s
|
1255
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1256
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000651s
|
1257
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1258
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003081s
|
1259
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90837'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90838'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1260
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00098s
|
1261
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1262
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000709s
|
1263
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1264
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008179999999999999s
|
1265
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a9083a'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a9083b'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1266
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002477s
|
1267
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1268
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001585s
|
1269
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1270
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001854s
|
1271
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a9083c'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a9083d'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1272
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00572s
|
1273
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1274
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.009975s
|
1275
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1276
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001137s
|
1277
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1278
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008950000000000001s
|
1279
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1280
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.005639s
|
1281
|
+
MONGODB | Topology type 'unknown' initializing.
|
1282
|
+
MONGODB | Server localhost:27017 initializing.
|
1283
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1284
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1285
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1286
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1287
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001119s
|
1288
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1289
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008049999999999999s
|
1290
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1291
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000808s
|
1292
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1293
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000639s
|
1294
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1295
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004185s
|
1296
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1297
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.017797999999999998s
|
1298
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1299
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.012188999999999998s
|
1300
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1301
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.008622999999999999s
|
1302
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1303
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000687s
|
1304
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1305
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000771s
|
1306
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc06997'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc06998'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1307
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000943s
|
1308
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b032c6366a35785fc06997')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1309
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0014110000000000001s
|
1310
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b032c6366a35785fc06997')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1311
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.004751s
|
1312
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b032c6366a35785fc06997')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1313
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000664s
|
1314
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1315
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000599s
|
1316
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1317
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000509s
|
1318
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc06999'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc0699a'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
|
1319
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004372s
|
1320
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1321
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000606s
|
1322
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1323
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001243s
|
1324
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc0699b'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
|
1325
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00511s
|
1326
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc0699c'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
|
1327
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004834s
|
1328
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1329
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000816s
|
1330
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1331
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001619s
|
1332
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1333
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00091s
|
1334
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1335
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000671s
|
1336
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1337
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00168s
|
1338
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1339
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0011250000000000001s
|
1340
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1341
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.006790999999999999s
|
1342
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1343
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000736s
|
1344
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1345
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000826s
|
1346
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1347
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000663s
|
1348
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1349
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003718s
|
1350
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1351
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0024720000000000002s
|
1352
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc0699d'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc0699e'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1353
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000812s
|
1354
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1355
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000629s
|
1356
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1357
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00068s
|
1358
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc069a0'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc069a1'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1359
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001781s
|
1360
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1361
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002077s
|
1362
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1363
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004068s
|
1364
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc069a2'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc069a3'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1365
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000956s
|
1366
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1367
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000896s
|
1368
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1369
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000556s
|
1370
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1371
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000666s
|
1372
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1373
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00069s
|
1374
|
+
MONGODB | Topology type 'unknown' initializing.
|
1375
|
+
MONGODB | Server localhost:27017 initializing.
|
1376
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1377
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1378
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1379
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1380
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001185s
|
1381
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1382
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000466s
|
1383
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1384
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0005939999999999999s
|
1385
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1386
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000495s
|
1387
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1388
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000839s
|
1389
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1390
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001401s
|
1391
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1392
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.009496s
|
1393
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1394
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.013371s
|
1395
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1396
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001902s
|
1397
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1398
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000663s
|
1399
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699bb'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699bc'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1400
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000633s
|
1401
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699bb')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1402
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0016899999999999999s
|
1403
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699bb')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1404
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001614s
|
1405
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699bb')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1406
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001593s
|
1407
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1408
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007729999999999999s
|
1409
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1410
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000626s
|
1411
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699bd'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699be'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
|
1412
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000893s
|
1413
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1414
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003022s
|
1415
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1416
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000607s
|
1417
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699bf'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
|
1418
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004001s
|
1419
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699c0'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
|
1420
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001064s
|
1421
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1422
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008399999999999999s
|
1423
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1424
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000655s
|
1425
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1426
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001008s
|
1427
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1428
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0014110000000000001s
|
1429
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1430
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000882s
|
1431
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1432
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000461s
|
1433
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1434
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006259999999999999s
|
1435
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1436
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0018720000000000002s
|
1437
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1438
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00059s
|
1439
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1440
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0031750000000000003s
|
1441
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1442
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000607s
|
1443
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1444
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000961s
|
1445
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032d5366a3579ecb699c1'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032d5366a3579ecb699c2'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1446
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0006770000000000001s
|
1447
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1448
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00127s
|
1449
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1450
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.006208s
|
1451
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032d5366a3579ecb699c4'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032d5366a3579ecb699c5'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1452
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00063s
|
1453
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1454
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000577s
|
1455
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1456
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005870000000000001s
|
1457
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032d5366a3579ecb699c6'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032d5366a3579ecb699c7'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1458
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000615s
|
1459
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1460
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008799999999999999s
|
1461
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1462
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000791s
|
1463
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1464
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000517s
|
1465
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1466
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0009390000000000001s
|
1467
|
+
MONGODB | Topology type 'unknown' initializing.
|
1468
|
+
MONGODB | Server localhost:27017 initializing.
|
1469
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1470
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1471
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1472
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1473
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0012000000000000001s
|
1474
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1475
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000713s
|
1476
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1477
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000492s
|
1478
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1479
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000448s
|
1480
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1481
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013210000000000001s
|
1482
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1483
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001432s
|
1484
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1485
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001265s
|
1486
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1487
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0007959999999999999s
|
1488
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1489
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007049999999999999s
|
1490
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1491
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005560000000000001s
|
1492
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e38'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e39'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1493
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00098s
|
1494
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e38')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1495
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001066s
|
1496
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e38')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1497
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000974s
|
1498
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e38')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1499
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0006180000000000001s
|
1500
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1501
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006370000000000001s
|
1502
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1503
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000543s
|
1504
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e3a'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e3b'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
|
1505
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0007379999999999999s
|
1506
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1507
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00123s
|
1508
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1509
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.020321s
|
1510
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e3c'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
|
1511
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001148s
|
1512
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e3d'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
|
1513
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004674s
|
1514
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1515
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007040000000000001s
|
1516
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1517
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0028090000000000003s
|
1518
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1519
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00068s
|
1520
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1521
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000632s
|
1522
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1523
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000809s
|
1524
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1525
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000816s
|
1526
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1527
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000698s
|
1528
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1529
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001113s
|
1530
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1531
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000706s
|
1532
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1533
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001861s
|
1534
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1535
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0010350000000000001s
|
1536
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1537
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00059s
|
1538
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0337d366a3581d02e5e3e'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0337d366a3581d02e5e3f'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1539
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001895s
|
1540
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1541
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000939s
|
1542
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1543
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0028109999999999997s
|
1544
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0337d366a3581d02e5e41'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0337d366a3581d02e5e42'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1545
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.003451s
|
1546
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1547
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000749s
|
1548
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1549
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006850000000000001s
|
1550
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0337d366a3581d02e5e43'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0337d366a3581d02e5e44'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1551
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0007059999999999999s
|
1552
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1553
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006399999999999999s
|
1554
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1555
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000635s
|
1556
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1557
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007610000000000001s
|
1558
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1559
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002933s
|
1560
|
+
MONGODB | Topology type 'unknown' initializing.
|
1561
|
+
MONGODB | Server localhost:27017 initializing.
|
1562
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1563
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1564
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1565
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1566
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000968s
|
1567
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1568
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00037900000000000005s
|
1569
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1570
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000649s
|
1571
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1572
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000512s
|
1573
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1574
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0060940000000000005s
|
1575
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1576
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000768s
|
1577
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1578
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0069700000000000005s
|
1579
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1580
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.005895s
|
1581
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1582
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001222s
|
1583
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1584
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000846s
|
1585
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d27c'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d27d'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1586
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0032860000000000003s
|
1587
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03399366a35839000d27c')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1588
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0010509999999999999s
|
1589
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03399366a35839000d27c')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1590
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000888s
|
1591
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03399366a35839000d27c')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
|
1592
|
+
MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0012419999999999998s
|
1593
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1594
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000609s
|
1595
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1596
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000677s
|
1597
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d27e'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d27f'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
|
1598
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001716s
|
1599
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1600
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0010760000000000001s
|
1601
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1602
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0025559999999999997s
|
1603
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d280'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
|
1604
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000754s
|
1605
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d281'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
|
1606
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.003698s
|
1607
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1608
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003863s
|
1609
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1610
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000697s
|
1611
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1612
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.011146s
|
1613
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1614
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.007157s
|
1615
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1616
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0009310000000000001s
|
1617
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1618
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006259999999999999s
|
1619
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1620
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000653s
|
1621
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1622
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000598s
|
1623
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1624
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003235s
|
1625
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1626
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005780000000000001s
|
1627
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1628
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007899999999999999s
|
1629
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1630
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005679999999999999s
|
1631
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d282'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d283'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1632
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.003153s
|
1633
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1634
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001777s
|
1635
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1636
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000793s
|
1637
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d285'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d286'), "actions"=>["woot"], "conditions"=>{"equals"=>...
|
1638
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0007639999999999999s
|
1639
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1640
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0017259999999999999s
|
1641
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1642
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0007019999999999999s
|
1643
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d287'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d288'), "actions"=>["woot"], "conditions"=>{}, "priori...
|
1644
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0006349999999999999s
|
1645
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1646
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006580000000000001s
|
1647
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1648
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001923s
|
1649
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1650
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001316s
|
1651
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1652
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000678s
|
1653
|
+
MONGODB | Topology type 'unknown' initializing.
|
1654
|
+
MONGODB | Server localhost:27017 initializing.
|
1655
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1656
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1657
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1658
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1659
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001655s
|
1660
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1661
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000476s
|
1662
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1663
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00109s
|
1664
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1665
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00051s
|
1666
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1667
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.006545s
|
1668
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1669
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000775s
|
1670
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1671
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.008217s
|
1672
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1673
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000589s
|
1674
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1675
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003128s
|
1676
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1677
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00528s
|
1678
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1679
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000602s
|
1680
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1681
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000503s
|
1682
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1683
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000682s
|
1684
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1685
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000538s
|
1686
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1687
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0029119999999999997s
|
1688
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1689
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0023759999999999996s
|
1690
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1691
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000688s
|
1692
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1693
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0011740000000000001s
|
1694
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1695
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.010012s
|
1696
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1697
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.011871s
|
1698
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1699
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.029895s
|
1700
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1701
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000782s
|
1702
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1703
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000652s
|
1704
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1705
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.006889s
|
1706
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1707
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00098s
|
1708
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1709
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0009649999999999999s
|
1710
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1711
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001235s
|
1712
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1713
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000461s
|
1714
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1715
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000686s
|
1716
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1717
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000566s
|
1718
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1719
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003879s
|
1720
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1721
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008979999999999999s
|
1722
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1723
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0020659999999999997s
|
1724
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1725
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000672s
|
1726
|
+
MONGODB | Topology type 'unknown' initializing.
|
1727
|
+
MONGODB | Server localhost:27017 initializing.
|
1728
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1729
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1730
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1731
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1732
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000929s
|
1733
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1734
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00037799999999999997s
|
1735
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1736
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002238s
|
1737
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1738
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001507s
|
1739
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1740
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003085s
|
1741
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1742
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.011074s
|
1743
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1744
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0009480000000000001s
|
1745
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1746
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003926000000000001s
|
1747
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1748
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001848s
|
1749
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1750
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000866s
|
1751
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1752
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000819s
|
1753
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1754
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001912s
|
1755
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1756
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0031680000000000002s
|
1757
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1758
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.016037s
|
1759
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1760
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.038416s
|
1761
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1762
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003112s
|
1763
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1764
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006810000000000001s
|
1765
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1766
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005690000000000001s
|
1767
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1768
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000682s
|
1769
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1770
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.026184000000000002s
|
1771
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1772
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000686s
|
1773
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1774
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000856s
|
1775
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1776
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000612s
|
1777
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1778
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000593s
|
1779
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1780
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006569999999999999s
|
1781
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1782
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000567s
|
1783
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1784
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00078s
|
1785
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1786
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000509s
|
1787
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1788
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00069s
|
1789
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1790
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000675s
|
1791
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1792
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000624s
|
1793
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1794
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000533s
|
1795
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1796
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001042s
|
1797
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1798
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006389999999999999s
|
1799
|
+
MONGODB | Topology type 'unknown' initializing.
|
1800
|
+
MONGODB | Server localhost:27017 initializing.
|
1801
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1802
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1803
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1804
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1805
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0010589999999999998s
|
1806
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1807
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00041600000000000003s
|
1808
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1809
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000496s
|
1810
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1811
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000332s
|
1812
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1813
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008849999999999999s
|
1814
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1815
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001546s
|
1816
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1817
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001933s
|
1818
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1819
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003489s
|
1820
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1821
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000677s
|
1822
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1823
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001889s
|
1824
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03a54366a350974e79e57'), "priority"=>0, "name"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03a54366a350974e79e58'), "actions"=>["woot"], "conditions"=>{"equals"=>{"t...
|
1825
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000671s
|
1826
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1827
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000567s
|
1828
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1829
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00054s
|
1830
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1831
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000601s
|
1832
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1833
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008579999999999999s
|
1834
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1835
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000843s
|
1836
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1837
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001323s
|
1838
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1839
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013880000000000001s
|
1840
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1841
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.005089s
|
1842
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1843
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000547s
|
1844
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1845
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000403s
|
1846
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1847
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000691s
|
1848
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1849
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001649s
|
1850
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1851
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0028020000000000002s
|
1852
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1853
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000969s
|
1854
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1855
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00823s
|
1856
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1857
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00538s
|
1858
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1859
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001801s
|
1860
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1861
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000901s
|
1862
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1863
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003817s
|
1864
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1865
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006619999999999999s
|
1866
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1867
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000753s
|
1868
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1869
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002371s
|
1870
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1871
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003383s
|
1872
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1873
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0016350000000000002s
|
1874
|
+
MONGODB | Topology type 'unknown' initializing.
|
1875
|
+
MONGODB | Server localhost:27017 initializing.
|
1876
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1877
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1878
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1879
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1880
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001125s
|
1881
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1882
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00037600000000000003s
|
1883
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1884
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000616s
|
1885
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1886
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00043s
|
1887
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1888
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00217s
|
1889
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1890
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000762s
|
1891
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1892
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002081s
|
1893
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1894
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0026409999999999997s
|
1895
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1896
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002786s
|
1897
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1898
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000918s
|
1899
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1900
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006659999999999999s
|
1901
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1902
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000648s
|
1903
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1904
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001597s
|
1905
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1906
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002121s
|
1907
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1908
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0015830000000000002s
|
1909
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1910
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002847s
|
1911
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1912
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006580000000000001s
|
1913
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1914
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001139s
|
1915
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1916
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013859999999999999s
|
1917
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1918
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002045s
|
1919
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1920
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001859s
|
1921
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1922
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003259s
|
1923
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1924
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007599999999999999s
|
1925
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1926
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0017430000000000002s
|
1927
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1928
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002125s
|
1929
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1930
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0010739999999999999s
|
1931
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1932
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0010600000000000002s
|
1933
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1934
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00045700000000000005s
|
1935
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1936
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000762s
|
1937
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1938
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000839s
|
1939
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1940
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000719s
|
1941
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1942
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0029769999999999996s
|
1943
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1944
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0005719999999999999s
|
1945
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1946
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000425s
|
1947
|
+
MONGODB | Topology type 'unknown' initializing.
|
1948
|
+
MONGODB | Server localhost:27017 initializing.
|
1949
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
1950
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
1951
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
1952
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1953
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001047s
|
1954
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1955
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00054s
|
1956
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1957
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013670000000000002s
|
1958
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1959
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005420000000000001s
|
1960
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1961
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0023870000000000002s
|
1962
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1963
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000709s
|
1964
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1965
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.011608s
|
1966
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1967
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.008511s
|
1968
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1969
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0009670000000000001s
|
1970
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1971
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00072s
|
1972
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1973
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001661s
|
1974
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1975
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003728s
|
1976
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03a60366a350cbb29a03e'), "priority"=>0, "name"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03a60366a350cbb29a03f'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target_na...
|
1977
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0015480000000000001s
|
1978
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1979
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000653s
|
1980
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1981
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000803s
|
1982
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1983
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000657s
|
1984
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1985
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003271s
|
1986
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1987
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007419999999999999s
|
1988
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1989
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00101s
|
1990
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1991
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004124s
|
1992
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1993
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004711s
|
1994
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1995
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001112s
|
1996
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
1997
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000402s
|
1998
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1999
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000764s
|
2000
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2001
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000547s
|
2002
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2003
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00183s
|
2004
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2005
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001332s
|
2006
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2007
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007589999999999999s
|
2008
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2009
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000732s
|
2010
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2011
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.010438999999999999s
|
2012
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2013
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.013803s
|
2014
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2015
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.051476s
|
2016
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2017
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002237s
|
2018
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2019
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000751s
|
2020
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2021
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000654s
|
2022
|
+
MONGODB | Topology type 'unknown' initializing.
|
2023
|
+
MONGODB | Server localhost:27017 initializing.
|
2024
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
2025
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
2026
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
2027
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2028
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001663s
|
2029
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2030
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00044100000000000004s
|
2031
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2032
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000912s
|
2033
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2034
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005499999999999999s
|
2035
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2036
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000666s
|
2037
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2038
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.007607s
|
2039
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2040
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0069630000000000004s
|
2041
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2042
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0013490000000000002s
|
2043
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2044
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00414s
|
2045
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2046
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000597s
|
2047
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2048
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004665s
|
2049
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2050
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005179999999999999s
|
2051
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03a9b366a350e363d2006'), "priority"=>0, "name"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03a9b366a350e363d2007'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target_na...
|
2052
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000857s
|
2053
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2054
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0010119999999999999s
|
2055
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2056
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00055s
|
2057
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2058
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001035s
|
2059
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2060
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000837s
|
2061
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2062
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006699999999999999s
|
2063
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2064
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000683s
|
2065
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2066
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003318s
|
2067
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2068
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000565s
|
2069
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2070
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002061s
|
2071
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2072
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003751s
|
2073
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2074
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000949s
|
2075
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2076
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000923s
|
2077
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2078
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000675s
|
2079
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2080
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008179999999999999s
|
2081
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2082
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001088s
|
2083
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2084
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0068790000000000006s
|
2085
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2086
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001052s
|
2087
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2088
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000566s
|
2089
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2090
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004161s
|
2091
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2092
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0020570000000000002s
|
2093
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2094
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001144s
|
2095
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2096
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001675s
|
2097
|
+
MONGODB | Topology type 'unknown' initializing.
|
2098
|
+
MONGODB | Server localhost:27017 initializing.
|
2099
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
2100
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
2101
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
2102
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2103
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002472s
|
2104
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2105
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000706s
|
2106
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2107
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000531s
|
2108
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2109
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000357s
|
2110
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2111
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007000000000000001s
|
2112
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2113
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.008803s
|
2114
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2115
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.008171s
|
2116
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2117
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001718s
|
2118
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2119
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004197s
|
2120
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2121
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000503s
|
2122
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2123
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000868s
|
2124
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2125
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008320000000000001s
|
2126
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03af5366a350feaf13158'), "priority"=>0, "name"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03af5366a350feaf13159'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target_na...
|
2127
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002893s
|
2128
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2129
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000792s
|
2130
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2131
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.007452s
|
2132
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2133
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001061s
|
2134
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2135
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000552s
|
2136
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2137
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013280000000000002s
|
2138
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2139
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001078s
|
2140
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2141
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008489999999999999s
|
2142
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2143
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004458s
|
2144
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2145
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00328s
|
2146
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2147
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001317s
|
2148
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2149
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.008584s
|
2150
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2151
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004461s
|
2152
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2153
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001564s
|
2154
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2155
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001227s
|
2156
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2157
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001304s
|
2158
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2159
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000669s
|
2160
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2161
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.007124s
|
2162
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2163
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001419s
|
2164
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2165
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004935999999999999s
|
2166
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2167
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000617s
|
2168
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2169
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000868s
|
2170
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2171
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000531s
|
2172
|
+
MONGODB | Topology type 'unknown' initializing.
|
2173
|
+
MONGODB | Server localhost:27017 initializing.
|
2174
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
2175
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
2176
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
2177
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2178
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001003s
|
2179
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2180
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00045000000000000004s
|
2181
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2182
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00048800000000000004s
|
2183
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2184
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000318s
|
2185
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2186
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000579s
|
2187
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2188
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000887s
|
2189
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2190
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000599s
|
2191
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2192
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000378s
|
2193
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2194
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000638s
|
2195
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2196
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000599s
|
2197
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2198
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.013456999999999998s
|
2199
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2200
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002441s
|
2201
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03b2e366a351183fe0f66'), "priority"=>0, "name"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03b2e366a351183fe0f67'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target_na...
|
2202
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001503s
|
2203
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2204
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001744s
|
2205
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2206
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002745s
|
2207
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2208
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003583s
|
2209
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2210
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002042s
|
2211
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2212
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001687s
|
2213
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2214
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003181s
|
2215
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2216
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.009023999999999999s
|
2217
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2218
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001703s
|
2219
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2220
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000629s
|
2221
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2222
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005549999999999999s
|
2223
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2224
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.13264700000000001s
|
2225
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2226
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004421s
|
2227
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2228
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00778s
|
2229
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2230
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0029669999999999996s
|
2231
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2232
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004653s
|
2233
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2234
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0012670000000000001s
|
2235
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2236
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001088s
|
2237
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2238
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001312s
|
2239
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2240
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000943s
|
2241
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2242
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.007876s
|
2243
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2244
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001241s
|
2245
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2246
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000593s
|
2247
|
+
MONGODB | Topology type 'unknown' initializing.
|
2248
|
+
MONGODB | Server localhost:27017 initializing.
|
2249
|
+
MONGODB | Topology type 'unknown' changed to type 'single'.
|
2250
|
+
MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
|
2251
|
+
MONGODB | There was a change in the members of the 'single' topology.
|
2252
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2253
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0009360000000000001s
|
2254
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2255
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001608s
|
2256
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2257
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00053s
|
2258
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2259
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000414s
|
2260
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2261
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00071s
|
2262
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2263
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002928s
|
2264
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2265
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000993s
|
2266
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2267
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001472s
|
2268
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2269
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002048s
|
2270
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2271
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0011690000000000001s
|
2272
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2273
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003564s
|
2274
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2275
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001887s
|
2276
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03c3a366a351534c0d8ac'), "priority"=>0, "name"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03c3a366a351534c0d8ad'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target_na...
|
2277
|
+
MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0025480000000000004s
|
2278
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2279
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002313s
|
2280
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2281
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.007261999999999999s
|
2282
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2283
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001677s
|
2284
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2285
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000797s
|
2286
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2287
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000701s
|
2288
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2289
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00059s
|
2290
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2291
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000856s
|
2292
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2293
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000729s
|
2294
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2295
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001212s
|
2296
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2297
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000878s
|
2298
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2299
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003933s
|
2300
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2301
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003065s
|
2302
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2303
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0051400000000000005s
|
2304
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2305
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.010058s
|
2306
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2307
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00365s
|
2308
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2309
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005679999999999999s
|
2310
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2311
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0009029999999999999s
|
2312
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2313
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000604s
|
2314
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2315
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008770000000000001s
|
2316
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2317
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003464s
|
2318
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2319
|
+
MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002925s
|
2320
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
|
2321
|
+
MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003259s
|