opennebula_nagios_probe 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/.gitignore +5 -0
- data/.rubocop.yml +6 -0
- data/.travis.yml +10 -0
- data/Gemfile +18 -0
- data/Gemfile.lock +87 -0
- data/README.md +36 -0
- data/Rakefile +65 -0
- data/bin/check_opennebula +70 -0
- data/conf/opennebula.cfg.erb +32 -0
- data/lib/opennebula_nagios_probe.rb +29 -0
- data/lib/probe/occi/client.rb +50 -0
- data/lib/probe/occi/nocci/compute.rb +20 -0
- data/lib/probe/occi/nocci/network.rb +21 -0
- data/lib/probe/occi/nocci/resource.rb +96 -0
- data/lib/probe/occi/nocci/storage.rb +22 -0
- data/lib/probe/occi/rocci/compute.rb +70 -0
- data/lib/probe/occi/rocci/network.rb +21 -0
- data/lib/probe/occi/rocci/resource.rb +62 -0
- data/lib/probe/occi/rocci/storage.rb +22 -0
- data/lib/probe/opennebula_econe_probe.rb +108 -0
- data/lib/probe/opennebula_occi_probe.rb +126 -0
- data/lib/probe/opennebula_oned_probe.rb +101 -0
- data/lib/probe/opennebula_probe.rb +97 -0
- data/lib/probe/optparse_nagios_probe.rb +174 -0
- data/opennebula_nagios_probe.gemspec +32 -0
- data/spec/probe/fixtures/cassettes/econe/econe_critical_existing_resources.yml +75 -0
- data/spec/probe/fixtures/cassettes/econe/econe_critical_no_resources.yml +75 -0
- data/spec/probe/fixtures/cassettes/econe/econe_critical_nonexisting_resources.yml +75 -0
- data/spec/probe/fixtures/cassettes/econe/econe_warning_existing_resources.yml +75 -0
- data/spec/probe/fixtures/cassettes/econe/econe_warning_nonexisting_resources.yml +40 -0
- data/spec/probe/fixtures/cassettes/occi/occi_critical_existing_resources.yml +143 -0
- data/spec/probe/fixtures/cassettes/occi/occi_critical_no_resources.yml +143 -0
- data/spec/probe/fixtures/cassettes/occi/occi_critical_nonexisting_resources.yml +143 -0
- data/spec/probe/fixtures/cassettes/occi/occi_warning_existing_resources.yml +230 -0
- data/spec/probe/fixtures/cassettes/occi/occi_warning_nonexisting_resources.yml +49 -0
- data/spec/probe/fixtures/cassettes/oned/oned_critical_existing_resources.yml +131 -0
- data/spec/probe/fixtures/cassettes/oned/oned_critical_no_resources.yml +131 -0
- data/spec/probe/fixtures/cassettes/oned/oned_critical_nonexisting_resources.yml +131 -0
- data/spec/probe/fixtures/cassettes/oned/oned_warning_existing_resources.yml +671 -0
- data/spec/probe/fixtures/cassettes/oned/oned_warning_nonexisting_resources.yml +130 -0
- data/spec/probe/fixtures/cassettes/rocci/rocci_critical_existing_resources.yml +1220 -0
- data/spec/probe/fixtures/cassettes/rocci/rocci_critical_no_resources.yml +1220 -0
- data/spec/probe/fixtures/cassettes/rocci/rocci_critical_nonexisting_resources.yml +1220 -0
- data/spec/probe/fixtures/cassettes/rocci/rocci_warning_existing_resources.yml +817 -0
- data/spec/probe/fixtures/cassettes/rocci/rocci_warning_no_resources.yml +591 -0
- data/spec/probe/fixtures/cassettes/rocci/rocci_warning_nonexisting_resources.yml +640 -0
- data/spec/probe/opennebula_econe_probe_spec.rb +150 -0
- data/spec/probe/opennebula_occi_probe_spec.rb +149 -0
- data/spec/probe/opennebula_oned_probe_spec.rb +154 -0
- data/spec/probe/opennebula_rocci_probe_spec.rb +156 -0
- metadata +280 -0
| @@ -0,0 +1,143 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: get
         | 
| 5 | 
            +
                uri: https://nagios-probes-test:1b5834c03b1a9fda89b38c081a6d99af634b046e@localhost:2345/network
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: US-ASCII
         | 
| 8 | 
            +
                  string: ''
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  Accept:
         | 
| 11 | 
            +
                  - ! '*/*'
         | 
| 12 | 
            +
                  - application/xml
         | 
| 13 | 
            +
                  User-Agent:
         | 
| 14 | 
            +
                  - Ruby
         | 
| 15 | 
            +
                  Connection:
         | 
| 16 | 
            +
                  - keep-alive
         | 
| 17 | 
            +
                  Keep-Alive:
         | 
| 18 | 
            +
                  - 30
         | 
| 19 | 
            +
              response:
         | 
| 20 | 
            +
                status:
         | 
| 21 | 
            +
                  code: 200
         | 
| 22 | 
            +
                  message: OK
         | 
| 23 | 
            +
                headers:
         | 
| 24 | 
            +
                  Date:
         | 
| 25 | 
            +
                  - Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 26 | 
            +
                  Server:
         | 
| 27 | 
            +
                  - thin 1.3.1 codename Triple Espresso
         | 
| 28 | 
            +
                  X-Frame-Options:
         | 
| 29 | 
            +
                  - sameorigin
         | 
| 30 | 
            +
                  X-Xss-Protection:
         | 
| 31 | 
            +
                  - 1; mode=block
         | 
| 32 | 
            +
                  Content-Type:
         | 
| 33 | 
            +
                  - application/xml;charset=utf-8
         | 
| 34 | 
            +
                  Cache-Control:
         | 
| 35 | 
            +
                  - no-store
         | 
| 36 | 
            +
                  Content-Length:
         | 
| 37 | 
            +
                  - '270'
         | 
| 38 | 
            +
                  Keep-Alive:
         | 
| 39 | 
            +
                  - timeout=5, max=100
         | 
| 40 | 
            +
                  Connection:
         | 
| 41 | 
            +
                  - Keep-Alive
         | 
| 42 | 
            +
                body:
         | 
| 43 | 
            +
                  encoding: US-ASCII
         | 
| 44 | 
            +
                  string: ! '<NETWORK_COLLECTION><NETWORK href="https://localhost:2345//network/2"
         | 
| 45 | 
            +
                    name="net1"/><NETWORK href="https://localhost:2345//network/3"
         | 
| 46 | 
            +
                    name="net2"/><NETWORK href="https://localhost:2345//network/4"
         | 
| 47 | 
            +
                    name="net3"/></NETWORK_COLLECTION>       '
         | 
| 48 | 
            +
                http_version:
         | 
| 49 | 
            +
              recorded_at: Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 50 | 
            +
            - request:
         | 
| 51 | 
            +
                method: get
         | 
| 52 | 
            +
                uri: https://nagios-probes-test:1b5834c03b1a9fda89b38c081a6d99af634b046e@localhost:2345/compute
         | 
| 53 | 
            +
                body:
         | 
| 54 | 
            +
                  encoding: US-ASCII
         | 
| 55 | 
            +
                  string: ''
         | 
| 56 | 
            +
                headers:
         | 
| 57 | 
            +
                  Accept:
         | 
| 58 | 
            +
                  - ! '*/*'
         | 
| 59 | 
            +
                  - application/xml
         | 
| 60 | 
            +
                  User-Agent:
         | 
| 61 | 
            +
                  - Ruby
         | 
| 62 | 
            +
                  Connection:
         | 
| 63 | 
            +
                  - keep-alive
         | 
| 64 | 
            +
                  Keep-Alive:
         | 
| 65 | 
            +
                  - 30
         | 
| 66 | 
            +
              response:
         | 
| 67 | 
            +
                status:
         | 
| 68 | 
            +
                  code: 200
         | 
| 69 | 
            +
                  message: OK
         | 
| 70 | 
            +
                headers:
         | 
| 71 | 
            +
                  Date:
         | 
| 72 | 
            +
                  - Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 73 | 
            +
                  Server:
         | 
| 74 | 
            +
                  - thin 1.3.1 codename Triple Espresso
         | 
| 75 | 
            +
                  X-Frame-Options:
         | 
| 76 | 
            +
                  - sameorigin
         | 
| 77 | 
            +
                  X-Xss-Protection:
         | 
| 78 | 
            +
                  - 1; mode=block
         | 
| 79 | 
            +
                  Content-Type:
         | 
| 80 | 
            +
                  - application/xml;charset=utf-8
         | 
| 81 | 
            +
                  Cache-Control:
         | 
| 82 | 
            +
                  - no-store
         | 
| 83 | 
            +
                  Content-Length:
         | 
| 84 | 
            +
                  - '277'
         | 
| 85 | 
            +
                  Keep-Alive:
         | 
| 86 | 
            +
                  - timeout=5, max=100
         | 
| 87 | 
            +
                  Connection:
         | 
| 88 | 
            +
                  - Keep-Alive
         | 
| 89 | 
            +
                body:
         | 
| 90 | 
            +
                  encoding: US-ASCII
         | 
| 91 | 
            +
                  string: ! '<COMPUTE_COLLECTION><COMPUTE href="https://localhost:2345//compute/9"
         | 
| 92 | 
            +
                    name="one-9"/><COMPUTE href="https://localhost:2345//compute/10"
         | 
| 93 | 
            +
                    name="one-10"/><COMPUTE href="https://localhost:2345//compute/11"
         | 
| 94 | 
            +
                    name="one-11"/></COMPUTE_COLLECTION>       '
         | 
| 95 | 
            +
                http_version:
         | 
| 96 | 
            +
              recorded_at: Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 97 | 
            +
            - request:
         | 
| 98 | 
            +
                method: get
         | 
| 99 | 
            +
                uri: https://nagios-probes-test:1b5834c03b1a9fda89b38c081a6d99af634b046e@localhost:2345/storage
         | 
| 100 | 
            +
                body:
         | 
| 101 | 
            +
                  encoding: US-ASCII
         | 
| 102 | 
            +
                  string: ''
         | 
| 103 | 
            +
                headers:
         | 
| 104 | 
            +
                  Accept:
         | 
| 105 | 
            +
                  - ! '*/*'
         | 
| 106 | 
            +
                  - application/xml
         | 
| 107 | 
            +
                  User-Agent:
         | 
| 108 | 
            +
                  - Ruby
         | 
| 109 | 
            +
                  Connection:
         | 
| 110 | 
            +
                  - keep-alive
         | 
| 111 | 
            +
                  Keep-Alive:
         | 
| 112 | 
            +
                  - 30
         | 
| 113 | 
            +
              response:
         | 
| 114 | 
            +
                status:
         | 
| 115 | 
            +
                  code: 200
         | 
| 116 | 
            +
                  message: OK
         | 
| 117 | 
            +
                headers:
         | 
| 118 | 
            +
                  Date:
         | 
| 119 | 
            +
                  - Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 120 | 
            +
                  Server:
         | 
| 121 | 
            +
                  - thin 1.3.1 codename Triple Espresso
         | 
| 122 | 
            +
                  X-Frame-Options:
         | 
| 123 | 
            +
                  - sameorigin
         | 
| 124 | 
            +
                  X-Xss-Protection:
         | 
| 125 | 
            +
                  - 1; mode=block
         | 
| 126 | 
            +
                  Content-Type:
         | 
| 127 | 
            +
                  - application/xml;charset=utf-8
         | 
| 128 | 
            +
                  Cache-Control:
         | 
| 129 | 
            +
                  - no-store
         | 
| 130 | 
            +
                  Content-Length:
         | 
| 131 | 
            +
                  - '217'
         | 
| 132 | 
            +
                  Keep-Alive:
         | 
| 133 | 
            +
                  - timeout=5, max=100
         | 
| 134 | 
            +
                  Connection:
         | 
| 135 | 
            +
                  - Keep-Alive
         | 
| 136 | 
            +
                body:
         | 
| 137 | 
            +
                  encoding: US-ASCII
         | 
| 138 | 
            +
                  string: ! '<STORAGE_COLLECTION><STORAGE href="https://localhost:2345//storage/6"
         | 
| 139 | 
            +
                    name="ttylinux - kvm"/><STORAGE href="https://localhost:2345//storage/7"
         | 
| 140 | 
            +
                    name="ttylinux - kvm2"/></STORAGE_COLLECTION>       '
         | 
| 141 | 
            +
                http_version:
         | 
| 142 | 
            +
              recorded_at: Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 143 | 
            +
            recorded_with: VCR 2.4.0
         | 
| @@ -0,0 +1,230 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: get
         | 
| 5 | 
            +
                uri: https://nagios-probes-test:1b5834c03b1a9fda89b38c081a6d99af634b046e@localhost:2345/network/3
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: US-ASCII
         | 
| 8 | 
            +
                  string: ''
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  Accept:
         | 
| 11 | 
            +
                  - ! '*/*'
         | 
| 12 | 
            +
                  - application/xml
         | 
| 13 | 
            +
                  User-Agent:
         | 
| 14 | 
            +
                  - Ruby
         | 
| 15 | 
            +
                  Connection:
         | 
| 16 | 
            +
                  - keep-alive
         | 
| 17 | 
            +
                  Keep-Alive:
         | 
| 18 | 
            +
                  - 30
         | 
| 19 | 
            +
              response:
         | 
| 20 | 
            +
                status:
         | 
| 21 | 
            +
                  code: 200
         | 
| 22 | 
            +
                  message: OK
         | 
| 23 | 
            +
                headers:
         | 
| 24 | 
            +
                  Date:
         | 
| 25 | 
            +
                  - Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 26 | 
            +
                  Server:
         | 
| 27 | 
            +
                  - thin 1.3.1 codename Triple Espresso
         | 
| 28 | 
            +
                  X-Frame-Options:
         | 
| 29 | 
            +
                  - sameorigin
         | 
| 30 | 
            +
                  X-Xss-Protection:
         | 
| 31 | 
            +
                  - 1; mode=block
         | 
| 32 | 
            +
                  Content-Type:
         | 
| 33 | 
            +
                  - application/xml;charset=utf-8
         | 
| 34 | 
            +
                  Cache-Control:
         | 
| 35 | 
            +
                  - no-store
         | 
| 36 | 
            +
                  Content-Length:
         | 
| 37 | 
            +
                  - '252'
         | 
| 38 | 
            +
                  Keep-Alive:
         | 
| 39 | 
            +
                  - timeout=5, max=100
         | 
| 40 | 
            +
                  Connection:
         | 
| 41 | 
            +
                  - Keep-Alive
         | 
| 42 | 
            +
                body:
         | 
| 43 | 
            +
                  encoding: US-ASCII
         | 
| 44 | 
            +
                  string: <NETWORK href="https://localhost:2345//network/3"><ID>3</ID><NAME>net2</NAME><USER
         | 
| 45 | 
            +
                    href="https://localhost:2345//user/304" name="nagios-probes-test"/><GROUP>oneadmin</GROUP><USED_LEASES>0</USED_LEASES><PUBLIC>NO</PUBLIC></NETWORK>
         | 
| 46 | 
            +
                http_version:
         | 
| 47 | 
            +
              recorded_at: Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 48 | 
            +
            - request:
         | 
| 49 | 
            +
                method: get
         | 
| 50 | 
            +
                uri: https://nagios-probes-test:1b5834c03b1a9fda89b38c081a6d99af634b046e@localhost:2345/network/4
         | 
| 51 | 
            +
                body:
         | 
| 52 | 
            +
                  encoding: US-ASCII
         | 
| 53 | 
            +
                  string: ''
         | 
| 54 | 
            +
                headers:
         | 
| 55 | 
            +
                  Accept:
         | 
| 56 | 
            +
                  - ! '*/*'
         | 
| 57 | 
            +
                  - application/xml
         | 
| 58 | 
            +
                  User-Agent:
         | 
| 59 | 
            +
                  - Ruby
         | 
| 60 | 
            +
                  Connection:
         | 
| 61 | 
            +
                  - keep-alive
         | 
| 62 | 
            +
                  Keep-Alive:
         | 
| 63 | 
            +
                  - 30
         | 
| 64 | 
            +
              response:
         | 
| 65 | 
            +
                status:
         | 
| 66 | 
            +
                  code: 200
         | 
| 67 | 
            +
                  message: OK
         | 
| 68 | 
            +
                headers:
         | 
| 69 | 
            +
                  Date:
         | 
| 70 | 
            +
                  - Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 71 | 
            +
                  Server:
         | 
| 72 | 
            +
                  - thin 1.3.1 codename Triple Espresso
         | 
| 73 | 
            +
                  X-Frame-Options:
         | 
| 74 | 
            +
                  - sameorigin
         | 
| 75 | 
            +
                  X-Xss-Protection:
         | 
| 76 | 
            +
                  - 1; mode=block
         | 
| 77 | 
            +
                  Content-Type:
         | 
| 78 | 
            +
                  - application/xml;charset=utf-8
         | 
| 79 | 
            +
                  Cache-Control:
         | 
| 80 | 
            +
                  - no-store
         | 
| 81 | 
            +
                  Content-Length:
         | 
| 82 | 
            +
                  - '252'
         | 
| 83 | 
            +
                  Keep-Alive:
         | 
| 84 | 
            +
                  - timeout=5, max=100
         | 
| 85 | 
            +
                  Connection:
         | 
| 86 | 
            +
                  - Keep-Alive
         | 
| 87 | 
            +
                body:
         | 
| 88 | 
            +
                  encoding: US-ASCII
         | 
| 89 | 
            +
                  string: <NETWORK href="https://localhost:2345//network/4"><ID>4</ID><NAME>net3</NAME><USER
         | 
| 90 | 
            +
                    href="https://localhost:2345//user/304" name="nagios-probes-test"/><GROUP>oneadmin</GROUP><USED_LEASES>0</USED_LEASES><PUBLIC>NO</PUBLIC></NETWORK>
         | 
| 91 | 
            +
                http_version:
         | 
| 92 | 
            +
              recorded_at: Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 93 | 
            +
            - request:
         | 
| 94 | 
            +
                method: get
         | 
| 95 | 
            +
                uri: https://nagios-probes-test:1b5834c03b1a9fda89b38c081a6d99af634b046e@localhost:2345/compute/11
         | 
| 96 | 
            +
                body:
         | 
| 97 | 
            +
                  encoding: US-ASCII
         | 
| 98 | 
            +
                  string: ''
         | 
| 99 | 
            +
                headers:
         | 
| 100 | 
            +
                  Accept:
         | 
| 101 | 
            +
                  - ! '*/*'
         | 
| 102 | 
            +
                  - application/xml
         | 
| 103 | 
            +
                  User-Agent:
         | 
| 104 | 
            +
                  - Ruby
         | 
| 105 | 
            +
                  Connection:
         | 
| 106 | 
            +
                  - keep-alive
         | 
| 107 | 
            +
                  Keep-Alive:
         | 
| 108 | 
            +
                  - 30
         | 
| 109 | 
            +
              response:
         | 
| 110 | 
            +
                status:
         | 
| 111 | 
            +
                  code: 200
         | 
| 112 | 
            +
                  message: OK
         | 
| 113 | 
            +
                headers:
         | 
| 114 | 
            +
                  Date:
         | 
| 115 | 
            +
                  - Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 116 | 
            +
                  Server:
         | 
| 117 | 
            +
                  - thin 1.3.1 codename Triple Espresso
         | 
| 118 | 
            +
                  X-Frame-Options:
         | 
| 119 | 
            +
                  - sameorigin
         | 
| 120 | 
            +
                  X-Xss-Protection:
         | 
| 121 | 
            +
                  - 1; mode=block
         | 
| 122 | 
            +
                  Content-Type:
         | 
| 123 | 
            +
                  - application/xml;charset=utf-8
         | 
| 124 | 
            +
                  Cache-Control:
         | 
| 125 | 
            +
                  - no-store
         | 
| 126 | 
            +
                  Content-Length:
         | 
| 127 | 
            +
                  - '405'
         | 
| 128 | 
            +
                  Keep-Alive:
         | 
| 129 | 
            +
                  - timeout=5, max=100
         | 
| 130 | 
            +
                  Connection:
         | 
| 131 | 
            +
                  - Keep-Alive
         | 
| 132 | 
            +
                body:
         | 
| 133 | 
            +
                  encoding: US-ASCII
         | 
| 134 | 
            +
                  string: <COMPUTE href="https://localhost:2345//compute/11"><ID>11</ID><USER
         | 
| 135 | 
            +
                    href="https://localhost:2345//user/304" name="nagios-probes-test"/><GROUP>oneadmin</GROUP><CPU>1</CPU><MEMORY>512</MEMORY><NAME>one-11</NAME><STATE>PENDING</STATE><DISK
         | 
| 136 | 
            +
                    id="0"><STORAGE href="https://localhost:2345//storage/6" name="ttylinux
         | 
| 137 | 
            +
                    - kvm"/><TYPE>FILE</TYPE><TARGET>xvda</TARGET></DISK></COMPUTE>
         | 
| 138 | 
            +
                http_version:
         | 
| 139 | 
            +
              recorded_at: Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 140 | 
            +
            - request:
         | 
| 141 | 
            +
                method: get
         | 
| 142 | 
            +
                uri: https://nagios-probes-test:1b5834c03b1a9fda89b38c081a6d99af634b046e@localhost:2345/storage/6
         | 
| 143 | 
            +
                body:
         | 
| 144 | 
            +
                  encoding: US-ASCII
         | 
| 145 | 
            +
                  string: ''
         | 
| 146 | 
            +
                headers:
         | 
| 147 | 
            +
                  Accept:
         | 
| 148 | 
            +
                  - ! '*/*'
         | 
| 149 | 
            +
                  - application/xml
         | 
| 150 | 
            +
                  User-Agent:
         | 
| 151 | 
            +
                  - Ruby
         | 
| 152 | 
            +
                  Connection:
         | 
| 153 | 
            +
                  - keep-alive
         | 
| 154 | 
            +
                  Keep-Alive:
         | 
| 155 | 
            +
                  - 30
         | 
| 156 | 
            +
              response:
         | 
| 157 | 
            +
                status:
         | 
| 158 | 
            +
                  code: 200
         | 
| 159 | 
            +
                  message: OK
         | 
| 160 | 
            +
                headers:
         | 
| 161 | 
            +
                  Date:
         | 
| 162 | 
            +
                  - Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 163 | 
            +
                  Server:
         | 
| 164 | 
            +
                  - thin 1.3.1 codename Triple Espresso
         | 
| 165 | 
            +
                  X-Frame-Options:
         | 
| 166 | 
            +
                  - sameorigin
         | 
| 167 | 
            +
                  X-Xss-Protection:
         | 
| 168 | 
            +
                  - 1; mode=block
         | 
| 169 | 
            +
                  Content-Type:
         | 
| 170 | 
            +
                  - application/xml;charset=utf-8
         | 
| 171 | 
            +
                  Cache-Control:
         | 
| 172 | 
            +
                  - no-store
         | 
| 173 | 
            +
                  Content-Length:
         | 
| 174 | 
            +
                  - '345'
         | 
| 175 | 
            +
                  Keep-Alive:
         | 
| 176 | 
            +
                  - timeout=5, max=100
         | 
| 177 | 
            +
                  Connection:
         | 
| 178 | 
            +
                  - Keep-Alive
         | 
| 179 | 
            +
                body:
         | 
| 180 | 
            +
                  encoding: US-ASCII
         | 
| 181 | 
            +
                  string: <STORAGE href="https://localhost:2345//storage/6"><ID>6</ID><NAME>ttylinux
         | 
| 182 | 
            +
                    - kvm</NAME><USER href="https://localhost:2345//user/304" name="nagios-probes-test"/><GROUP>oneadmin</GROUP><STATE>USED</STATE><TYPE>OS</TYPE><DESCRIPTION>ttylinux</DESCRIPTION><SIZE>40</SIZE><PUBLIC>NO</PUBLIC><PERSISTENT>NO</PERSISTENT></STORAGE>
         | 
| 183 | 
            +
                http_version:
         | 
| 184 | 
            +
              recorded_at: Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 185 | 
            +
            - request:
         | 
| 186 | 
            +
                method: get
         | 
| 187 | 
            +
                uri: https://nagios-probes-test:1b5834c03b1a9fda89b38c081a6d99af634b046e@localhost:2345/storage/7
         | 
| 188 | 
            +
                body:
         | 
| 189 | 
            +
                  encoding: US-ASCII
         | 
| 190 | 
            +
                  string: ''
         | 
| 191 | 
            +
                headers:
         | 
| 192 | 
            +
                  Accept:
         | 
| 193 | 
            +
                  - ! '*/*'
         | 
| 194 | 
            +
                  - application/xml
         | 
| 195 | 
            +
                  User-Agent:
         | 
| 196 | 
            +
                  - Ruby
         | 
| 197 | 
            +
                  Connection:
         | 
| 198 | 
            +
                  - keep-alive
         | 
| 199 | 
            +
                  Keep-Alive:
         | 
| 200 | 
            +
                  - 30
         | 
| 201 | 
            +
              response:
         | 
| 202 | 
            +
                status:
         | 
| 203 | 
            +
                  code: 200
         | 
| 204 | 
            +
                  message: OK
         | 
| 205 | 
            +
                headers:
         | 
| 206 | 
            +
                  Date:
         | 
| 207 | 
            +
                  - Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 208 | 
            +
                  Server:
         | 
| 209 | 
            +
                  - thin 1.3.1 codename Triple Espresso
         | 
| 210 | 
            +
                  X-Frame-Options:
         | 
| 211 | 
            +
                  - sameorigin
         | 
| 212 | 
            +
                  X-Xss-Protection:
         | 
| 213 | 
            +
                  - 1; mode=block
         | 
| 214 | 
            +
                  Content-Type:
         | 
| 215 | 
            +
                  - application/xml;charset=utf-8
         | 
| 216 | 
            +
                  Cache-Control:
         | 
| 217 | 
            +
                  - no-store
         | 
| 218 | 
            +
                  Content-Length:
         | 
| 219 | 
            +
                  - '347'
         | 
| 220 | 
            +
                  Keep-Alive:
         | 
| 221 | 
            +
                  - timeout=5, max=100
         | 
| 222 | 
            +
                  Connection:
         | 
| 223 | 
            +
                  - Keep-Alive
         | 
| 224 | 
            +
                body:
         | 
| 225 | 
            +
                  encoding: US-ASCII
         | 
| 226 | 
            +
                  string: <STORAGE href="https://localhost:2345//storage/7"><ID>7</ID><NAME>ttylinux
         | 
| 227 | 
            +
                    - kvm2</NAME><USER href="https://localhost:2345//user/304" name="nagios-probes-test"/><GROUP>oneadmin</GROUP><STATE>READY</STATE><TYPE>OS</TYPE><DESCRIPTION>ttylinux</DESCRIPTION><SIZE>40</SIZE><PUBLIC>NO</PUBLIC><PERSISTENT>NO</PERSISTENT></STORAGE>
         | 
| 228 | 
            +
                http_version:
         | 
| 229 | 
            +
              recorded_at: Thu, 11 Apr 2013 09:24:04 GMT
         | 
| 230 | 
            +
            recorded_with: VCR 2.4.0
         | 
| @@ -0,0 +1,49 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: get
         | 
| 5 | 
            +
                uri: https://nagios-probes-test:1b5834c03b1a9fda89b38c081a6d99af634b046e@localhost:2345/network/16
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: US-ASCII
         | 
| 8 | 
            +
                  string: ''
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  Accept:
         | 
| 11 | 
            +
                  - ! '*/*'
         | 
| 12 | 
            +
                  - application/xml
         | 
| 13 | 
            +
                  User-Agent:
         | 
| 14 | 
            +
                  - Ruby
         | 
| 15 | 
            +
                  Connection:
         | 
| 16 | 
            +
                  - keep-alive
         | 
| 17 | 
            +
                  Keep-Alive:
         | 
| 18 | 
            +
                  - 30
         | 
| 19 | 
            +
              response:
         | 
| 20 | 
            +
                status:
         | 
| 21 | 
            +
                  code: 404
         | 
| 22 | 
            +
                  message: Not Found
         | 
| 23 | 
            +
                headers:
         | 
| 24 | 
            +
                  Date:
         | 
| 25 | 
            +
                  - Thu, 11 Apr 2013 09:24:05 GMT
         | 
| 26 | 
            +
                  Server:
         | 
| 27 | 
            +
                  - thin 1.3.1 codename Triple Espresso
         | 
| 28 | 
            +
                  X-Frame-Options:
         | 
| 29 | 
            +
                  - sameorigin
         | 
| 30 | 
            +
                  X-Xss-Protection:
         | 
| 31 | 
            +
                  - 1; mode=block
         | 
| 32 | 
            +
                  Content-Type:
         | 
| 33 | 
            +
                  - text/plain;charset=utf-8
         | 
| 34 | 
            +
                  Cache-Control:
         | 
| 35 | 
            +
                  - no-store
         | 
| 36 | 
            +
                  Content-Length:
         | 
| 37 | 
            +
                  - '56'
         | 
| 38 | 
            +
                  Vary:
         | 
| 39 | 
            +
                  - Accept-Encoding
         | 
| 40 | 
            +
                  Keep-Alive:
         | 
| 41 | 
            +
                  - timeout=5, max=100
         | 
| 42 | 
            +
                  Connection:
         | 
| 43 | 
            +
                  - Keep-Alive
         | 
| 44 | 
            +
                body:
         | 
| 45 | 
            +
                  encoding: US-ASCII
         | 
| 46 | 
            +
                  string: ! '[VirtualNetworkInfo] Error getting virtual network [16].'
         | 
| 47 | 
            +
                http_version:
         | 
| 48 | 
            +
              recorded_at: Thu, 11 Apr 2013 09:24:05 GMT
         | 
| 49 | 
            +
            recorded_with: VCR 2.4.0
         | 
| @@ -0,0 +1,131 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: post
         | 
| 5 | 
            +
                uri: https://localhost:2345/RPC2
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: US-ASCII
         | 
| 8 | 
            +
                  string: ! '<?xml version="1.0" ?><methodCall><methodName>one.vnpool.info</methodName><params><param><value><string>nagios-probes-test:1b5834c03b1a9fda89b38c081a6d99af634b046e</string></value></param><param><value><i4>-1</i4></value></param><param><value><i4>-1</i4></value></param><param><value><i4>-1</i4></value></param></params></methodCall>
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            '
         | 
| 11 | 
            +
                headers:
         | 
| 12 | 
            +
                  User-Agent:
         | 
| 13 | 
            +
                  - XMLRPC::Client (Ruby 1.9.3)
         | 
| 14 | 
            +
                  Content-Type:
         | 
| 15 | 
            +
                  - text/xml; charset=utf-8
         | 
| 16 | 
            +
                  Content-Length:
         | 
| 17 | 
            +
                  - '303'
         | 
| 18 | 
            +
                  Connection:
         | 
| 19 | 
            +
                  - close
         | 
| 20 | 
            +
                  Accept:
         | 
| 21 | 
            +
                  - ! '*/*'
         | 
| 22 | 
            +
              response:
         | 
| 23 | 
            +
                status:
         | 
| 24 | 
            +
                  code: 200
         | 
| 25 | 
            +
                  message: OK
         | 
| 26 | 
            +
                headers:
         | 
| 27 | 
            +
                  Date:
         | 
| 28 | 
            +
                  - Mon, 22 Apr 2013 15:08:52 GMT
         | 
| 29 | 
            +
                  Server:
         | 
| 30 | 
            +
                  - Xmlrpc-c_Abyss/1.16.32
         | 
| 31 | 
            +
                  Content-Type:
         | 
| 32 | 
            +
                  - text/xml; charset="utf-8"
         | 
| 33 | 
            +
                  Content-Length:
         | 
| 34 | 
            +
                  - '2698'
         | 
| 35 | 
            +
                  Vary:
         | 
| 36 | 
            +
                  - Accept-Encoding
         | 
| 37 | 
            +
                  Connection:
         | 
| 38 | 
            +
                  - close
         | 
| 39 | 
            +
                body:
         | 
| 40 | 
            +
                  encoding: US-ASCII
         | 
| 41 | 
            +
                  string: ! "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<methodResponse>\r\n<params>\r\n<param><value><array><data>\r\n<value><boolean>1</boolean></value>\r\n<value><string><VNET_POOL><VNET><ID>2</ID><UID>304</UID><GID>0</GID><UNAME>nagios-probes-test</UNAME><GNAME>oneadmin</GNAME><NAME>net1</NAME><PERMISSIONS><OWNER_U>1</OWNER_U><OWNER_M>1</OWNER_M><OWNER_A>0</OWNER_A><GROUP_U>0</GROUP_U><GROUP_M>0</GROUP_M><GROUP_A>0</GROUP_A><OTHER_U>0</OTHER_U><OTHER_M>0</OTHER_M><OTHER_A>0</OTHER_A></PERMISSIONS><CLUSTER_ID>-1</CLUSTER_ID><CLUSTER></CLUSTER><TYPE>1</TYPE><BRIDGE>xenbr0</BRIDGE><VLAN>1</VLAN><PHYDEV/><VLAN_ID>15</VLAN_ID><TOTAL_LEASES>0</TOTAL_LEASES><TEMPLATE></TEMPLATE></VNET><VNET><ID>3</ID><UID>304</UID><GID>0</GID><UNAME>nagios-probes-test</UNAME><GNAME>oneadmin</GNAME><NAME>net2</NAME><PERMISSIONS><OWNER_U>1</OWNER_U><OWNER_M>1</OWNER_M><OWNER_A>0</OWNER_A><GROUP_U>0</GROUP_U><GROUP_M>0</GROUP_M><GROUP_A>0</GROUP_A><OTHER_U>0</OTHER_U><OTHER_M>0</OTHER_M><OTHER_A>0</OTHER_A></PERMISSIONS><CLUSTER_ID>-1</CLUSTER_ID><CLUSTER></CLUSTER><TYPE>1</TYPE><BRIDGE>xenbr0</BRIDGE><VLAN>0</VLAN><PHYDEV/><VLAN_ID/><TOTAL_LEASES>0</TOTAL_LEASES><TEMPLATE></TEMPLATE></VNET><VNET><ID>4</ID><UID>304</UID><GID>0</GID><UNAME>nagios-probes-test</UNAME><GNAME>oneadmin</GNAME><NAME>net3</NAME><PERMISSIONS><OWNER_U>1</OWNER_U><OWNER_M>1</OWNER_M><OWNER_A>0</OWNER_A><GROUP_U>0</GROUP_U><GROUP_M>0</GROUP_M><GROUP_A>0</GROUP_A><OTHER_U>0</OTHER_U><OTHER_M>0</OTHER_M><OTHER_A>0</OTHER_A></PERMISSIONS><CLUSTER_ID>-1</CLUSTER_ID><CLUSTER></CLUSTER><TYPE>1</TYPE><BRIDGE>xenbr0</BRIDGE><VLAN>1</VLAN><PHYDEV/><VLAN_ID/><TOTAL_LEASES>0</TOTAL_LEASES><TEMPLATE></TEMPLATE></VNET></VNET_POOL></string></value>\r\n<value><i4>0</i4></value>\r\n</data></array></value></param>\r\n</params>\r\n</methodResponse>\r\n"
         | 
| 42 | 
            +
                http_version:
         | 
| 43 | 
            +
              recorded_at: Mon, 22 Apr 2013 14:08:52 GMT
         | 
| 44 | 
            +
            - request:
         | 
| 45 | 
            +
                method: post
         | 
| 46 | 
            +
                uri: https://localhost:2345/RPC2
         | 
| 47 | 
            +
                body:
         | 
| 48 | 
            +
                  encoding: US-ASCII
         | 
| 49 | 
            +
                  string: ! '<?xml version="1.0" ?><methodCall><methodName>one.imagepool.info</methodName><params><param><value><string>nagios-probes-test:1b5834c03b1a9fda89b38c081a6d99af634b046e</string></value></param><param><value><i4>-1</i4></value></param><param><value><i4>-1</i4></value></param><param><value><i4>-1</i4></value></param></params></methodCall>
         | 
| 50 | 
            +
             | 
| 51 | 
            +
            '
         | 
| 52 | 
            +
                headers:
         | 
| 53 | 
            +
                  User-Agent:
         | 
| 54 | 
            +
                  - XMLRPC::Client (Ruby 1.9.3)
         | 
| 55 | 
            +
                  Content-Type:
         | 
| 56 | 
            +
                  - text/xml; charset=utf-8
         | 
| 57 | 
            +
                  Content-Length:
         | 
| 58 | 
            +
                  - '306'
         | 
| 59 | 
            +
                  Connection:
         | 
| 60 | 
            +
                  - close
         | 
| 61 | 
            +
                  Accept:
         | 
| 62 | 
            +
                  - ! '*/*'
         | 
| 63 | 
            +
              response:
         | 
| 64 | 
            +
                status:
         | 
| 65 | 
            +
                  code: 200
         | 
| 66 | 
            +
                  message: OK
         | 
| 67 | 
            +
                headers:
         | 
| 68 | 
            +
                  Date:
         | 
| 69 | 
            +
                  - Mon, 22 Apr 2013 15:08:52 GMT
         | 
| 70 | 
            +
                  Server:
         | 
| 71 | 
            +
                  - Xmlrpc-c_Abyss/1.16.32
         | 
| 72 | 
            +
                  Content-Type:
         | 
| 73 | 
            +
                  - text/xml; charset="utf-8"
         | 
| 74 | 
            +
                  Content-Length:
         | 
| 75 | 
            +
                  - '3236'
         | 
| 76 | 
            +
                  Vary:
         | 
| 77 | 
            +
                  - Accept-Encoding
         | 
| 78 | 
            +
                  Connection:
         | 
| 79 | 
            +
                  - close
         | 
| 80 | 
            +
                body:
         | 
| 81 | 
            +
                  encoding: US-ASCII
         | 
| 82 | 
            +
                  string: ! "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<methodResponse>\r\n<params>\r\n<param><value><array><data>\r\n<value><boolean>1</boolean></value>\r\n<value><string><IMAGE_POOL><IMAGE><ID>6</ID><UID>304</UID><GID>0</GID><UNAME>nagios-probes-test</UNAME><GNAME>oneadmin</GNAME><NAME>ttylinux
         | 
| 83 | 
            +
                    - kvm</NAME><PERMISSIONS><OWNER_U>1</OWNER_U><OWNER_M>1</OWNER_M><OWNER_A>0</OWNER_A><GROUP_U>0</GROUP_U><GROUP_M>0</GROUP_M><GROUP_A>0</GROUP_A><OTHER_U>0</OTHER_U><OTHER_M>0</OTHER_M><OTHER_A>0</OTHER_A></PERMISSIONS><TYPE>0</TYPE><DISK_TYPE>0</DISK_TYPE><PERSISTENT>0</PERSISTENT><REGTIME>1365072973</REGTIME><SOURCE>/opt/opennebula/var/datastores/1/7ba83cabcea65882790fbe449d25e4ca</SOURCE><PATH>https://marketplace.c12g.com/appliance/4fc76a938fb81d3517000003/download</PATH><FSTYPE></FSTYPE><SIZE>40</SIZE><STATE>2</STATE><RUNNING_VMS>3</RUNNING_VMS><CLONING_OPS>0</CLONING_OPS><CLONING_ID>-1</CLONING_ID><DATASTORE_ID>1</DATASTORE_ID><DATASTORE>default</DATASTORE><VMS><ID>9</ID><ID>10</ID><ID>11</ID></VMS><TEMPLATE><DESCRIPTION><![CDATA[ttylinux]]></DESCRIPTION><DEV_PREFIX><![CDATA[xvd]]></DEV_PREFIX><MD5><![CDATA[04c7d00e88fa66d9aaa34d9cf8ad6aaa]]></MD5></TEMPLATE></IMAGE><IMAGE><ID>7</ID><UID>304</UID><GID>0</GID><UNAME>nagios-probes-test</UNAME><GNAME>oneadmin</GNAME><NAME>ttylinux
         | 
| 84 | 
            +
                    - kvm2</NAME><PERMISSIONS><OWNER_U>1</OWNER_U><OWNER_M>1</OWNER_M><OWNER_A>0</OWNER_A><GROUP_U>0</GROUP_U><GROUP_M>0</GROUP_M><GROUP_A>0</GROUP_A><OTHER_U>0</OTHER_U><OTHER_M>0</OTHER_M><OTHER_A>0</OTHER_A></PERMISSIONS><TYPE>0</TYPE><DISK_TYPE>0</DISK_TYPE><PERSISTENT>0</PERSISTENT><REGTIME>1365074685</REGTIME><SOURCE>/opt/opennebula/var/datastores/1/07193573e51336e1bce9aedc2492bbc6</SOURCE><PATH>/opt/opennebula/var/datastores/1/7ba83cabcea65882790fbe449d25e4ca</PATH><FSTYPE></FSTYPE><SIZE>40</SIZE><STATE>1</STATE><RUNNING_VMS>0</RUNNING_VMS><CLONING_OPS>0</CLONING_OPS><CLONING_ID>-1</CLONING_ID><DATASTORE_ID>1</DATASTORE_ID><DATASTORE>default</DATASTORE><VMS></VMS><TEMPLATE><DESCRIPTION><![CDATA[ttylinux]]></DESCRIPTION><DEV_PREFIX><![CDATA[xvd]]></DEV_PREFIX><FSTYPE><![CDATA[]]></FSTYPE><MD5><![CDATA[04c7d00e88fa66d9aaa34d9cf8ad6aaa]]></MD5></TEMPLATE></IMAGE></IMAGE_POOL></string></value>\r\n<value><i4>0</i4></value>\r\n</data></array></value></param>\r\n</params>\r\n</methodResponse>\r\n"
         | 
| 85 | 
            +
                http_version:
         | 
| 86 | 
            +
              recorded_at: Mon, 22 Apr 2013 14:08:52 GMT
         | 
| 87 | 
            +
            - request:
         | 
| 88 | 
            +
                method: post
         | 
| 89 | 
            +
                uri: https://localhost:2345/RPC2
         | 
| 90 | 
            +
                body:
         | 
| 91 | 
            +
                  encoding: US-ASCII
         | 
| 92 | 
            +
                  string: ! '<?xml version="1.0" ?><methodCall><methodName>one.vmpool.info</methodName><params><param><value><string>nagios-probes-test:1b5834c03b1a9fda89b38c081a6d99af634b046e</string></value></param><param><value><i4>-1</i4></value></param><param><value><i4>-1</i4></value></param><param><value><i4>-1</i4></value></param><param><value><i4>-1</i4></value></param></params></methodCall>
         | 
| 93 | 
            +
             | 
| 94 | 
            +
            '
         | 
| 95 | 
            +
                headers:
         | 
| 96 | 
            +
                  User-Agent:
         | 
| 97 | 
            +
                  - XMLRPC::Client (Ruby 1.9.3)
         | 
| 98 | 
            +
                  Content-Type:
         | 
| 99 | 
            +
                  - text/xml; charset=utf-8
         | 
| 100 | 
            +
                  Content-Length:
         | 
| 101 | 
            +
                  - '344'
         | 
| 102 | 
            +
                  Connection:
         | 
| 103 | 
            +
                  - close
         | 
| 104 | 
            +
                  Accept:
         | 
| 105 | 
            +
                  - ! '*/*'
         | 
| 106 | 
            +
              response:
         | 
| 107 | 
            +
                status:
         | 
| 108 | 
            +
                  code: 200
         | 
| 109 | 
            +
                  message: OK
         | 
| 110 | 
            +
                headers:
         | 
| 111 | 
            +
                  Date:
         | 
| 112 | 
            +
                  - Mon, 22 Apr 2013 15:08:52 GMT
         | 
| 113 | 
            +
                  Server:
         | 
| 114 | 
            +
                  - Xmlrpc-c_Abyss/1.16.32
         | 
| 115 | 
            +
                  Content-Type:
         | 
| 116 | 
            +
                  - text/xml; charset="utf-8"
         | 
| 117 | 
            +
                  Content-Length:
         | 
| 118 | 
            +
                  - '6868'
         | 
| 119 | 
            +
                  Vary:
         | 
| 120 | 
            +
                  - Accept-Encoding
         | 
| 121 | 
            +
                  Connection:
         | 
| 122 | 
            +
                  - close
         | 
| 123 | 
            +
                body:
         | 
| 124 | 
            +
                  encoding: US-ASCII
         | 
| 125 | 
            +
                  string: ! "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<methodResponse>\r\n<params>\r\n<param><value><array><data>\r\n<value><boolean>1</boolean></value>\r\n<value><string><VM_POOL><VM><ID>9</ID><UID>304</UID><GID>0</GID><UNAME>nagios-probes-test</UNAME><GNAME>oneadmin</GNAME><NAME>one-9</NAME><PERMISSIONS><OWNER_U>1</OWNER_U><OWNER_M>1</OWNER_M><OWNER_A>0</OWNER_A><GROUP_U>0</GROUP_U><GROUP_M>0</GROUP_M><GROUP_A>0</GROUP_A><OTHER_U>0</OTHER_U><OTHER_M>0</OTHER_M><OTHER_A>0</OTHER_A></PERMISSIONS><LAST_POLL>0</LAST_POLL><STATE>1</STATE><LCM_STATE>0</LCM_STATE><RESCHED>0</RESCHED><STIME>1365074989</STIME><ETIME>0</ETIME><DEPLOY_ID></DEPLOY_ID><MEMORY>0</MEMORY><CPU>0</CPU><NET_TX>0</NET_TX><NET_RX>0</NET_RX><TEMPLATE><CPU><![CDATA[1]]></CPU><DISK><CLONE><![CDATA[YES]]></CLONE><DATASTORE><![CDATA[default]]></DATASTORE><DATASTORE_ID><![CDATA[1]]></DATASTORE_ID><DEV_PREFIX><![CDATA[xvd]]></DEV_PREFIX><DISK_ID><![CDATA[0]]></DISK_ID><IMAGE><![CDATA[ttylinux
         | 
| 126 | 
            +
                    - kvm]]></IMAGE><IMAGE_ID><![CDATA[6]]></IMAGE_ID><IMAGE_UNAME><![CDATA[iuname]]></IMAGE_UNAME><READONLY><![CDATA[NO]]></READONLY><SAVE><![CDATA[NO]]></SAVE><SOURCE><![CDATA[/opt/opennebula/var/datastores/1/7ba83cabcea65882790fbe449d25e4ca]]></SOURCE><TARGET><![CDATA[xvda]]></TARGET><TM_MAD><![CDATA[ssh]]></TM_MAD><TYPE><![CDATA[FILE]]></TYPE></DISK><MEMORY><![CDATA[512]]></MEMORY><NAME><![CDATA[one-9]]></NAME><OS><ARCH><![CDATA[i686]]></ARCH><BOOT><![CDATA[hd]]></BOOT></OS><RAW><TYPE><![CDATA[kvm]]></TYPE></RAW><TEMPLATE_ID><![CDATA[4]]></TEMPLATE_ID><VMID><![CDATA[9]]></VMID></TEMPLATE><HISTORY_RECORDS/></VM><VM><ID>10</ID><UID>304</UID><GID>0</GID><UNAME>nagios-probes-test</UNAME><GNAME>oneadmin</GNAME><NAME>one-10</NAME><PERMISSIONS><OWNER_U>1</OWNER_U><OWNER_M>1</OWNER_M><OWNER_A>0</OWNER_A><GROUP_U>0</GROUP_U><GROUP_M>0</GROUP_M><GROUP_A>0</GROUP_A><OTHER_U>0</OTHER_U><OTHER_M>0</OTHER_M><OTHER_A>0</OTHER_A></PERMISSIONS><LAST_POLL>0</LAST_POLL><STATE>1</STATE><LCM_STATE>0</LCM_STATE><RESCHED>0</RESCHED><STIME>1365074989</STIME><ETIME>0</ETIME><DEPLOY_ID></DEPLOY_ID><MEMORY>0</MEMORY><CPU>0</CPU><NET_TX>0</NET_TX><NET_RX>0</NET_RX><TEMPLATE><CPU><![CDATA[3]]></CPU><DISK><CLONE><![CDATA[YES]]></CLONE><DATASTORE><![CDATA[default]]></DATASTORE><DATASTORE_ID><![CDATA[1]]></DATASTORE_ID><DEV_PREFIX><![CDATA[xvd]]></DEV_PREFIX><DISK_ID><![CDATA[0]]></DISK_ID><IMAGE><![CDATA[ttylinux
         | 
| 127 | 
            +
                    - kvm]]></IMAGE><IMAGE_ID><![CDATA[6]]></IMAGE_ID><IMAGE_UNAME><![CDATA[iuname]]></IMAGE_UNAME><READONLY><![CDATA[NO]]></READONLY><SAVE><![CDATA[NO]]></SAVE><SOURCE><![CDATA[/opt/opennebula/var/datastores/1/7ba83cabcea65882790fbe449d25e4ca]]></SOURCE><TARGET><![CDATA[xvda]]></TARGET><TM_MAD><![CDATA[ssh]]></TM_MAD><TYPE><![CDATA[FILE]]></TYPE></DISK><MEMORY><![CDATA[1024]]></MEMORY><NAME><![CDATA[one-10]]></NAME><OS><ARCH><![CDATA[i686]]></ARCH><BOOT><![CDATA[hd]]></BOOT></OS><RAW><TYPE><![CDATA[kvm]]></TYPE></RAW><TEMPLATE_ID><![CDATA[5]]></TEMPLATE_ID><VMID><![CDATA[10]]></VMID></TEMPLATE><HISTORY_RECORDS/></VM><VM><ID>11</ID><UID>304</UID><GID>0</GID><UNAME>nagios-probes-test</UNAME><GNAME>oneadmin</GNAME><NAME>one-11</NAME><PERMISSIONS><OWNER_U>1</OWNER_U><OWNER_M>1</OWNER_M><OWNER_A>0</OWNER_A><GROUP_U>0</GROUP_U><GROUP_M>0</GROUP_M><GROUP_A>0</GROUP_A><OTHER_U>0</OTHER_U><OTHER_M>0</OTHER_M><OTHER_A>0</OTHER_A></PERMISSIONS><LAST_POLL>0</LAST_POLL><STATE>1</STATE><LCM_STATE>0</LCM_STATE><RESCHED>0</RESCHED><STIME>1365075033</STIME><ETIME>0</ETIME><DEPLOY_ID></DEPLOY_ID><MEMORY>0</MEMORY><CPU>0</CPU><NET_TX>0</NET_TX><NET_RX>0</NET_RX><TEMPLATE><CPU><![CDATA[1]]></CPU><DISK><CLONE><![CDATA[YES]]></CLONE><DATASTORE><![CDATA[default]]></DATASTORE><DATASTORE_ID><![CDATA[1]]></DATASTORE_ID><DEV_PREFIX><![CDATA[xvd]]></DEV_PREFIX><DISK_ID><![CDATA[0]]></DISK_ID><IMAGE><![CDATA[ttylinux
         | 
| 128 | 
            +
                    - kvm]]></IMAGE><IMAGE_ID><![CDATA[6]]></IMAGE_ID><IMAGE_UNAME><![CDATA[iuname]]></IMAGE_UNAME><READONLY><![CDATA[NO]]></READONLY><SAVE><![CDATA[NO]]></SAVE><SOURCE><![CDATA[/opt/opennebula/var/datastores/1/7ba83cabcea65882790fbe449d25e4ca]]></SOURCE><TARGET><![CDATA[xvda]]></TARGET><TM_MAD><![CDATA[ssh]]></TM_MAD><TYPE><![CDATA[FILE]]></TYPE></DISK><MEMORY><![CDATA[512]]></MEMORY><NAME><![CDATA[one-11]]></NAME><OS><ARCH><![CDATA[i686]]></ARCH><BOOT><![CDATA[hd]]></BOOT></OS><RAW><TYPE><![CDATA[kvm]]></TYPE></RAW><TEMPLATE_ID><![CDATA[3]]></TEMPLATE_ID><VMID><![CDATA[11]]></VMID></TEMPLATE><HISTORY_RECORDS/></VM></VM_POOL></string></value>\r\n<value><i4>0</i4></value>\r\n</data></array></value></param>\r\n</params>\r\n</methodResponse>\r\n"
         | 
| 129 | 
            +
                http_version:
         | 
| 130 | 
            +
              recorded_at: Mon, 22 Apr 2013 14:08:52 GMT
         | 
| 131 | 
            +
            recorded_with: VCR 2.4.0
         |