hawkular-client 2.2.1 → 2.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (194) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.rdoc +12 -0
  3. data/README.rdoc +5 -3
  4. data/Rakefile +8 -0
  5. data/hawkularclient.gemspec +1 -1
  6. data/lib/hawkular/base_client.rb +19 -1
  7. data/lib/hawkular/hawkular_client.rb +1 -1
  8. data/lib/hawkular/hawkular_client_utils.rb +1 -0
  9. data/lib/hawkular/inventory/entities.rb +234 -0
  10. data/lib/hawkular/inventory/inventory_api.rb +92 -311
  11. data/lib/hawkular/metrics/metric_api.rb +23 -10
  12. data/lib/hawkular/metrics/metrics_client.rb +14 -0
  13. data/lib/hawkular/operations/operations_api.rb +8 -2
  14. data/lib/hawkular/version.rb +1 -1
  15. data/spec/README.rdoc +62 -0
  16. data/spec/integration/alerts_spec.rb +18 -14
  17. data/spec/integration/hawkular_client_spec.rb +53 -14
  18. data/spec/integration/inventory_spec.rb +91 -44
  19. data/spec/integration/metric_spec.rb +574 -420
  20. data/spec/integration/operations_spec.rb +78 -5
  21. data/spec/integration/tokens_spec.rb +8 -4
  22. data/spec/spec_helper.rb +73 -13
  23. data/spec/unit/base_spec.rb +30 -1
  24. data/spec/unit/client_spec.rb +21 -9
  25. data/spec/vcr_cassettes/HawkularClient/Should_err_on_bad_credentials.yml +42 -0
  26. data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_both_create_and_delete_feed.yml +64 -34
  27. data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_both_list_WildFlys.yml +27 -43
  28. data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_both_list_types_with_bad_feed.yml +12 -8
  29. data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_list_same_types_when_param_is_given.yml +144 -64
  30. data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_list_the_same_feeds.yml +26 -14
  31. data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_list_the_same_resource_types.yml +20 -158
  32. data/spec/vcr_cassettes/HawkularClient/and_Operations_client/Should_both_work_the_same_way.yml +40 -30
  33. data/spec/vcr_cassettes/{Tenants/Should_Get_Tenant_For_Explicit_Credentials.yml → HawkularClient/and_Operations_client/Should_work_initializing_with_URI.yml} +18 -20
  34. data/spec/vcr_cassettes/HawkularClient/and_Operations_client_Should_both_work_the_same_way.json +8 -8
  35. data/spec/vcr_cassettes/HawkularClient/and_Operations_client_Should_work_initializing_with_URI.json +9 -0
  36. data/spec/vcr_cassettes/HawkularClient/and_URIs_as_input/Should_work_with_URI.yml +77 -20
  37. data/spec/vcr_cassettes/HawkularClient/and_URIs_as_input/Should_work_with_URI_on_metrics_client.yml +3 -3
  38. data/spec/vcr_cassettes/Inventory/Connection/Should_err_on_bad_credentials.yml +42 -0
  39. data/spec/vcr_cassettes/Inventory/Tenants/Should_Get_Tenant_For_Explicit_Credentials.yml +59 -12
  40. data/spec/vcr_cassettes/Inventory/Tenants/Should_Get_Tenant_For_Implicit_Credentials.yml +59 -12
  41. data/spec/vcr_cassettes/Inventory/{Helpers → inventory_0_17/Helpers}/create_url.yml +9 -7
  42. data/spec/vcr_cassettes/Inventory/{Templates/Should_list_feeds_when_using_SSL_without_certificate.yml → inventory_0_17/Helpers/get_feeds.yml} +23 -21
  43. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Client_should_listen_on_various_inventory_events.json +47 -0
  44. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Client_should_listen_on_various_inventory_events.yml +48 -40
  45. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Helpers/generate_some_events_for_websocket.yml +397 -0
  46. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_List_datasources_with_no_props.yml +129 -0
  47. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Should_create_a_feed.yml +13 -10
  48. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Should_create_a_feed_again.yml +40 -29
  49. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Should_create_a_nested_resource_and_metric_on_it.yml +193 -237
  50. data/spec/vcr_cassettes/Inventory/{Templates/Should_create_and_get_a_resource.yml → inventory_0_17/Templates/Should_create_a_resource.yml} +86 -172
  51. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Should_create_a_resource_with_metric.yml +296 -158
  52. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Should_create_a_resourcetype.yml +38 -29
  53. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Should_create_and_delete_feed.yml +42 -27
  54. data/spec/vcr_cassettes/Inventory/{Templates/Should_create_a_resource.yml → inventory_0_17/Templates/Should_create_and_get_a_resource.yml} +109 -89
  55. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Should_list_URLs.yml +20 -17
  56. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Should_list_WildFlys.yml +19 -12
  57. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_list_WildFlys_with_props.yml +131 -0
  58. data/spec/vcr_cassettes/Inventory/{Helpers/get_feeds.yml → inventory_0_17/Templates/Should_list_all_the_resource_types.yml} +14 -11
  59. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_list_children_of_WildFly.yml +315 -0
  60. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Should_list_children_of_nested_resource.yml +45 -30
  61. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Should_list_feeds.yml +16 -10
  62. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_list_feeds_when_using_SSL_without_certificate.yml +60 -0
  63. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_list_heap_metrics_for_WildFlys.yml +935 -0
  64. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_list_metrics_for_WildFlys.yml +357 -0
  65. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_list_metrics_of_given_metric_type.yml +122 -0
  66. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_list_metrics_of_given_resource_type.yml +292 -0
  67. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_list_operation_definitions_of_given_resource.yml +235 -0
  68. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_list_operation_definitions_of_given_resource_type.yml +121 -0
  69. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_list_recursive_children_of_WildFly.yml +1099 -0
  70. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_list_relationships_of_WildFly.yml +377 -0
  71. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Should_list_resources_for_feed.yml +19 -9
  72. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Should_list_types_with_bad_feed.yml +10 -8
  73. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_list_types_with_feed.yml +164 -0
  74. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Should_not_find_an_unknown_resource.yml +12 -10
  75. data/spec/vcr_cassettes/Inventory/{Templates → inventory_0_17/Templates}/Should_return_config_data_of_given_nested_resource.yml +17 -11
  76. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_return_config_data_of_given_resource.yml +66 -0
  77. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_return_the_version.yml +48 -0
  78. data/spec/vcr_cassettes/Metric_ID_with_special_characters/Get_metric_definition_by_id.yml +49 -0
  79. data/spec/vcr_cassettes/Metric_ID_with_special_characters/Retrieve_metric_rate_points.yml +88 -0
  80. data/spec/vcr_cassettes/Metric_ID_with_special_characters/Should_create_Availability_definition.yml +97 -0
  81. data/spec/vcr_cassettes/Metric_ID_with_special_characters/Should_create_Counter_definition.yml +97 -0
  82. data/spec/vcr_cassettes/Metric_ID_with_special_characters/Should_create_gauge_definition.yml +97 -0
  83. data/spec/vcr_cassettes/Metric_ID_with_special_characters/Should_push_metric_data_to_existing_gauge.yml +48 -0
  84. data/spec/vcr_cassettes/Metric_ID_with_special_characters/Should_update_tags_for_Availability_definition.yml +140 -0
  85. data/spec/vcr_cassettes/Metric_ID_with_special_characters/Should_update_tags_for_gauge_definition.yml +140 -0
  86. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Availability_metrics/Should_create_Availability_definition_using_MetricDefinition_parameter.yml +95 -0
  87. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Availability_metrics/Should_create_and_return_Availability_using_Hash_parameter.yml +95 -0
  88. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Availability_metrics/Should_group_contiguous_values.yml +93 -0
  89. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Availability_metrics/Should_push_metric_data_to_non-existing_Availability.yml +138 -0
  90. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Availability_metrics/Should_update_tags_for_Availability_definition.yml +230 -0
  91. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Counter_metrics/Should_create_and_return_counter_using_Hash_parameter.yml +95 -0
  92. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Counter_metrics/Should_create_counter_definition_using_MetricDefinition_parameter.yml +95 -0
  93. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Counter_metrics/Should_get_metrics_as_bucketed_results.yml +230 -0
  94. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Counter_metrics/Should_get_metrics_with_limit_and_order.yml +314 -0
  95. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Counter_metrics/Should_push_metric_data_to_existing_counter.yml +269 -0
  96. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Counter_metrics/Should_push_metric_data_to_non-existing_counter.yml +138 -0
  97. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Gauge_metrics/Should_create_gauge_definition_using_Hash.yml +95 -0
  98. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Gauge_metrics/Should_create_gauge_definition_using_MetricDefinition.yml +95 -0
  99. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Gauge_metrics/Should_push_metric_data_to_existing_gauge.yml +269 -0
  100. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Gauge_metrics/Should_push_metric_data_to_non-existing_gauge.yml +138 -0
  101. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Gauge_metrics/Should_return_periods.yml +93 -0
  102. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Gauge_metrics/Should_update_tags_for_gauge_definition.yml +230 -0
  103. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Mixed_metrics/Should_requests_raw_data_for_multiple_metrics.yml +330 -0
  104. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Mixed_metrics/Should_send_mixed_metric_request.yml +300 -0
  105. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Mixed_metrics/Should_send_mixed_metric_request_of_a_single_type.yml +273 -0
  106. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/No_Tenant/Should_fail.yml +48 -0
  107. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Simple/Should_be_Cool.yml +48 -0
  108. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Status/Should_return_the_version.yml +42 -0
  109. data/spec/vcr_cassettes/Metrics/metrics_0_16_0/Templates/Tenants/Should_create_and_return_tenant.yml +95 -0
  110. data/spec/vcr_cassettes/{Availability_metrics → Metrics/metrics_0_8_0/Templates/Availability_metrics}/Should_create_Availability_definition_using_MetricDefinition_parameter.yml +5 -9
  111. data/spec/vcr_cassettes/{Availability_metrics → Metrics/metrics_0_8_0/Templates/Availability_metrics}/Should_create_and_return_Availability_using_Hash_parameter.yml +5 -9
  112. data/spec/vcr_cassettes/{Availability_metrics → Metrics/metrics_0_8_0/Templates/Availability_metrics}/Should_push_metric_data_to_non-existing_Availability.yml +9 -15
  113. data/spec/vcr_cassettes/{Availability_metrics → Metrics/metrics_0_8_0/Templates/Availability_metrics}/Should_update_tags_for_Availability_definition.yml +11 -21
  114. data/spec/vcr_cassettes/{Counter_metrics → Metrics/metrics_0_8_0/Templates/Counter_metrics}/Should_create_and_return_counter_using_Hash_parameter.yml +5 -9
  115. data/spec/vcr_cassettes/{Counter_metrics → Metrics/metrics_0_8_0/Templates/Counter_metrics}/Should_create_counter_definition_using_MetricDefinition_parameter.yml +5 -9
  116. data/spec/vcr_cassettes/Metrics/metrics_0_8_0/Templates/Counter_metrics/Should_get_metrics_as_bucketed_results.yml +200 -0
  117. data/spec/vcr_cassettes/{Counter_metrics → Metrics/metrics_0_8_0/Templates/Counter_metrics}/Should_push_metric_data_to_existing_counter.yml +16 -28
  118. data/spec/vcr_cassettes/{Counter_metrics → Metrics/metrics_0_8_0/Templates/Counter_metrics}/Should_push_metric_data_to_non-existing_counter.yml +9 -15
  119. data/spec/vcr_cassettes/{Gauge_metrics → Metrics/metrics_0_8_0/Templates/Gauge_metrics}/Should_create_gauge_definition_using_Hash.yml +5 -9
  120. data/spec/vcr_cassettes/{Gauge_metrics → Metrics/metrics_0_8_0/Templates/Gauge_metrics}/Should_create_gauge_definition_using_MetricDefinition.yml +6 -10
  121. data/spec/vcr_cassettes/{Gauge_metrics → Metrics/metrics_0_8_0/Templates/Gauge_metrics}/Should_push_metric_data_to_existing_gauge.yml +18 -30
  122. data/spec/vcr_cassettes/{Gauge_metrics → Metrics/metrics_0_8_0/Templates/Gauge_metrics}/Should_push_metric_data_to_non-existing_gauge.yml +9 -15
  123. data/spec/vcr_cassettes/{Gauge_metrics → Metrics/metrics_0_8_0/Templates/Gauge_metrics}/Should_return_periods.yml +6 -10
  124. data/spec/vcr_cassettes/{Gauge_metrics → Metrics/metrics_0_8_0/Templates/Gauge_metrics}/Should_update_tags_for_gauge_definition.yml +11 -21
  125. data/spec/vcr_cassettes/{Mixed_metrics → Metrics/metrics_0_8_0/Templates/Mixed_metrics}/Should_send_mixed_metric_request.yml +19 -33
  126. data/spec/vcr_cassettes/{Mixed_metrics → Metrics/metrics_0_8_0/Templates/Mixed_metrics}/Should_send_mixed_metric_request_of_a_single_type.yml +19 -31
  127. data/spec/vcr_cassettes/Metrics/metrics_0_8_0/Templates/Simple/Should_be_Cool.yml +82 -0
  128. data/spec/vcr_cassettes/Metrics/{Status.yml → metrics_0_8_0/Templates/Status/Should_return_the_version.yml} +6 -8
  129. data/spec/vcr_cassettes/{Tenants → Metrics/metrics_0_8_0/Templates/Tenants}/Should_create_and_return_tenant.yml +12 -8
  130. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Availability_metrics/Should_create_Availability_definition_using_MetricDefinition_parameter.yml +95 -0
  131. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Availability_metrics/Should_create_and_return_Availability_using_Hash_parameter.yml +95 -0
  132. data/spec/vcr_cassettes/{Availability_metrics → Metrics/metrics_services/Templates/Availability_metrics}/Should_group_contiguous_values.yml +7 -7
  133. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Availability_metrics/Should_push_metric_data_to_non-existing_Availability.yml +138 -0
  134. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Availability_metrics/Should_update_tags_for_Availability_definition.yml +230 -0
  135. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Counter_metrics/Should_create_and_return_counter_using_Hash_parameter.yml +95 -0
  136. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Counter_metrics/Should_create_counter_definition_using_MetricDefinition_parameter.yml +95 -0
  137. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Counter_metrics/Should_get_metrics_as_bucketed_results.yml +230 -0
  138. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Counter_metrics/Should_get_metrics_with_limit_and_order.yml +314 -0
  139. data/spec/vcr_cassettes/{Counter_metrics/Should_get_metrics_with_limit_and_order.yml → Metrics/metrics_services/Templates/Counter_metrics/Should_push_metric_data_to_existing_counter.yml} +72 -61
  140. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Counter_metrics/Should_push_metric_data_to_non-existing_counter.yml +138 -0
  141. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Gauge_metrics/Should_create_gauge_definition_using_Hash.yml +95 -0
  142. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Gauge_metrics/Should_create_gauge_definition_using_MetricDefinition.yml +95 -0
  143. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Gauge_metrics/Should_push_metric_data_to_existing_gauge.yml +269 -0
  144. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Gauge_metrics/Should_push_metric_data_to_non-existing_gauge.yml +138 -0
  145. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Gauge_metrics/Should_return_periods.yml +93 -0
  146. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Gauge_metrics/Should_return_platform_memory.yml +48 -0
  147. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Gauge_metrics/Should_return_platform_memory_def.yml +49 -0
  148. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Gauge_metrics/Should_update_tags_for_gauge_definition.yml +230 -0
  149. data/spec/vcr_cassettes/{Mixed_metrics → Metrics/metrics_services/Templates/Mixed_metrics}/Should_requests_raw_data_for_multiple_metrics.yml +25 -25
  150. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Mixed_metrics/Should_send_mixed_metric_request.yml +300 -0
  151. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Mixed_metrics/Should_send_mixed_metric_request_of_a_single_type.yml +273 -0
  152. data/spec/vcr_cassettes/{No_Tenant → Metrics/metrics_services/Templates/No_Tenant}/Should_fail.yml +16 -10
  153. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Simple/Should_be_Cool.yml +48 -0
  154. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Status/Should_return_the_version.yml +42 -0
  155. data/spec/vcr_cassettes/Metrics/metrics_services/Templates/Tenants/Should_create_and_return_tenant.yml +95 -0
  156. data/spec/vcr_cassettes/{Counter_metrics → New_API_Counter_metrics}/Should_get_metrics_as_bucketed_results.yml +73 -33
  157. data/spec/vcr_cassettes/New_API_Mixed_metrics/Should_send_mixed_metric_request.yml +300 -0
  158. data/spec/vcr_cassettes/Operation/Helpers/get_feed.yml +17 -11
  159. data/spec/vcr_cassettes/Operation/Helpers/get_tenant.yml +13 -11
  160. data/spec/vcr_cassettes/Operation/Operation/Add_JDBC_driver_should_add_the_driver.json +2 -2
  161. data/spec/vcr_cassettes/Operation/Operation/Add_datasource_should_be_doable.json +2 -2
  162. data/spec/vcr_cassettes/Operation/Operation/Add_deployment_should_be_doable.json +2 -2
  163. data/spec/vcr_cassettes/Operation/Operation/Redeploy_can_be_run_multiple_times_in_parallel.json +4 -4
  164. data/spec/vcr_cassettes/Operation/Operation/Redeploy_should_be_performed_and_eventually_respond_with_success.json +2 -2
  165. data/spec/vcr_cassettes/Operation/Operation/Redeploy_should_not_be_performed_if_resource_path_is_wrong.json +2 -2
  166. data/spec/vcr_cassettes/Operation/Operation/Remove_JDBC_driver_should_be_performed_and_eventually_respond_with_success.json +2 -2
  167. data/spec/vcr_cassettes/Operation/Operation/Remove_datasource_should_be_performed_and_eventually_respond_with_success.json +2 -2
  168. data/spec/vcr_cassettes/Operation/Operation/Remove_deployment_should_be_performed_and_eventually_respond_with_success.json +2 -2
  169. data/spec/vcr_cassettes/Operation/Operation/Undeploy_should_be_performed_and_eventually_respond_with_success.json +2 -2
  170. data/spec/vcr_cassettes/Operation/Websocket_connection/should_bail_with_hash_property_error_because_no_callback_at_all.json +9 -0
  171. data/spec/vcr_cassettes/Operation/Websocket_connection/should_bail_with_hash_property_error_because_no_error-callback_.json +9 -0
  172. data/spec/vcr_cassettes/Operation/Websocket_connection/should_run_into_error_callback_because_bad_hash_parameters.json +13 -0
  173. metadata +259 -139
  174. data/spec/vcr_cassettes/Gauge_metrics/Platform_mem.yml +0 -44
  175. data/spec/vcr_cassettes/Gauge_metrics/Platform_mem_def.yml +0 -45
  176. data/spec/vcr_cassettes/Inventory/Helpers/generate_some_events_for_websocket.yml +0 -4446
  177. data/spec/vcr_cassettes/Inventory/Templates/Client_should_listen_on_various_inventory_events.json +0 -47
  178. data/spec/vcr_cassettes/Inventory/Templates/Helpers/generate_some_events_for_websocket.yml +0 -542
  179. data/spec/vcr_cassettes/Inventory/Templates/Should_List_datasources_with_no_props.yml +0 -174
  180. data/spec/vcr_cassettes/Inventory/Templates/Should_list_WildFlys_with_props.yml +0 -115
  181. data/spec/vcr_cassettes/Inventory/Templates/Should_list_all_the_resource_types.yml +0 -126
  182. data/spec/vcr_cassettes/Inventory/Templates/Should_list_children_of_WildFly.yml +0 -308
  183. data/spec/vcr_cassettes/Inventory/Templates/Should_list_heap_metrics_for_WildFlys.yml +0 -712
  184. data/spec/vcr_cassettes/Inventory/Templates/Should_list_metrics_for_WildFlys.yml +0 -278
  185. data/spec/vcr_cassettes/Inventory/Templates/Should_list_metrics_of_given_metric_type.yml +0 -530
  186. data/spec/vcr_cassettes/Inventory/Templates/Should_list_metrics_of_given_resource_type.yml +0 -278
  187. data/spec/vcr_cassettes/Inventory/Templates/Should_list_operation_definitions_of_given_resource.yml +0 -185
  188. data/spec/vcr_cassettes/Inventory/Templates/Should_list_operation_definitions_of_given_resource_type.yml +0 -126
  189. data/spec/vcr_cassettes/Inventory/Templates/Should_list_recursive_children_of_WildFly.yml +0 -2369
  190. data/spec/vcr_cassettes/Inventory/Templates/Should_list_relationships_of_WildFly.yml +0 -415
  191. data/spec/vcr_cassettes/Inventory/Templates/Should_list_types_with_feed.yml +0 -124
  192. data/spec/vcr_cassettes/Inventory/Templates/Should_return_config_data_of_given_resource.yml +0 -57
  193. data/spec/vcr_cassettes/Simple/Should_be_Cool.yml +0 -208
  194. data/spec/vcr_cassettes/Tenants/Should_Get_Tenant_For_Implicit_Credentials.yml +0 -50
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/a43ec2b3-94bf-4120-a91b-3a2f63914061/resourceTypes/WildFly%20Server/resources
5
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/traversal/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;WildFly%20Server/rl;defines/type=r
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -10,11 +10,13 @@ http_interactions:
10
10
  Accept:
11
11
  - application/json
12
12
  Accept-Encoding:
13
- - gzip, deflate
13
+ - identity
14
+ User-Agent:
15
+ - hawkular-client-ruby
16
+ Hawkular-Tenant:
17
+ - hawkular
14
18
  Content-Type:
15
19
  - application/json
16
- User-Agent:
17
- - Ruby
18
20
  response:
19
21
  status:
20
22
  code: 200
@@ -31,36 +33,26 @@ http_interactions:
31
33
  Pragma:
32
34
  - no-cache
33
35
  Date:
34
- - Tue, 29 Mar 2016 15:26:12 GMT
36
+ - Fri, 22 Jul 2016 17:44:34 GMT
35
37
  X-Total-Count:
36
- - '1'
38
+ - "-1"
37
39
  Connection:
38
40
  - keep-alive
39
41
  Content-Type:
40
42
  - application/json
41
43
  Content-Length:
42
- - '357'
44
+ - '3'
43
45
  Link:
44
- - <http://localhost:8080/hawkular/inventory/feeds/a43ec2b3-94bf-4120-a91b-3a2f63914061/resourceTypes/WildFly%20Server/resources>;
46
+ - <http://localhost:8080/hawkular/inventory/traversal/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;WildFly%20Server/rl;defines/type=r>;
45
47
  rel="current"
46
48
  body:
47
- encoding: ASCII-8BIT
48
- string: |-
49
- [ {
50
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/r;Local~~",
51
- "type" : {
52
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;WildFly%20Server",
53
- "name" : "WildFly Server",
54
- "id" : "WildFly Server"
55
- },
56
- "name" : "dhcp-10-40-1-43/Local",
57
- "id" : "Local~~"
58
- } ]
49
+ encoding: UTF-8
50
+ string: "[ ]"
59
51
  http_version:
60
- recorded_at: Tue, 29 Mar 2016 15:26:12 GMT
52
+ recorded_at: Fri, 22 Jul 2016 17:44:34 GMT
61
53
  - request:
62
54
  method: get
63
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/a43ec2b3-94bf-4120-a91b-3a2f63914061/resourceTypes/WildFly%20Server/resources
55
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/traversal/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;WildFly%20Server/rl;defines/type=r
64
56
  body:
65
57
  encoding: US-ASCII
66
58
  string: ''
@@ -68,11 +60,13 @@ http_interactions:
68
60
  Accept:
69
61
  - application/json
70
62
  Accept-Encoding:
71
- - gzip, deflate
63
+ - identity
64
+ User-Agent:
65
+ - hawkular-client-ruby
66
+ Hawkular-Tenant:
67
+ - hawkular
72
68
  Content-Type:
73
69
  - application/json
74
- User-Agent:
75
- - Ruby
76
70
  response:
77
71
  status:
78
72
  code: 200
@@ -89,31 +83,21 @@ http_interactions:
89
83
  Pragma:
90
84
  - no-cache
91
85
  Date:
92
- - Tue, 29 Mar 2016 15:26:12 GMT
86
+ - Fri, 22 Jul 2016 17:44:35 GMT
93
87
  X-Total-Count:
94
- - '1'
88
+ - "-1"
95
89
  Connection:
96
90
  - keep-alive
97
91
  Content-Type:
98
92
  - application/json
99
93
  Content-Length:
100
- - '357'
94
+ - '3'
101
95
  Link:
102
- - <http://localhost:8080/hawkular/inventory/feeds/a43ec2b3-94bf-4120-a91b-3a2f63914061/resourceTypes/WildFly%20Server/resources>;
96
+ - <http://localhost:8080/hawkular/inventory/traversal/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;WildFly%20Server/rl;defines/type=r>;
103
97
  rel="current"
104
98
  body:
105
- encoding: ASCII-8BIT
106
- string: |-
107
- [ {
108
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/r;Local~~",
109
- "type" : {
110
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;WildFly%20Server",
111
- "name" : "WildFly Server",
112
- "id" : "WildFly Server"
113
- },
114
- "name" : "dhcp-10-40-1-43/Local",
115
- "id" : "Local~~"
116
- } ]
99
+ encoding: UTF-8
100
+ string: "[ ]"
117
101
  http_version:
118
- recorded_at: Tue, 29 Mar 2016 15:26:12 GMT
119
- recorded_with: VCR 3.0.1
102
+ recorded_at: Fri, 22 Jul 2016 17:44:35 GMT
103
+ recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/does%20not%20exist/resourceTypes
5
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/traversal/f;does%20not%20exist/type=rt
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -11,6 +11,8 @@ http_interactions:
11
11
  - application/json
12
12
  Accept-Encoding:
13
13
  - gzip, deflate
14
+ Hawkular-Tenant:
15
+ - hawkular
14
16
  Content-Type:
15
17
  - application/json
16
18
  User-Agent:
@@ -31,7 +33,7 @@ http_interactions:
31
33
  Pragma:
32
34
  - no-cache
33
35
  Date:
34
- - Tue, 29 Mar 2016 15:26:12 GMT
36
+ - Wed, 13 Jul 2016 23:58:02 GMT
35
37
  X-Total-Count:
36
38
  - "-1"
37
39
  Connection:
@@ -41,16 +43,16 @@ http_interactions:
41
43
  Content-Length:
42
44
  - '3'
43
45
  Link:
44
- - <http://localhost:8080/hawkular/inventory/feeds/does%20not%20exist/resourceTypes>;
46
+ - <http://localhost:8080/hawkular/inventory/traversal/f;does%20not%20exist/type=rt>;
45
47
  rel="current"
46
48
  body:
47
49
  encoding: ASCII-8BIT
48
50
  string: "[ ]"
49
51
  http_version:
50
- recorded_at: Tue, 29 Mar 2016 15:26:12 GMT
52
+ recorded_at: Wed, 13 Jul 2016 23:58:02 GMT
51
53
  - request:
52
54
  method: get
53
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/does%20not%20exist/resourceTypes
55
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/traversal/f;does%20not%20exist/type=rt
54
56
  body:
55
57
  encoding: US-ASCII
56
58
  string: ''
@@ -59,6 +61,8 @@ http_interactions:
59
61
  - application/json
60
62
  Accept-Encoding:
61
63
  - gzip, deflate
64
+ Hawkular-Tenant:
65
+ - hawkular
62
66
  Content-Type:
63
67
  - application/json
64
68
  User-Agent:
@@ -79,7 +83,7 @@ http_interactions:
79
83
  Pragma:
80
84
  - no-cache
81
85
  Date:
82
- - Tue, 29 Mar 2016 15:26:12 GMT
86
+ - Wed, 13 Jul 2016 23:58:02 GMT
83
87
  X-Total-Count:
84
88
  - "-1"
85
89
  Connection:
@@ -89,11 +93,11 @@ http_interactions:
89
93
  Content-Length:
90
94
  - '3'
91
95
  Link:
92
- - <http://localhost:8080/hawkular/inventory/feeds/does%20not%20exist/resourceTypes>;
96
+ - <http://localhost:8080/hawkular/inventory/traversal/f;does%20not%20exist/type=rt>;
93
97
  rel="current"
94
98
  body:
95
99
  encoding: ASCII-8BIT
96
100
  string: "[ ]"
97
101
  http_version:
98
- recorded_at: Tue, 29 Mar 2016 15:26:12 GMT
102
+ recorded_at: Wed, 13 Jul 2016 23:58:02 GMT
99
103
  recorded_with: VCR 3.0.1
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/a43ec2b3-94bf-4120-a91b-3a2f63914061/resourceTypes
5
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/traversal/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/type=rt
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -11,6 +11,8 @@ http_interactions:
11
11
  - application/json
12
12
  Accept-Encoding:
13
13
  - gzip, deflate
14
+ Hawkular-Tenant:
15
+ - hawkular
14
16
  Content-Type:
15
17
  - application/json
16
18
  User-Agent:
@@ -31,99 +33,137 @@ http_interactions:
31
33
  Pragma:
32
34
  - no-cache
33
35
  Date:
34
- - Tue, 29 Mar 2016 15:26:10 GMT
36
+ - Wed, 13 Jul 2016 23:58:01 GMT
35
37
  X-Total-Count:
36
- - '18'
38
+ - '22'
37
39
  Connection:
38
40
  - keep-alive
39
41
  Content-Type:
40
42
  - application/json
41
43
  Content-Length:
42
- - '3053'
44
+ - '4632'
43
45
  Link:
44
- - <http://localhost:8080/hawkular/inventory/feeds/a43ec2b3-94bf-4120-a91b-3a2f63914061/resourceTypes>;
46
+ - <http://localhost:8080/hawkular/inventory/traversal/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/type=rt>;
45
47
  rel="current"
46
48
  body:
47
49
  encoding: ASCII-8BIT
48
50
  string: |-
49
51
  [ {
50
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Operating%20System",
52
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Operating%20System",
51
53
  "name" : "Operating System",
54
+ "identityHash" : "12ec4befc53b1ed52f39fb292ed1eea8213323",
52
55
  "id" : "Operating System"
53
56
  }, {
54
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;File%20Store",
57
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;File%20Store",
55
58
  "name" : "File Store",
59
+ "identityHash" : "1c35dc8269c6fd21df472c92f3d7aaee59fde",
56
60
  "id" : "File Store"
57
61
  }, {
58
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Memory",
62
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Memory",
59
63
  "name" : "Memory",
64
+ "identityHash" : "3ed4d86c86c18faa2676e56879af947d776efba",
60
65
  "id" : "Memory"
61
66
  }, {
62
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Processor",
67
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Processor",
63
68
  "name" : "Processor",
69
+ "identityHash" : "81d477a597103350cafceab3588c61e5f4895e34",
64
70
  "id" : "Processor"
65
71
  }, {
66
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;WildFly%20Server",
72
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;WildFly%20Server",
67
73
  "name" : "WildFly Server",
74
+ "identityHash" : "617542c89b86e3ce52b819c1deae7ca37cf7851",
68
75
  "id" : "WildFly Server"
69
76
  }, {
70
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Datasource",
77
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Datasource",
71
78
  "name" : "Datasource",
79
+ "identityHash" : "b3291af08b396960f425871b493b6d9ee97e339f",
72
80
  "id" : "Datasource"
73
81
  }, {
74
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;JDBC%20Driver",
82
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;JDBC%20Driver",
75
83
  "name" : "JDBC Driver",
84
+ "identityHash" : "f9eaf22c8dff1416a34eb4d26a4bc6a99c46af2",
76
85
  "id" : "JDBC Driver"
77
86
  }, {
78
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Deployment",
87
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Deployment",
79
88
  "name" : "Deployment",
89
+ "identityHash" : "183e79e0462c1f2fc866ba71f5db64c477b5dc",
80
90
  "id" : "Deployment"
81
91
  }, {
82
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Singleton%20EJB",
92
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Servlet",
93
+ "name" : "Servlet",
94
+ "identityHash" : "d844da746834ebfc4aa7782c94eeaea85b4abb74",
95
+ "id" : "Servlet"
96
+ }, {
97
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Singleton%20EJB",
83
98
  "name" : "Singleton EJB",
99
+ "identityHash" : "42f0638e5e8e266d17d2f7e95f35313e96fa9b39",
84
100
  "id" : "Singleton EJB"
85
101
  }, {
86
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Stateless%20Session%20EJB",
87
- "name" : "Stateless Session EJB",
88
- "id" : "Stateless Session EJB"
89
- }, {
90
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Message%20Driven%20EJB",
102
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Message%20Driven%20EJB",
91
103
  "name" : "Message Driven EJB",
104
+ "identityHash" : "2eee38e96ef09ab44422a49bc5a8623596a34bc",
92
105
  "id" : "Message Driven EJB"
93
106
  }, {
94
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Servlet",
95
- "name" : "Servlet",
96
- "id" : "Servlet"
97
- }, {
98
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;SubDeployment",
99
- "name" : "SubDeployment",
100
- "id" : "SubDeployment"
107
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Stateless%20Session%20EJB",
108
+ "name" : "Stateless Session EJB",
109
+ "identityHash" : "8db06fc15c4b85fdfc5843944dde9594652a634",
110
+ "id" : "Stateless Session EJB"
101
111
  }, {
102
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Transaction%20Manager",
112
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Transaction%20Manager",
103
113
  "name" : "Transaction Manager",
114
+ "identityHash" : "2c82df7330b7ae48c43ae5413f9b8857f24a85f",
104
115
  "id" : "Transaction Manager"
105
116
  }, {
106
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Messaging%20Server",
117
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Messaging%20Server",
107
118
  "name" : "Messaging Server",
119
+ "identityHash" : "c21e2c4be8b952d760ef3929652e304bd951ac4e",
108
120
  "id" : "Messaging Server"
109
121
  }, {
110
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;JMS%20Topic",
122
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;JMS%20Topic",
111
123
  "name" : "JMS Topic",
124
+ "identityHash" : "75c24027bbd562b062152731fd59a0cee80ffa2",
112
125
  "id" : "JMS Topic"
113
126
  }, {
114
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;JMS%20Queue",
127
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;JMS%20Queue",
115
128
  "name" : "JMS Queue",
129
+ "identityHash" : "e231d2d4c8c38b428725c32f4e695fad772c1db8",
116
130
  "id" : "JMS Queue"
117
131
  }, {
118
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Hawkular%20WildFly%20Agent",
132
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Hawkular%20WildFly%20Agent",
119
133
  "name" : "Hawkular WildFly Agent",
134
+ "identityHash" : "1d7fbc312f708afc4643812f2772e7aabf283328",
120
135
  "id" : "Hawkular WildFly Agent"
136
+ }, {
137
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Socket%20Binding%20Group",
138
+ "name" : "Socket Binding Group",
139
+ "identityHash" : "689259496c606a774ff8d4288893cf656230642d",
140
+ "id" : "Socket Binding Group"
141
+ }, {
142
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Socket%20Binding",
143
+ "name" : "Socket Binding",
144
+ "identityHash" : "9e8eefdeb8e37da1b2fa96e756b262caeea5",
145
+ "id" : "Socket Binding"
146
+ }, {
147
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Remote%20Destination%20Outbound%20Socket%20Binding",
148
+ "name" : "Remote Destination Outbound Socket Binding",
149
+ "identityHash" : "35c9cb7b4ea86e90f10e3fe64c6d14d3456ee96",
150
+ "id" : "Remote Destination Outbound Socket Binding"
151
+ }, {
152
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Infinispan",
153
+ "name" : "Infinispan",
154
+ "identityHash" : "a02a9a0121b9fe564ef869e72765e7f1c56b2a",
155
+ "id" : "Infinispan"
156
+ }, {
157
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Infinispan%20Cache%20Container",
158
+ "name" : "Infinispan Cache Container",
159
+ "identityHash" : "53f33112d2fa8726fd7a36b3b09827b874f36c2",
160
+ "id" : "Infinispan Cache Container"
121
161
  } ]
122
162
  http_version:
123
- recorded_at: Tue, 29 Mar 2016 15:26:10 GMT
163
+ recorded_at: Wed, 13 Jul 2016 23:58:01 GMT
124
164
  - request:
125
165
  method: get
126
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/a43ec2b3-94bf-4120-a91b-3a2f63914061/resourceTypes
166
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/traversal/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/type=rt
127
167
  body:
128
168
  encoding: US-ASCII
129
169
  string: ''
@@ -132,6 +172,8 @@ http_interactions:
132
172
  - application/json
133
173
  Accept-Encoding:
134
174
  - gzip, deflate
175
+ Hawkular-Tenant:
176
+ - hawkular
135
177
  Content-Type:
136
178
  - application/json
137
179
  User-Agent:
@@ -152,94 +194,132 @@ http_interactions:
152
194
  Pragma:
153
195
  - no-cache
154
196
  Date:
155
- - Tue, 29 Mar 2016 15:26:12 GMT
197
+ - Wed, 13 Jul 2016 23:58:01 GMT
156
198
  X-Total-Count:
157
- - '18'
199
+ - '22'
158
200
  Connection:
159
201
  - keep-alive
160
202
  Content-Type:
161
203
  - application/json
162
204
  Content-Length:
163
- - '3053'
205
+ - '4632'
164
206
  Link:
165
- - <http://localhost:8080/hawkular/inventory/feeds/a43ec2b3-94bf-4120-a91b-3a2f63914061/resourceTypes>;
207
+ - <http://localhost:8080/hawkular/inventory/traversal/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/type=rt>;
166
208
  rel="current"
167
209
  body:
168
210
  encoding: ASCII-8BIT
169
211
  string: |-
170
212
  [ {
171
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Operating%20System",
213
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Operating%20System",
172
214
  "name" : "Operating System",
215
+ "identityHash" : "12ec4befc53b1ed52f39fb292ed1eea8213323",
173
216
  "id" : "Operating System"
174
217
  }, {
175
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;File%20Store",
218
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;File%20Store",
176
219
  "name" : "File Store",
220
+ "identityHash" : "1c35dc8269c6fd21df472c92f3d7aaee59fde",
177
221
  "id" : "File Store"
178
222
  }, {
179
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Memory",
223
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Memory",
180
224
  "name" : "Memory",
225
+ "identityHash" : "3ed4d86c86c18faa2676e56879af947d776efba",
181
226
  "id" : "Memory"
182
227
  }, {
183
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Processor",
228
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Processor",
184
229
  "name" : "Processor",
230
+ "identityHash" : "81d477a597103350cafceab3588c61e5f4895e34",
185
231
  "id" : "Processor"
186
232
  }, {
187
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;WildFly%20Server",
233
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;WildFly%20Server",
188
234
  "name" : "WildFly Server",
235
+ "identityHash" : "617542c89b86e3ce52b819c1deae7ca37cf7851",
189
236
  "id" : "WildFly Server"
190
237
  }, {
191
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Datasource",
238
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Datasource",
192
239
  "name" : "Datasource",
240
+ "identityHash" : "b3291af08b396960f425871b493b6d9ee97e339f",
193
241
  "id" : "Datasource"
194
242
  }, {
195
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;JDBC%20Driver",
243
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;JDBC%20Driver",
196
244
  "name" : "JDBC Driver",
245
+ "identityHash" : "f9eaf22c8dff1416a34eb4d26a4bc6a99c46af2",
197
246
  "id" : "JDBC Driver"
198
247
  }, {
199
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Deployment",
248
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Deployment",
200
249
  "name" : "Deployment",
250
+ "identityHash" : "183e79e0462c1f2fc866ba71f5db64c477b5dc",
201
251
  "id" : "Deployment"
202
252
  }, {
203
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Singleton%20EJB",
253
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Servlet",
254
+ "name" : "Servlet",
255
+ "identityHash" : "d844da746834ebfc4aa7782c94eeaea85b4abb74",
256
+ "id" : "Servlet"
257
+ }, {
258
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Singleton%20EJB",
204
259
  "name" : "Singleton EJB",
260
+ "identityHash" : "42f0638e5e8e266d17d2f7e95f35313e96fa9b39",
205
261
  "id" : "Singleton EJB"
206
262
  }, {
207
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Stateless%20Session%20EJB",
208
- "name" : "Stateless Session EJB",
209
- "id" : "Stateless Session EJB"
210
- }, {
211
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Message%20Driven%20EJB",
263
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Message%20Driven%20EJB",
212
264
  "name" : "Message Driven EJB",
265
+ "identityHash" : "2eee38e96ef09ab44422a49bc5a8623596a34bc",
213
266
  "id" : "Message Driven EJB"
214
267
  }, {
215
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Servlet",
216
- "name" : "Servlet",
217
- "id" : "Servlet"
218
- }, {
219
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;SubDeployment",
220
- "name" : "SubDeployment",
221
- "id" : "SubDeployment"
268
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Stateless%20Session%20EJB",
269
+ "name" : "Stateless Session EJB",
270
+ "identityHash" : "8db06fc15c4b85fdfc5843944dde9594652a634",
271
+ "id" : "Stateless Session EJB"
222
272
  }, {
223
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Transaction%20Manager",
273
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Transaction%20Manager",
224
274
  "name" : "Transaction Manager",
275
+ "identityHash" : "2c82df7330b7ae48c43ae5413f9b8857f24a85f",
225
276
  "id" : "Transaction Manager"
226
277
  }, {
227
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Messaging%20Server",
278
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Messaging%20Server",
228
279
  "name" : "Messaging Server",
280
+ "identityHash" : "c21e2c4be8b952d760ef3929652e304bd951ac4e",
229
281
  "id" : "Messaging Server"
230
282
  }, {
231
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;JMS%20Topic",
283
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;JMS%20Topic",
232
284
  "name" : "JMS Topic",
285
+ "identityHash" : "75c24027bbd562b062152731fd59a0cee80ffa2",
233
286
  "id" : "JMS Topic"
234
287
  }, {
235
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;JMS%20Queue",
288
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;JMS%20Queue",
236
289
  "name" : "JMS Queue",
290
+ "identityHash" : "e231d2d4c8c38b428725c32f4e695fad772c1db8",
237
291
  "id" : "JMS Queue"
238
292
  }, {
239
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/rt;Hawkular%20WildFly%20Agent",
293
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Hawkular%20WildFly%20Agent",
240
294
  "name" : "Hawkular WildFly Agent",
295
+ "identityHash" : "1d7fbc312f708afc4643812f2772e7aabf283328",
241
296
  "id" : "Hawkular WildFly Agent"
297
+ }, {
298
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Socket%20Binding%20Group",
299
+ "name" : "Socket Binding Group",
300
+ "identityHash" : "689259496c606a774ff8d4288893cf656230642d",
301
+ "id" : "Socket Binding Group"
302
+ }, {
303
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Socket%20Binding",
304
+ "name" : "Socket Binding",
305
+ "identityHash" : "9e8eefdeb8e37da1b2fa96e756b262caeea5",
306
+ "id" : "Socket Binding"
307
+ }, {
308
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Remote%20Destination%20Outbound%20Socket%20Binding",
309
+ "name" : "Remote Destination Outbound Socket Binding",
310
+ "identityHash" : "35c9cb7b4ea86e90f10e3fe64c6d14d3456ee96",
311
+ "id" : "Remote Destination Outbound Socket Binding"
312
+ }, {
313
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Infinispan",
314
+ "name" : "Infinispan",
315
+ "identityHash" : "a02a9a0121b9fe564ef869e72765e7f1c56b2a",
316
+ "id" : "Infinispan"
317
+ }, {
318
+ "path" : "/t;hawkular/f;60f168e0-5220-4208-aa28-0d82a3df4c0c/rt;Infinispan%20Cache%20Container",
319
+ "name" : "Infinispan Cache Container",
320
+ "identityHash" : "53f33112d2fa8726fd7a36b3b09827b874f36c2",
321
+ "id" : "Infinispan Cache Container"
242
322
  } ]
243
323
  http_version:
244
- recorded_at: Tue, 29 Mar 2016 15:26:12 GMT
324
+ recorded_at: Wed, 13 Jul 2016 23:58:01 GMT
245
325
  recorded_with: VCR 3.0.1