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
@@ -0,0 +1,121 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://jdoe:<%= super_secret_password %>@localhost:8080/hawkular/inventory/traversal/f;<%= feed_uuid %>/rt;WildFly%20Server/type=ot
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Accept-Encoding:
13
+ - identity
14
+ User-Agent:
15
+ - hawkular-client-ruby
16
+ Hawkular-Tenant:
17
+ - hawkular
18
+ Content-Type:
19
+ - application/json
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Expires:
26
+ - '0'
27
+ Cache-Control:
28
+ - no-cache, no-store, must-revalidate
29
+ X-Powered-By:
30
+ - Undertow/1
31
+ Server:
32
+ - WildFly/10
33
+ Pragma:
34
+ - no-cache
35
+ Date:
36
+ - Fri, 22 Jul 2016 17:54:43 GMT
37
+ X-Total-Count:
38
+ - '7'
39
+ Connection:
40
+ - keep-alive
41
+ Content-Type:
42
+ - application/json
43
+ Content-Length:
44
+ - '2390'
45
+ Link:
46
+ - <http://localhost:8080/hawkular/inventory/traversal/f;<%= feed_uuid %>/rt;WildFly%20Server/type=ot>;
47
+ rel="current"
48
+ body:
49
+ encoding: UTF-8
50
+ string: |-
51
+ [ {
52
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;WildFly%20Server/ot;JDR",
53
+ "properties" : {
54
+ "__identityHash" : "417bead4a2974c52ae9884323ecd2840879e1195"
55
+ },
56
+ "name" : "JDR",
57
+ "identityHash" : "417bead4a2974c52ae9884323ecd2840879e1195",
58
+ "id" : "JDR"
59
+ }, {
60
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;WildFly%20Server/ot;Reload",
61
+ "properties" : {
62
+ "__identityHash" : "248fc590d2a2a222938f445ecdad85d7c9f3e91"
63
+ },
64
+ "name" : "Reload",
65
+ "identityHash" : "248fc590d2a2a222938f445ecdad85d7c9f3e91",
66
+ "id" : "Reload"
67
+ }, {
68
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;WildFly%20Server/ot;Resume",
69
+ "properties" : {
70
+ "__identityHash" : "b5103168d783b0bb67bf88f30c1fad462b635e"
71
+ },
72
+ "name" : "Resume",
73
+ "identityHash" : "b5103168d783b0bb67bf88f30c1fad462b635e",
74
+ "id" : "Resume"
75
+ }, {
76
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;WildFly%20Server/ot;Shutdown",
77
+ "properties" : {
78
+ "params" : [ {
79
+ "name" : "timeout",
80
+ "type" : "number",
81
+ "description" : "Timeout in seconds to allow active connections to drain",
82
+ "defaultValue" : "0"
83
+ }, {
84
+ "name" : "restart",
85
+ "type" : "bool",
86
+ "description" : "Should the server be restarted after shutdown?",
87
+ "defaultValue" : "false"
88
+ } ],
89
+ "__identityHash" : "126f14e6849f5c843f1939e64db92a7f5f126e41"
90
+ },
91
+ "name" : "Shutdown",
92
+ "identityHash" : "126f14e6849f5c843f1939e64db92a7f5f126e41",
93
+ "id" : "Shutdown"
94
+ }, {
95
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;WildFly%20Server/ot;Suspend",
96
+ "properties" : {
97
+ "__identityHash" : "d57569ae2270cde6d0843fb1da72eae3d679c6a"
98
+ },
99
+ "name" : "Suspend",
100
+ "identityHash" : "d57569ae2270cde6d0843fb1da72eae3d679c6a",
101
+ "id" : "Suspend"
102
+ }, {
103
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;WildFly%20Server/ot;Deploy",
104
+ "properties" : {
105
+ "__identityHash" : "c6252032c0e198b69179c06fdaa95e511836f2f"
106
+ },
107
+ "name" : "Deploy",
108
+ "identityHash" : "c6252032c0e198b69179c06fdaa95e511836f2f",
109
+ "id" : "Deploy"
110
+ }, {
111
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;WildFly%20Server/ot;Undeploy",
112
+ "properties" : {
113
+ "__identityHash" : "dff1f5b0a0cc8840825994c38becf0829098f963"
114
+ },
115
+ "name" : "Undeploy",
116
+ "identityHash" : "dff1f5b0a0cc8840825994c38becf0829098f963",
117
+ "id" : "Undeploy"
118
+ } ]
119
+ http_version:
120
+ recorded_at: Fri, 22 Jul 2016 17:54:43 GMT
121
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,1099 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://jdoe:<%= super_secret_password %>@localhost:8080/hawkular/inventory/traversal/f;<%= feed_uuid %>/rt;WildFly%20Server/rl;defines/type=r
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Accept-Encoding:
13
+ - identity
14
+ User-Agent:
15
+ - hawkular-client-ruby
16
+ Hawkular-Tenant:
17
+ - hawkular
18
+ Content-Type:
19
+ - application/json
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Expires:
26
+ - '0'
27
+ Cache-Control:
28
+ - no-cache, no-store, must-revalidate
29
+ X-Powered-By:
30
+ - Undertow/1
31
+ Server:
32
+ - WildFly/10
33
+ Pragma:
34
+ - no-cache
35
+ Date:
36
+ - Thu, 14 Jul 2016 16:23:43 GMT
37
+ X-Total-Count:
38
+ - '1'
39
+ Connection:
40
+ - keep-alive
41
+ Content-Type:
42
+ - application/json
43
+ Content-Length:
44
+ - '517'
45
+ Link:
46
+ - <http://localhost:8080/hawkular/inventory/traversal/f;<%= feed_uuid %>/rt;WildFly%20Server/rl;defines/type=r>;
47
+ rel="current"
48
+ body:
49
+ encoding: UTF-8
50
+ string: |-
51
+ [ {
52
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~",
53
+ "properties" : {
54
+ "__identityHash" : "8f7077c6fd492ab39991ce1f7d168a0565fd9e5"
55
+ },
56
+ "name" : "WildFly Server [Local]",
57
+ "identityHash" : "8f7077c6fd492ab39991ce1f7d168a0565fd9e5",
58
+ "type" : {
59
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;WildFly%20Server",
60
+ "name" : "WildFly Server",
61
+ "identityHash" : "617542c89b86e3ce52b819c1deae7ca37cf7851",
62
+ "id" : "WildFly Server"
63
+ },
64
+ "id" : "Local~~"
65
+ } ]
66
+ http_version:
67
+ recorded_at: Thu, 14 Jul 2016 16:23:43 GMT
68
+ - request:
69
+ method: get
70
+ uri: http://jdoe:<%= super_secret_password %>@localhost:8080/hawkular/inventory/traversal/f;<%= feed_uuid %>/r;Local~~/recursive;over=isParentOf;type=r
71
+ body:
72
+ encoding: US-ASCII
73
+ string: ''
74
+ headers:
75
+ Accept:
76
+ - application/json
77
+ Accept-Encoding:
78
+ - identity
79
+ User-Agent:
80
+ - hawkular-client-ruby
81
+ Hawkular-Tenant:
82
+ - hawkular
83
+ Content-Type:
84
+ - application/json
85
+ response:
86
+ status:
87
+ code: 200
88
+ message: OK
89
+ headers:
90
+ Expires:
91
+ - '0'
92
+ Cache-Control:
93
+ - no-cache, no-store, must-revalidate
94
+ X-Powered-By:
95
+ - Undertow/1
96
+ Server:
97
+ - WildFly/10
98
+ Pragma:
99
+ - no-cache
100
+ Date:
101
+ - Thu, 14 Jul 2016 16:23:43 GMT
102
+ X-Total-Count:
103
+ - '70'
104
+ Connection:
105
+ - keep-alive
106
+ Transfer-Encoding:
107
+ - chunked
108
+ Content-Type:
109
+ - application/json
110
+ Link:
111
+ - <http://localhost:8080/hawkular/inventory/traversal/f;<%= feed_uuid %>/r;Local~~/recursive;over=isParentOf;type=r>;
112
+ rel="current"
113
+ body:
114
+ encoding: UTF-8
115
+ string: |-
116
+ [ {
117
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Ddatasources%2Fdata-source%3DExampleDS",
118
+ "properties" : {
119
+ "__identityHash" : "e5bba7c6c22ec4591bff4532ca14e989d1498c4"
120
+ },
121
+ "name" : "Datasource [ExampleDS]",
122
+ "identityHash" : "e5bba7c6c22ec4591bff4532ca14e989d1498c4",
123
+ "type" : {
124
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Datasource",
125
+ "name" : "Datasource",
126
+ "identityHash" : "b3291af08b396960f425871b493b6d9ee97e339f",
127
+ "id" : "Datasource"
128
+ },
129
+ "id" : "Local~/subsystem=datasources/data-source=ExampleDS"
130
+ }, {
131
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Ddatasources%2Fjdbc-driver%3Dh2",
132
+ "properties" : {
133
+ "__identityHash" : "8552bea1e08fc66573fff8b1a3645fb845a107d"
134
+ },
135
+ "name" : "JDBC Driver [h2]",
136
+ "identityHash" : "8552bea1e08fc66573fff8b1a3645fb845a107d",
137
+ "type" : {
138
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;JDBC%20Driver",
139
+ "name" : "JDBC Driver",
140
+ "identityHash" : "f9eaf22c8dff1416a34eb4d26a4bc6a99c46af2",
141
+ "id" : "JDBC Driver"
142
+ },
143
+ "id" : "Local~/subsystem=datasources/jdbc-driver=h2"
144
+ }, {
145
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-command-gateway-war.war",
146
+ "properties" : {
147
+ "__identityHash" : "145efc8c7d6ce8c93167dd4956a3c1cbc6d0d1a"
148
+ },
149
+ "name" : "Deployment [hawkular-command-gateway-war.war]",
150
+ "identityHash" : "145efc8c7d6ce8c93167dd4956a3c1cbc6d0d1a",
151
+ "type" : {
152
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Deployment",
153
+ "name" : "Deployment",
154
+ "identityHash" : "183e79e0462c1f2fc866ba71f5db64c477b5dc",
155
+ "id" : "Deployment"
156
+ },
157
+ "id" : "Local~/deployment=hawkular-command-gateway-war.war"
158
+ }, {
159
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-metrics-component.war",
160
+ "properties" : {
161
+ "__identityHash" : "eff2441b1d32b22a2428bec8fe59452ef5711e"
162
+ },
163
+ "name" : "Deployment [hawkular-metrics-component.war]",
164
+ "identityHash" : "eff2441b1d32b22a2428bec8fe59452ef5711e",
165
+ "type" : {
166
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Deployment",
167
+ "name" : "Deployment",
168
+ "identityHash" : "183e79e0462c1f2fc866ba71f5db64c477b5dc",
169
+ "id" : "Deployment"
170
+ },
171
+ "id" : "Local~/deployment=hawkular-metrics-component.war"
172
+ }, {
173
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war",
174
+ "properties" : {
175
+ "__identityHash" : "f07118ef62f45788dba5d01a38b13fe33115785e"
176
+ },
177
+ "name" : "Deployment [hawkular-alerts-actions-email.war]",
178
+ "identityHash" : "f07118ef62f45788dba5d01a38b13fe33115785e",
179
+ "type" : {
180
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Deployment",
181
+ "name" : "Deployment",
182
+ "identityHash" : "183e79e0462c1f2fc866ba71f5db64c477b5dc",
183
+ "id" : "Deployment"
184
+ },
185
+ "id" : "Local~/deployment=hawkular-alerts-actions-email.war"
186
+ }, {
187
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-wildfly-agent-download.war",
188
+ "properties" : {
189
+ "__identityHash" : "10181e9ef78b953ed93eb67f0d270de8dd5cce4"
190
+ },
191
+ "name" : "Deployment [hawkular-wildfly-agent-download.war]",
192
+ "identityHash" : "10181e9ef78b953ed93eb67f0d270de8dd5cce4",
193
+ "type" : {
194
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Deployment",
195
+ "name" : "Deployment",
196
+ "identityHash" : "183e79e0462c1f2fc866ba71f5db64c477b5dc",
197
+ "id" : "Deployment"
198
+ },
199
+ "id" : "Local~/deployment=hawkular-wildfly-agent-download.war"
200
+ }, {
201
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-inventory-dist.war",
202
+ "properties" : {
203
+ "__identityHash" : "fe13b87cf8edfcd191a6d5169c3f376ac6b5d6"
204
+ },
205
+ "name" : "Deployment [hawkular-inventory-dist.war]",
206
+ "identityHash" : "fe13b87cf8edfcd191a6d5169c3f376ac6b5d6",
207
+ "type" : {
208
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Deployment",
209
+ "name" : "Deployment",
210
+ "identityHash" : "183e79e0462c1f2fc866ba71f5db64c477b5dc",
211
+ "id" : "Deployment"
212
+ },
213
+ "id" : "Local~/deployment=hawkular-inventory-dist.war"
214
+ }, {
215
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war",
216
+ "properties" : {
217
+ "__identityHash" : "3fbe2fcdf21d9886257438b2aeb957825d6ffe"
218
+ },
219
+ "name" : "Deployment [hawkular-alerts-rest.war]",
220
+ "identityHash" : "3fbe2fcdf21d9886257438b2aeb957825d6ffe",
221
+ "type" : {
222
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Deployment",
223
+ "name" : "Deployment",
224
+ "identityHash" : "183e79e0462c1f2fc866ba71f5db64c477b5dc",
225
+ "id" : "Deployment"
226
+ },
227
+ "id" : "Local~/deployment=hawkular-alerts-rest.war"
228
+ }, {
229
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-rest-api.war",
230
+ "properties" : {
231
+ "__identityHash" : "d99ddc62fe9a955b3bc7a309f761f763f527516"
232
+ },
233
+ "name" : "Deployment [hawkular-rest-api.war]",
234
+ "identityHash" : "d99ddc62fe9a955b3bc7a309f761f763f527516",
235
+ "type" : {
236
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Deployment",
237
+ "name" : "Deployment",
238
+ "identityHash" : "183e79e0462c1f2fc866ba71f5db64c477b5dc",
239
+ "id" : "Deployment"
240
+ },
241
+ "id" : "Local~/deployment=hawkular-rest-api.war"
242
+ }, {
243
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dtransactions",
244
+ "properties" : {
245
+ "__identityHash" : "a3c9e6acf121df96fea6e5fcca9e846d8c9622"
246
+ },
247
+ "name" : "Transaction Manager",
248
+ "identityHash" : "a3c9e6acf121df96fea6e5fcca9e846d8c9622",
249
+ "type" : {
250
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Transaction%20Manager",
251
+ "name" : "Transaction Manager",
252
+ "identityHash" : "2c82df7330b7ae48c43ae5413f9b8857f24a85f",
253
+ "id" : "Transaction Manager"
254
+ },
255
+ "id" : "Local~/subsystem=transactions"
256
+ }, {
257
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault",
258
+ "properties" : {
259
+ "__identityHash" : "974ff756ed785e2264577211c2bb843e27c991f"
260
+ },
261
+ "name" : "Messaging Server [default]",
262
+ "identityHash" : "974ff756ed785e2264577211c2bb843e27c991f",
263
+ "type" : {
264
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Messaging%20Server",
265
+ "name" : "Messaging Server",
266
+ "identityHash" : "c21e2c4be8b952d760ef3929652e304bd951ac4e",
267
+ "id" : "Messaging Server"
268
+ },
269
+ "id" : "Local~/subsystem=messaging-activemq/server=default"
270
+ }, {
271
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dhawkular-wildfly-agent",
272
+ "properties" : {
273
+ "__identityHash" : "d9c07665258f43c5b0204259d342c8cb16f3ac"
274
+ },
275
+ "name" : "Hawkular WildFly Agent",
276
+ "identityHash" : "d9c07665258f43c5b0204259d342c8cb16f3ac",
277
+ "type" : {
278
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Hawkular%20WildFly%20Agent",
279
+ "name" : "Hawkular WildFly Agent",
280
+ "identityHash" : "1d7fbc312f708afc4643812f2772e7aabf283328",
281
+ "id" : "Hawkular WildFly Agent"
282
+ },
283
+ "id" : "Local~/subsystem=hawkular-wildfly-agent"
284
+ }, {
285
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsocket-binding-group%3Dstandard-sockets",
286
+ "properties" : {
287
+ "__identityHash" : "46dd1eae29f56639b947a9a85ef7c5833ec324"
288
+ },
289
+ "name" : "Socket Binding Group [standard-sockets]",
290
+ "identityHash" : "46dd1eae29f56639b947a9a85ef7c5833ec324",
291
+ "type" : {
292
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Socket%20Binding%20Group",
293
+ "name" : "Socket Binding Group",
294
+ "identityHash" : "689259496c606a774ff8d4288893cf656230642d",
295
+ "id" : "Socket Binding Group"
296
+ },
297
+ "id" : "Local~/socket-binding-group=standard-sockets"
298
+ }, {
299
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dinfinispan",
300
+ "properties" : {
301
+ "__identityHash" : "693fc87bc7a8fba877b299f333f86b67ff644a3c"
302
+ },
303
+ "name" : "Infinispan",
304
+ "identityHash" : "693fc87bc7a8fba877b299f333f86b67ff644a3c",
305
+ "type" : {
306
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Infinispan",
307
+ "name" : "Infinispan",
308
+ "identityHash" : "a02a9a0121b9fe564ef869e72765e7f1c56b2a",
309
+ "id" : "Infinispan"
310
+ },
311
+ "id" : "Local~/subsystem=infinispan"
312
+ }, {
313
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-metrics-component.war/r;Local~%2Fdeployment%3Dhawkular-metrics-component.war%2Fsubsystem%3Dundertow%2Fservlet%3Dorg.hawkular.metrics.api.jaxrs.HawkularMetricsRestApp",
314
+ "properties" : {
315
+ "__identityHash" : "d1cdb14aa799d96b23d5ebdbe17e3e6bfe704a"
316
+ },
317
+ "name" : "Servlet [org.hawkular.metrics.api.jaxrs.HawkularMetricsRestApp]",
318
+ "identityHash" : "d1cdb14aa799d96b23d5ebdbe17e3e6bfe704a",
319
+ "type" : {
320
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Servlet",
321
+ "name" : "Servlet",
322
+ "identityHash" : "d844da746834ebfc4aa7782c94eeaea85b4abb74",
323
+ "id" : "Servlet"
324
+ },
325
+ "id" : "Local~/deployment=hawkular-metrics-component.war/subsystem=undertow/servlet=org.hawkular.metrics.api.jaxrs.HawkularMetricsRestApp"
326
+ }, {
327
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-metrics-component.war/r;Local~%2Fdeployment%3Dhawkular-metrics-component.war%2Fsubsystem%3Dundertow%2Fservlet%3DstaticContent",
328
+ "properties" : {
329
+ "__identityHash" : "23a66eb197b5d399ddda72b1649486bb9a1cdb77"
330
+ },
331
+ "name" : "Servlet [staticContent]",
332
+ "identityHash" : "23a66eb197b5d399ddda72b1649486bb9a1cdb77",
333
+ "type" : {
334
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Servlet",
335
+ "name" : "Servlet",
336
+ "identityHash" : "d844da746834ebfc4aa7782c94eeaea85b4abb74",
337
+ "id" : "Servlet"
338
+ },
339
+ "id" : "Local~/deployment=hawkular-metrics-component.war/subsystem=undertow/servlet=staticContent"
340
+ }, {
341
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war%2Fsubsystem%3Dejb3%2Fsingleton-bean%3DBusActionPluginRegister",
342
+ "properties" : {
343
+ "__identityHash" : "a18ee545f225242a98609fe1fab101f05c669"
344
+ },
345
+ "name" : "Singleton EJB [BusActionPluginRegister]",
346
+ "identityHash" : "a18ee545f225242a98609fe1fab101f05c669",
347
+ "type" : {
348
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Singleton%20EJB",
349
+ "name" : "Singleton EJB",
350
+ "identityHash" : "42f0638e5e8e266d17d2f7e95f35313e96fa9b39",
351
+ "id" : "Singleton EJB"
352
+ },
353
+ "id" : "Local~/deployment=hawkular-alerts-actions-email.war/subsystem=ejb3/singleton-bean=BusActionPluginRegister"
354
+ }, {
355
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war%2Fsubsystem%3Dejb3%2Fmessage-driven-bean%3DBusActionPluginListener",
356
+ "properties" : {
357
+ "__identityHash" : "1bb1ceea6f132b1555bd17c2a3a4e5ba6ea819f3"
358
+ },
359
+ "name" : "Message Driven EJB [BusActionPluginListener]",
360
+ "identityHash" : "1bb1ceea6f132b1555bd17c2a3a4e5ba6ea819f3",
361
+ "type" : {
362
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Message%20Driven%20EJB",
363
+ "name" : "Message Driven EJB",
364
+ "identityHash" : "2eee38e96ef09ab44422a49bc5a8623596a34bc",
365
+ "id" : "Message Driven EJB"
366
+ },
367
+ "id" : "Local~/deployment=hawkular-alerts-actions-email.war/subsystem=ejb3/message-driven-bean=BusActionPluginListener"
368
+ }, {
369
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-wildfly-agent-download.war/r;Local~%2Fdeployment%3Dhawkular-wildfly-agent-download.war%2Fsubsystem%3Dundertow%2Fservlet%3Dorg.hawkular.component.wildflymonitor.WildFlyAgentServlet",
370
+ "properties" : {
371
+ "__identityHash" : "b4429a849abd8f89e3b51e5127c9e5ba2263cfec"
372
+ },
373
+ "name" : "Servlet [org.hawkular.component.wildflymonitor.WildFlyAgentServlet]",
374
+ "identityHash" : "b4429a849abd8f89e3b51e5127c9e5ba2263cfec",
375
+ "type" : {
376
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Servlet",
377
+ "name" : "Servlet",
378
+ "identityHash" : "d844da746834ebfc4aa7782c94eeaea85b4abb74",
379
+ "id" : "Servlet"
380
+ },
381
+ "id" : "Local~/deployment=hawkular-wildfly-agent-download.war/subsystem=undertow/servlet=org.hawkular.component.wildflymonitor.WildFlyAgentServlet"
382
+ }, {
383
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-inventory-dist.war/r;Local~%2Fdeployment%3Dhawkular-inventory-dist.war%2Fsubsystem%3Dundertow%2Fservlet%3Dorg.hawkular.inventory.rest.HawkularRestApi",
384
+ "properties" : {
385
+ "__identityHash" : "5c48dfbd60d4365421efbf7f3d43e6d7c4a8cf39"
386
+ },
387
+ "name" : "Servlet [org.hawkular.inventory.rest.HawkularRestApi]",
388
+ "identityHash" : "5c48dfbd60d4365421efbf7f3d43e6d7c4a8cf39",
389
+ "type" : {
390
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Servlet",
391
+ "name" : "Servlet",
392
+ "identityHash" : "d844da746834ebfc4aa7782c94eeaea85b4abb74",
393
+ "id" : "Servlet"
394
+ },
395
+ "id" : "Local~/deployment=hawkular-inventory-dist.war/subsystem=undertow/servlet=org.hawkular.inventory.rest.HawkularRestApi"
396
+ }, {
397
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-inventory-dist.war/r;Local~%2Fdeployment%3Dhawkular-inventory-dist.war%2Fsubsystem%3Dejb3%2Fsingleton-bean%3DInventoryJNDIPublisher",
398
+ "properties" : {
399
+ "__identityHash" : "cd9e5b7956015aef0235b49bcf66166b0d8b3e"
400
+ },
401
+ "name" : "Singleton EJB [InventoryJNDIPublisher]",
402
+ "identityHash" : "cd9e5b7956015aef0235b49bcf66166b0d8b3e",
403
+ "type" : {
404
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Singleton%20EJB",
405
+ "name" : "Singleton EJB",
406
+ "identityHash" : "42f0638e5e8e266d17d2f7e95f35313e96fa9b39",
407
+ "id" : "Singleton EJB"
408
+ },
409
+ "id" : "Local~/deployment=hawkular-inventory-dist.war/subsystem=ejb3/singleton-bean=InventoryJNDIPublisher"
410
+ }, {
411
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dundertow%2Fservlet%3Dorg.hawkular.alerts.rest.HawkularAlertsApp",
412
+ "properties" : {
413
+ "__identityHash" : "24b162cb15d397991f3bff5c4fbde9dc06fe831"
414
+ },
415
+ "name" : "Servlet [org.hawkular.alerts.rest.HawkularAlertsApp]",
416
+ "identityHash" : "24b162cb15d397991f3bff5c4fbde9dc06fe831",
417
+ "type" : {
418
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Servlet",
419
+ "name" : "Servlet",
420
+ "identityHash" : "d844da746834ebfc4aa7782c94eeaea85b4abb74",
421
+ "id" : "Servlet"
422
+ },
423
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=undertow/servlet=org.hawkular.alerts.rest.HawkularAlertsApp"
424
+ }, {
425
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fsingleton-bean%3DDataDrivenGroupCacheManager",
426
+ "properties" : {
427
+ "__identityHash" : "b685b17363ba1d846c594c92fee833784ec936"
428
+ },
429
+ "name" : "Singleton EJB [DataDrivenGroupCacheManager]",
430
+ "identityHash" : "b685b17363ba1d846c594c92fee833784ec936",
431
+ "type" : {
432
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Singleton%20EJB",
433
+ "name" : "Singleton EJB",
434
+ "identityHash" : "42f0638e5e8e266d17d2f7e95f35313e96fa9b39",
435
+ "id" : "Singleton EJB"
436
+ },
437
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/singleton-bean=DataDrivenGroupCacheManager"
438
+ }, {
439
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fsingleton-bean%3DDroolsRulesEngineImpl",
440
+ "properties" : {
441
+ "__identityHash" : "87b0777a22869e4cba0b4beb419b7d54b669e"
442
+ },
443
+ "name" : "Singleton EJB [DroolsRulesEngineImpl]",
444
+ "identityHash" : "87b0777a22869e4cba0b4beb419b7d54b669e",
445
+ "type" : {
446
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Singleton%20EJB",
447
+ "name" : "Singleton EJB",
448
+ "identityHash" : "42f0638e5e8e266d17d2f7e95f35313e96fa9b39",
449
+ "id" : "Singleton EJB"
450
+ },
451
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/singleton-bean=DroolsRulesEngineImpl"
452
+ }, {
453
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fsingleton-bean%3DAlertsEngineImpl",
454
+ "properties" : {
455
+ "__identityHash" : "a298605e717d937f7d89f5428f8ae2b62591302e"
456
+ },
457
+ "name" : "Singleton EJB [AlertsEngineImpl]",
458
+ "identityHash" : "a298605e717d937f7d89f5428f8ae2b62591302e",
459
+ "type" : {
460
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Singleton%20EJB",
461
+ "name" : "Singleton EJB",
462
+ "identityHash" : "42f0638e5e8e266d17d2f7e95f35313e96fa9b39",
463
+ "id" : "Singleton EJB"
464
+ },
465
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/singleton-bean=AlertsEngineImpl"
466
+ }, {
467
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fsingleton-bean%3DAlertsContext",
468
+ "properties" : {
469
+ "__identityHash" : "cf5906db6cd2ba82a1ed4b8dee075b5b95c4f0"
470
+ },
471
+ "name" : "Singleton EJB [AlertsContext]",
472
+ "identityHash" : "cf5906db6cd2ba82a1ed4b8dee075b5b95c4f0",
473
+ "type" : {
474
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Singleton%20EJB",
475
+ "name" : "Singleton EJB",
476
+ "identityHash" : "42f0638e5e8e266d17d2f7e95f35313e96fa9b39",
477
+ "id" : "Singleton EJB"
478
+ },
479
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/singleton-bean=AlertsContext"
480
+ }, {
481
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fsingleton-bean%3DPartitionManagerImpl",
482
+ "properties" : {
483
+ "__identityHash" : "277c3efec758f81bb5ecc6d05ad266bac945910"
484
+ },
485
+ "name" : "Singleton EJB [PartitionManagerImpl]",
486
+ "identityHash" : "277c3efec758f81bb5ecc6d05ad266bac945910",
487
+ "type" : {
488
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Singleton%20EJB",
489
+ "name" : "Singleton EJB",
490
+ "identityHash" : "42f0638e5e8e266d17d2f7e95f35313e96fa9b39",
491
+ "id" : "Singleton EJB"
492
+ },
493
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/singleton-bean=PartitionManagerImpl"
494
+ }, {
495
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fsingleton-bean%3DAlertEngineRegister",
496
+ "properties" : {
497
+ "__identityHash" : "c92ab44b3dbfd88e34ed2e55ca37d253b286ce"
498
+ },
499
+ "name" : "Singleton EJB [AlertEngineRegister]",
500
+ "identityHash" : "c92ab44b3dbfd88e34ed2e55ca37d253b286ce",
501
+ "type" : {
502
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Singleton%20EJB",
503
+ "name" : "Singleton EJB",
504
+ "identityHash" : "42f0638e5e8e266d17d2f7e95f35313e96fa9b39",
505
+ "id" : "Singleton EJB"
506
+ },
507
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/singleton-bean=AlertEngineRegister"
508
+ }, {
509
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fsingleton-bean%3DCacheManager",
510
+ "properties" : {
511
+ "__identityHash" : "c2e26dc063921a2ce4d7bebc8bd811298835bfca"
512
+ },
513
+ "name" : "Singleton EJB [CacheManager]",
514
+ "identityHash" : "c2e26dc063921a2ce4d7bebc8bd811298835bfca",
515
+ "type" : {
516
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Singleton%20EJB",
517
+ "name" : "Singleton EJB",
518
+ "identityHash" : "42f0638e5e8e266d17d2f7e95f35313e96fa9b39",
519
+ "id" : "Singleton EJB"
520
+ },
521
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/singleton-bean=CacheManager"
522
+ }, {
523
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fmessage-driven-bean%3DAlertDataListener",
524
+ "properties" : {
525
+ "__identityHash" : "bfa29a8d9d16b8d7a4a89c42c52082954075"
526
+ },
527
+ "name" : "Message Driven EJB [AlertDataListener]",
528
+ "identityHash" : "bfa29a8d9d16b8d7a4a89c42c52082954075",
529
+ "type" : {
530
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Message%20Driven%20EJB",
531
+ "name" : "Message Driven EJB",
532
+ "identityHash" : "2eee38e96ef09ab44422a49bc5a8623596a34bc",
533
+ "id" : "Message Driven EJB"
534
+ },
535
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/message-driven-bean=AlertDataListener"
536
+ }, {
537
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fmessage-driven-bean%3DAvailDataListener",
538
+ "properties" : {
539
+ "__identityHash" : "2099d89782ae92b9f4c63f7646b152647a08d"
540
+ },
541
+ "name" : "Message Driven EJB [AvailDataListener]",
542
+ "identityHash" : "2099d89782ae92b9f4c63f7646b152647a08d",
543
+ "type" : {
544
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Message%20Driven%20EJB",
545
+ "name" : "Message Driven EJB",
546
+ "identityHash" : "2eee38e96ef09ab44422a49bc5a8623596a34bc",
547
+ "id" : "Message Driven EJB"
548
+ },
549
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/message-driven-bean=AvailDataListener"
550
+ }, {
551
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fmessage-driven-bean%3DActionPluginRegistrationListener",
552
+ "properties" : {
553
+ "__identityHash" : "5ca93bfad34c31eb89deee8fc54013a84edbbcc9"
554
+ },
555
+ "name" : "Message Driven EJB [ActionPluginRegistrationListener]",
556
+ "identityHash" : "5ca93bfad34c31eb89deee8fc54013a84edbbcc9",
557
+ "type" : {
558
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Message%20Driven%20EJB",
559
+ "name" : "Message Driven EJB",
560
+ "identityHash" : "2eee38e96ef09ab44422a49bc5a8623596a34bc",
561
+ "id" : "Message Driven EJB"
562
+ },
563
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/message-driven-bean=ActionPluginRegistrationListener"
564
+ }, {
565
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fmessage-driven-bean%3DActionPluginResponsesListener",
566
+ "properties" : {
567
+ "__identityHash" : "f3b1ee57c4f7c98070d3149f3e96e5d4b3fbe5b2"
568
+ },
569
+ "name" : "Message Driven EJB [ActionPluginResponsesListener]",
570
+ "identityHash" : "f3b1ee57c4f7c98070d3149f3e96e5d4b3fbe5b2",
571
+ "type" : {
572
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Message%20Driven%20EJB",
573
+ "name" : "Message Driven EJB",
574
+ "identityHash" : "2eee38e96ef09ab44422a49bc5a8623596a34bc",
575
+ "id" : "Message Driven EJB"
576
+ },
577
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/message-driven-bean=ActionPluginResponsesListener"
578
+ }, {
579
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fmessage-driven-bean%3DMetricDataListener",
580
+ "properties" : {
581
+ "__identityHash" : "2457289bfff6567aae47d4e297c8d671393c57a6"
582
+ },
583
+ "name" : "Message Driven EJB [MetricDataListener]",
584
+ "identityHash" : "2457289bfff6567aae47d4e297c8d671393c57a6",
585
+ "type" : {
586
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Message%20Driven%20EJB",
587
+ "name" : "Message Driven EJB",
588
+ "identityHash" : "2eee38e96ef09ab44422a49bc5a8623596a34bc",
589
+ "id" : "Message Driven EJB"
590
+ },
591
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/message-driven-bean=MetricDataListener"
592
+ }, {
593
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fstateless-session-bean%3DCassAlertsServiceImpl",
594
+ "properties" : {
595
+ "__identityHash" : "5bed7a82f525b5c5018afce2cae4ef345648a"
596
+ },
597
+ "name" : "Stateless Session EJB [CassAlertsServiceImpl]",
598
+ "identityHash" : "5bed7a82f525b5c5018afce2cae4ef345648a",
599
+ "type" : {
600
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Stateless%20Session%20EJB",
601
+ "name" : "Stateless Session EJB",
602
+ "identityHash" : "8db06fc15c4b85fdfc5843944dde9594652a634",
603
+ "id" : "Stateless Session EJB"
604
+ },
605
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/stateless-session-bean=CassAlertsServiceImpl"
606
+ }, {
607
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fstateless-session-bean%3DCassActionsServiceImpl",
608
+ "properties" : {
609
+ "__identityHash" : "a45c85aef9bc94535b6afea0c09e11e6321aea2"
610
+ },
611
+ "name" : "Stateless Session EJB [CassActionsServiceImpl]",
612
+ "identityHash" : "a45c85aef9bc94535b6afea0c09e11e6321aea2",
613
+ "type" : {
614
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Stateless%20Session%20EJB",
615
+ "name" : "Stateless Session EJB",
616
+ "identityHash" : "8db06fc15c4b85fdfc5843944dde9594652a634",
617
+ "id" : "Stateless Session EJB"
618
+ },
619
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/stateless-session-bean=CassActionsServiceImpl"
620
+ }, {
621
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war%2Fsubsystem%3Dejb3%2Fstateless-session-bean%3DCassDefinitionsServiceImpl",
622
+ "properties" : {
623
+ "__identityHash" : "7139992b26a2c5d0cdeda6d8a35d64435dfdba"
624
+ },
625
+ "name" : "Stateless Session EJB [CassDefinitionsServiceImpl]",
626
+ "identityHash" : "7139992b26a2c5d0cdeda6d8a35d64435dfdba",
627
+ "type" : {
628
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Stateless%20Session%20EJB",
629
+ "name" : "Stateless Session EJB",
630
+ "identityHash" : "8db06fc15c4b85fdfc5843944dde9594652a634",
631
+ "id" : "Stateless Session EJB"
632
+ },
633
+ "id" : "Local~/deployment=hawkular-alerts-rest.war/subsystem=ejb3/stateless-session-bean=CassDefinitionsServiceImpl"
634
+ }, {
635
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-rest-api.war/r;Local~%2Fdeployment%3Dhawkular-rest-api.war%2Fsubsystem%3Dundertow%2Fservlet%3DHystrixMetricsStreamServlet",
636
+ "properties" : {
637
+ "__identityHash" : "da8e714d9fd8f6b64e58ade5de32689d95bc026"
638
+ },
639
+ "name" : "Servlet [HystrixMetricsStreamServlet]",
640
+ "identityHash" : "da8e714d9fd8f6b64e58ade5de32689d95bc026",
641
+ "type" : {
642
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Servlet",
643
+ "name" : "Servlet",
644
+ "identityHash" : "d844da746834ebfc4aa7782c94eeaea85b4abb74",
645
+ "id" : "Servlet"
646
+ },
647
+ "id" : "Local~/deployment=hawkular-rest-api.war/subsystem=undertow/servlet=HystrixMetricsStreamServlet"
648
+ }, {
649
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-rest-api.war/r;Local~%2Fdeployment%3Dhawkular-rest-api.war%2Fsubsystem%3Dundertow%2Fservlet%3Dorg.hawkular.rest.HawkularRestApi",
650
+ "properties" : {
651
+ "__identityHash" : "7b8120fbb14029fce19d5894563ae2849ac55359"
652
+ },
653
+ "name" : "Servlet [org.hawkular.rest.HawkularRestApi]",
654
+ "identityHash" : "7b8120fbb14029fce19d5894563ae2849ac55359",
655
+ "type" : {
656
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Servlet",
657
+ "name" : "Servlet",
658
+ "identityHash" : "d844da746834ebfc4aa7782c94eeaea85b4abb74",
659
+ "id" : "Servlet"
660
+ },
661
+ "id" : "Local~/deployment=hawkular-rest-api.war/subsystem=undertow/servlet=org.hawkular.rest.HawkularRestApi"
662
+ }, {
663
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-rest-api.war/r;Local~%2Fdeployment%3Dhawkular-rest-api.war%2Fsubsystem%3Dejb3%2Fsingleton-bean%3DBackfillCacheManager",
664
+ "properties" : {
665
+ "__identityHash" : "94fdaf7749fb67c367fecfa1ffe968461b98fd"
666
+ },
667
+ "name" : "Singleton EJB [BackfillCacheManager]",
668
+ "identityHash" : "94fdaf7749fb67c367fecfa1ffe968461b98fd",
669
+ "type" : {
670
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Singleton%20EJB",
671
+ "name" : "Singleton EJB",
672
+ "identityHash" : "42f0638e5e8e266d17d2f7e95f35313e96fa9b39",
673
+ "id" : "Singleton EJB"
674
+ },
675
+ "id" : "Local~/deployment=hawkular-rest-api.war/subsystem=ejb3/singleton-bean=BackfillCacheManager"
676
+ }, {
677
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-rest-api.war/r;Local~%2Fdeployment%3Dhawkular-rest-api.war%2Fsubsystem%3Dejb3%2Fmessage-driven-bean%3DFeedAvailabilityDataListener",
678
+ "properties" : {
679
+ "__identityHash" : "cadeaa775065e814ff6d810930919f9d97421"
680
+ },
681
+ "name" : "Message Driven EJB [FeedAvailabilityDataListener]",
682
+ "identityHash" : "cadeaa775065e814ff6d810930919f9d97421",
683
+ "type" : {
684
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Message%20Driven%20EJB",
685
+ "name" : "Message Driven EJB",
686
+ "identityHash" : "2eee38e96ef09ab44422a49bc5a8623596a34bc",
687
+ "id" : "Message Driven EJB"
688
+ },
689
+ "id" : "Local~/deployment=hawkular-rest-api.war/subsystem=ejb3/message-driven-bean=FeedAvailabilityDataListener"
690
+ }, {
691
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-rest-api.war/r;Local~%2Fdeployment%3Dhawkular-rest-api.war%2Fsubsystem%3Dejb3%2Fmessage-driven-bean%3DCommandEventListener",
692
+ "properties" : {
693
+ "__identityHash" : "97925e8797f23aa9af5c9a3c382a3a9ddfafa6c"
694
+ },
695
+ "name" : "Message Driven EJB [CommandEventListener]",
696
+ "identityHash" : "97925e8797f23aa9af5c9a3c382a3a9ddfafa6c",
697
+ "type" : {
698
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Message%20Driven%20EJB",
699
+ "name" : "Message Driven EJB",
700
+ "identityHash" : "2eee38e96ef09ab44422a49bc5a8623596a34bc",
701
+ "id" : "Message Driven EJB"
702
+ },
703
+ "id" : "Local~/deployment=hawkular-rest-api.war/subsystem=ejb3/message-driven-bean=CommandEventListener"
704
+ }, {
705
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-rest-api.war/r;Local~%2Fdeployment%3Dhawkular-rest-api.war%2Fsubsystem%3Dejb3%2Fmessage-driven-bean%3DInventoryEventListener",
706
+ "properties" : {
707
+ "__identityHash" : "7978e63ac1c89d3f11a4c56ffe4ff0f3e6b9bc6e"
708
+ },
709
+ "name" : "Message Driven EJB [InventoryEventListener]",
710
+ "identityHash" : "7978e63ac1c89d3f11a4c56ffe4ff0f3e6b9bc6e",
711
+ "type" : {
712
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Message%20Driven%20EJB",
713
+ "name" : "Message Driven EJB",
714
+ "identityHash" : "2eee38e96ef09ab44422a49bc5a8623596a34bc",
715
+ "id" : "Message Driven EJB"
716
+ },
717
+ "id" : "Local~/deployment=hawkular-rest-api.war/subsystem=ejb3/message-driven-bean=InventoryEventListener"
718
+ }, {
719
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault%2Fjms-topic%3DHawkularMetricData",
720
+ "properties" : {
721
+ "__identityHash" : "f8bb403fd83920dca4d7c4e5be2b7c939098e1"
722
+ },
723
+ "name" : "JMS Topic [HawkularMetricData]",
724
+ "identityHash" : "f8bb403fd83920dca4d7c4e5be2b7c939098e1",
725
+ "type" : {
726
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;JMS%20Topic",
727
+ "name" : "JMS Topic",
728
+ "identityHash" : "75c24027bbd562b062152731fd59a0cee80ffa2",
729
+ "id" : "JMS Topic"
730
+ },
731
+ "id" : "Local~/subsystem=messaging-activemq/server=default/jms-topic=HawkularMetricData"
732
+ }, {
733
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault%2Fjms-topic%3DHawkularAlertData",
734
+ "properties" : {
735
+ "__identityHash" : "d650121d124e9b421996392cea4ead2c9df06e"
736
+ },
737
+ "name" : "JMS Topic [HawkularAlertData]",
738
+ "identityHash" : "d650121d124e9b421996392cea4ead2c9df06e",
739
+ "type" : {
740
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;JMS%20Topic",
741
+ "name" : "JMS Topic",
742
+ "identityHash" : "75c24027bbd562b062152731fd59a0cee80ffa2",
743
+ "id" : "JMS Topic"
744
+ },
745
+ "id" : "Local~/subsystem=messaging-activemq/server=default/jms-topic=HawkularAlertData"
746
+ }, {
747
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault%2Fjms-topic%3DHawkularCommandEvent",
748
+ "properties" : {
749
+ "__identityHash" : "7e59e191205e879b885ea3e737945414911335a7"
750
+ },
751
+ "name" : "JMS Topic [HawkularCommandEvent]",
752
+ "identityHash" : "7e59e191205e879b885ea3e737945414911335a7",
753
+ "type" : {
754
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;JMS%20Topic",
755
+ "name" : "JMS Topic",
756
+ "identityHash" : "75c24027bbd562b062152731fd59a0cee80ffa2",
757
+ "id" : "JMS Topic"
758
+ },
759
+ "id" : "Local~/subsystem=messaging-activemq/server=default/jms-topic=HawkularCommandEvent"
760
+ }, {
761
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault%2Fjms-topic%3DHawkularInventoryChanges",
762
+ "properties" : {
763
+ "__identityHash" : "3a60984f31c02b313bb3c0a0edc5a02ddc27348b"
764
+ },
765
+ "name" : "JMS Topic [HawkularInventoryChanges]",
766
+ "identityHash" : "3a60984f31c02b313bb3c0a0edc5a02ddc27348b",
767
+ "type" : {
768
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;JMS%20Topic",
769
+ "name" : "JMS Topic",
770
+ "identityHash" : "75c24027bbd562b062152731fd59a0cee80ffa2",
771
+ "id" : "JMS Topic"
772
+ },
773
+ "id" : "Local~/subsystem=messaging-activemq/server=default/jms-topic=HawkularInventoryChanges"
774
+ }, {
775
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault%2Fjms-topic%3DHawkularAvailData",
776
+ "properties" : {
777
+ "__identityHash" : "4679012cd0149cdb626a58459aaa6818c764a"
778
+ },
779
+ "name" : "JMS Topic [HawkularAvailData]",
780
+ "identityHash" : "4679012cd0149cdb626a58459aaa6818c764a",
781
+ "type" : {
782
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;JMS%20Topic",
783
+ "name" : "JMS Topic",
784
+ "identityHash" : "75c24027bbd562b062152731fd59a0cee80ffa2",
785
+ "id" : "JMS Topic"
786
+ },
787
+ "id" : "Local~/subsystem=messaging-activemq/server=default/jms-topic=HawkularAvailData"
788
+ }, {
789
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault%2Fjms-topic%3DHawkularAlertsActionsTopic",
790
+ "properties" : {
791
+ "__identityHash" : "3fdc26ee9e714a37e73a6d2387c3b71b397d2c71"
792
+ },
793
+ "name" : "JMS Topic [HawkularAlertsActionsTopic]",
794
+ "identityHash" : "3fdc26ee9e714a37e73a6d2387c3b71b397d2c71",
795
+ "type" : {
796
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;JMS%20Topic",
797
+ "name" : "JMS Topic",
798
+ "identityHash" : "75c24027bbd562b062152731fd59a0cee80ffa2",
799
+ "id" : "JMS Topic"
800
+ },
801
+ "id" : "Local~/subsystem=messaging-activemq/server=default/jms-topic=HawkularAlertsActionsTopic"
802
+ }, {
803
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault%2Fjms-queue%3Dhawkular%2Fmetrics%2Favailability%2Fnew",
804
+ "properties" : {
805
+ "__identityHash" : "7a723dba6e393c269494f579993c925c11547b8"
806
+ },
807
+ "name" : "JMS Queue [hawkular/metrics/availability/new]",
808
+ "identityHash" : "7a723dba6e393c269494f579993c925c11547b8",
809
+ "type" : {
810
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;JMS%20Queue",
811
+ "name" : "JMS Queue",
812
+ "identityHash" : "e231d2d4c8c38b428725c32f4e695fad772c1db8",
813
+ "id" : "JMS Queue"
814
+ },
815
+ "id" : "Local~/subsystem=messaging-activemq/server=default/jms-queue=hawkular/metrics/availability/new"
816
+ }, {
817
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault%2Fjms-queue%3DExpiryQueue",
818
+ "properties" : {
819
+ "__identityHash" : "934b90abb1a1d0b02799eefc7fad09b66c07d69"
820
+ },
821
+ "name" : "JMS Queue [ExpiryQueue]",
822
+ "identityHash" : "934b90abb1a1d0b02799eefc7fad09b66c07d69",
823
+ "type" : {
824
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;JMS%20Queue",
825
+ "name" : "JMS Queue",
826
+ "identityHash" : "e231d2d4c8c38b428725c32f4e695fad772c1db8",
827
+ "id" : "JMS Queue"
828
+ },
829
+ "id" : "Local~/subsystem=messaging-activemq/server=default/jms-queue=ExpiryQueue"
830
+ }, {
831
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault%2Fjms-queue%3Dhawkular%2Fmetrics%2Fcounters%2Fnew",
832
+ "properties" : {
833
+ "__identityHash" : "5bacc134564c5effc0727b6d7c29ea9fa52a6"
834
+ },
835
+ "name" : "JMS Queue [hawkular/metrics/counters/new]",
836
+ "identityHash" : "5bacc134564c5effc0727b6d7c29ea9fa52a6",
837
+ "type" : {
838
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;JMS%20Queue",
839
+ "name" : "JMS Queue",
840
+ "identityHash" : "e231d2d4c8c38b428725c32f4e695fad772c1db8",
841
+ "id" : "JMS Queue"
842
+ },
843
+ "id" : "Local~/subsystem=messaging-activemq/server=default/jms-queue=hawkular/metrics/counters/new"
844
+ }, {
845
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault%2Fjms-queue%3DHawkularAlertsActionsResponseQueue",
846
+ "properties" : {
847
+ "__identityHash" : "d0cef07e50b7161c185a5ee8b8e9c3bca7da0"
848
+ },
849
+ "name" : "JMS Queue [HawkularAlertsActionsResponseQueue]",
850
+ "identityHash" : "d0cef07e50b7161c185a5ee8b8e9c3bca7da0",
851
+ "type" : {
852
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;JMS%20Queue",
853
+ "name" : "JMS Queue",
854
+ "identityHash" : "e231d2d4c8c38b428725c32f4e695fad772c1db8",
855
+ "id" : "JMS Queue"
856
+ },
857
+ "id" : "Local~/subsystem=messaging-activemq/server=default/jms-queue=HawkularAlertsActionsResponseQueue"
858
+ }, {
859
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault%2Fjms-queue%3DHawkularAlertsPluginsQueue",
860
+ "properties" : {
861
+ "__identityHash" : "fad75b70ec5773329a3995f1354657b7112486"
862
+ },
863
+ "name" : "JMS Queue [HawkularAlertsPluginsQueue]",
864
+ "identityHash" : "fad75b70ec5773329a3995f1354657b7112486",
865
+ "type" : {
866
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;JMS%20Queue",
867
+ "name" : "JMS Queue",
868
+ "identityHash" : "e231d2d4c8c38b428725c32f4e695fad772c1db8",
869
+ "id" : "JMS Queue"
870
+ },
871
+ "id" : "Local~/subsystem=messaging-activemq/server=default/jms-queue=HawkularAlertsPluginsQueue"
872
+ }, {
873
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault%2Fjms-queue%3DDLQ",
874
+ "properties" : {
875
+ "__identityHash" : "17b3283870368e6536439d7e6cafbb4388c17e84"
876
+ },
877
+ "name" : "JMS Queue [DLQ]",
878
+ "identityHash" : "17b3283870368e6536439d7e6cafbb4388c17e84",
879
+ "type" : {
880
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;JMS%20Queue",
881
+ "name" : "JMS Queue",
882
+ "identityHash" : "e231d2d4c8c38b428725c32f4e695fad772c1db8",
883
+ "id" : "JMS Queue"
884
+ },
885
+ "id" : "Local~/subsystem=messaging-activemq/server=default/jms-queue=DLQ"
886
+ }, {
887
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault%2Fjms-queue%3Dhawkular%2Fmetrics%2Fgauges%2Fnew",
888
+ "properties" : {
889
+ "__identityHash" : "2e8f75c896d51e624fd442c159c314497a944f"
890
+ },
891
+ "name" : "JMS Queue [hawkular/metrics/gauges/new]",
892
+ "identityHash" : "2e8f75c896d51e624fd442c159c314497a944f",
893
+ "type" : {
894
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;JMS%20Queue",
895
+ "name" : "JMS Queue",
896
+ "identityHash" : "e231d2d4c8c38b428725c32f4e695fad772c1db8",
897
+ "id" : "JMS Queue"
898
+ },
899
+ "id" : "Local~/subsystem=messaging-activemq/server=default/jms-queue=hawkular/metrics/gauges/new"
900
+ }, {
901
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsocket-binding-group%3Dstandard-sockets/r;Local~%2Fsocket-binding-group%3Dstandard-sockets%2Fsocket-binding%3Dmanagement-http",
902
+ "properties" : {
903
+ "__identityHash" : "3fa1d71a94aa059ab373e173378e9a58d4bf07f"
904
+ },
905
+ "name" : "Socket Binding [management-http]",
906
+ "identityHash" : "3fa1d71a94aa059ab373e173378e9a58d4bf07f",
907
+ "type" : {
908
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Socket%20Binding",
909
+ "name" : "Socket Binding",
910
+ "identityHash" : "9e8eefdeb8e37da1b2fa96e756b262caeea5",
911
+ "id" : "Socket Binding"
912
+ },
913
+ "id" : "Local~/socket-binding-group=standard-sockets/socket-binding=management-http"
914
+ }, {
915
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsocket-binding-group%3Dstandard-sockets/r;Local~%2Fsocket-binding-group%3Dstandard-sockets%2Fsocket-binding%3Dtxn-status-manager",
916
+ "properties" : {
917
+ "__identityHash" : "2a21c8dcbd12536e769962a4b3991cc7ae1eb93"
918
+ },
919
+ "name" : "Socket Binding [txn-status-manager]",
920
+ "identityHash" : "2a21c8dcbd12536e769962a4b3991cc7ae1eb93",
921
+ "type" : {
922
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Socket%20Binding",
923
+ "name" : "Socket Binding",
924
+ "identityHash" : "9e8eefdeb8e37da1b2fa96e756b262caeea5",
925
+ "id" : "Socket Binding"
926
+ },
927
+ "id" : "Local~/socket-binding-group=standard-sockets/socket-binding=txn-status-manager"
928
+ }, {
929
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsocket-binding-group%3Dstandard-sockets/r;Local~%2Fsocket-binding-group%3Dstandard-sockets%2Fsocket-binding%3Dtxn-recovery-environment",
930
+ "properties" : {
931
+ "__identityHash" : "70b7206848cde63a21e95e12f820b26a4f2f1e59"
932
+ },
933
+ "name" : "Socket Binding [txn-recovery-environment]",
934
+ "identityHash" : "70b7206848cde63a21e95e12f820b26a4f2f1e59",
935
+ "type" : {
936
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Socket%20Binding",
937
+ "name" : "Socket Binding",
938
+ "identityHash" : "9e8eefdeb8e37da1b2fa96e756b262caeea5",
939
+ "id" : "Socket Binding"
940
+ },
941
+ "id" : "Local~/socket-binding-group=standard-sockets/socket-binding=txn-recovery-environment"
942
+ }, {
943
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsocket-binding-group%3Dstandard-sockets/r;Local~%2Fsocket-binding-group%3Dstandard-sockets%2Fsocket-binding%3Dhttp",
944
+ "properties" : {
945
+ "__identityHash" : "8f666b2ff078fb672d56aff59b8d4c24756b5"
946
+ },
947
+ "name" : "Socket Binding [http]",
948
+ "identityHash" : "8f666b2ff078fb672d56aff59b8d4c24756b5",
949
+ "type" : {
950
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Socket%20Binding",
951
+ "name" : "Socket Binding",
952
+ "identityHash" : "9e8eefdeb8e37da1b2fa96e756b262caeea5",
953
+ "id" : "Socket Binding"
954
+ },
955
+ "id" : "Local~/socket-binding-group=standard-sockets/socket-binding=http"
956
+ }, {
957
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsocket-binding-group%3Dstandard-sockets/r;Local~%2Fsocket-binding-group%3Dstandard-sockets%2Fsocket-binding%3Dhttps",
958
+ "properties" : {
959
+ "__identityHash" : "5752639d273d492b853d937c4f78a87e1e83515"
960
+ },
961
+ "name" : "Socket Binding [https]",
962
+ "identityHash" : "5752639d273d492b853d937c4f78a87e1e83515",
963
+ "type" : {
964
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Socket%20Binding",
965
+ "name" : "Socket Binding",
966
+ "identityHash" : "9e8eefdeb8e37da1b2fa96e756b262caeea5",
967
+ "id" : "Socket Binding"
968
+ },
969
+ "id" : "Local~/socket-binding-group=standard-sockets/socket-binding=https"
970
+ }, {
971
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsocket-binding-group%3Dstandard-sockets/r;Local~%2Fsocket-binding-group%3Dstandard-sockets%2Fsocket-binding%3Dmanagement-https",
972
+ "properties" : {
973
+ "__identityHash" : "d37d3d7ce5cda8dc4522f09cec1b7aa355cbead"
974
+ },
975
+ "name" : "Socket Binding [management-https]",
976
+ "identityHash" : "d37d3d7ce5cda8dc4522f09cec1b7aa355cbead",
977
+ "type" : {
978
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Socket%20Binding",
979
+ "name" : "Socket Binding",
980
+ "identityHash" : "9e8eefdeb8e37da1b2fa96e756b262caeea5",
981
+ "id" : "Socket Binding"
982
+ },
983
+ "id" : "Local~/socket-binding-group=standard-sockets/socket-binding=management-https"
984
+ }, {
985
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsocket-binding-group%3Dstandard-sockets/r;Local~%2Fsocket-binding-group%3Dstandard-sockets%2Fsocket-binding%3Dajp",
986
+ "properties" : {
987
+ "__identityHash" : "aaddfaf9a5938ede151ca0f7abe98f3806ad52"
988
+ },
989
+ "name" : "Socket Binding [ajp]",
990
+ "identityHash" : "aaddfaf9a5938ede151ca0f7abe98f3806ad52",
991
+ "type" : {
992
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Socket%20Binding",
993
+ "name" : "Socket Binding",
994
+ "identityHash" : "9e8eefdeb8e37da1b2fa96e756b262caeea5",
995
+ "id" : "Socket Binding"
996
+ },
997
+ "id" : "Local~/socket-binding-group=standard-sockets/socket-binding=ajp"
998
+ }, {
999
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsocket-binding-group%3Dstandard-sockets/r;Local~%2Fsocket-binding-group%3Dstandard-sockets%2Fremote-destination-outbound-socket-binding%3Dmail-smtp",
1000
+ "properties" : {
1001
+ "__identityHash" : "8f5567368a3e0488abed7549f49cdc3b560"
1002
+ },
1003
+ "name" : "Remote Destination Outbound Socket Binding [mail-smtp]",
1004
+ "identityHash" : "8f5567368a3e0488abed7549f49cdc3b560",
1005
+ "type" : {
1006
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Remote%20Destination%20Outbound%20Socket%20Binding",
1007
+ "name" : "Remote Destination Outbound Socket Binding",
1008
+ "identityHash" : "35c9cb7b4ea86e90f10e3fe64c6d14d3456ee96",
1009
+ "id" : "Remote Destination Outbound Socket Binding"
1010
+ },
1011
+ "id" : "Local~/socket-binding-group=standard-sockets/remote-destination-outbound-socket-binding=mail-smtp"
1012
+ }, {
1013
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dinfinispan/r;Local~%2Fsubsystem%3Dinfinispan%2Fcache-container%3Dhawkular-alerts",
1014
+ "properties" : {
1015
+ "__identityHash" : "d06688885afa36228f71a3c7fd8eb9fa873c70"
1016
+ },
1017
+ "name" : "Infinispan Cache Container [hawkular-alerts]",
1018
+ "identityHash" : "d06688885afa36228f71a3c7fd8eb9fa873c70",
1019
+ "type" : {
1020
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Infinispan%20Cache%20Container",
1021
+ "name" : "Infinispan Cache Container",
1022
+ "identityHash" : "53f33112d2fa8726fd7a36b3b09827b874f36c2",
1023
+ "id" : "Infinispan Cache Container"
1024
+ },
1025
+ "id" : "Local~/subsystem=infinispan/cache-container=hawkular-alerts"
1026
+ }, {
1027
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dinfinispan/r;Local~%2Fsubsystem%3Dinfinispan%2Fcache-container%3Dejb",
1028
+ "properties" : {
1029
+ "__identityHash" : "e92f58def1c0e2a128d3f3a4acdd908bc5b15"
1030
+ },
1031
+ "name" : "Infinispan Cache Container [ejb]",
1032
+ "identityHash" : "e92f58def1c0e2a128d3f3a4acdd908bc5b15",
1033
+ "type" : {
1034
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Infinispan%20Cache%20Container",
1035
+ "name" : "Infinispan Cache Container",
1036
+ "identityHash" : "53f33112d2fa8726fd7a36b3b09827b874f36c2",
1037
+ "id" : "Infinispan Cache Container"
1038
+ },
1039
+ "id" : "Local~/subsystem=infinispan/cache-container=ejb"
1040
+ }, {
1041
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dinfinispan/r;Local~%2Fsubsystem%3Dinfinispan%2Fcache-container%3Dhibernate",
1042
+ "properties" : {
1043
+ "__identityHash" : "37e17699f3722f7f94c5bd15b2657d318edfe7dd"
1044
+ },
1045
+ "name" : "Infinispan Cache Container [hibernate]",
1046
+ "identityHash" : "37e17699f3722f7f94c5bd15b2657d318edfe7dd",
1047
+ "type" : {
1048
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Infinispan%20Cache%20Container",
1049
+ "name" : "Infinispan Cache Container",
1050
+ "identityHash" : "53f33112d2fa8726fd7a36b3b09827b874f36c2",
1051
+ "id" : "Infinispan Cache Container"
1052
+ },
1053
+ "id" : "Local~/subsystem=infinispan/cache-container=hibernate"
1054
+ }, {
1055
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dinfinispan/r;Local~%2Fsubsystem%3Dinfinispan%2Fcache-container%3Dhawkular-services",
1056
+ "properties" : {
1057
+ "__identityHash" : "33b6d348bc7895124254c14a5a8121d64775b1"
1058
+ },
1059
+ "name" : "Infinispan Cache Container [hawkular-services]",
1060
+ "identityHash" : "33b6d348bc7895124254c14a5a8121d64775b1",
1061
+ "type" : {
1062
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Infinispan%20Cache%20Container",
1063
+ "name" : "Infinispan Cache Container",
1064
+ "identityHash" : "53f33112d2fa8726fd7a36b3b09827b874f36c2",
1065
+ "id" : "Infinispan Cache Container"
1066
+ },
1067
+ "id" : "Local~/subsystem=infinispan/cache-container=hawkular-services"
1068
+ }, {
1069
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dinfinispan/r;Local~%2Fsubsystem%3Dinfinispan%2Fcache-container%3Dweb",
1070
+ "properties" : {
1071
+ "__identityHash" : "a1b2ad66fecda4f367bb4bee4579dd9e55a65fc"
1072
+ },
1073
+ "name" : "Infinispan Cache Container [web]",
1074
+ "identityHash" : "a1b2ad66fecda4f367bb4bee4579dd9e55a65fc",
1075
+ "type" : {
1076
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Infinispan%20Cache%20Container",
1077
+ "name" : "Infinispan Cache Container",
1078
+ "identityHash" : "53f33112d2fa8726fd7a36b3b09827b874f36c2",
1079
+ "id" : "Infinispan Cache Container"
1080
+ },
1081
+ "id" : "Local~/subsystem=infinispan/cache-container=web"
1082
+ }, {
1083
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dinfinispan/r;Local~%2Fsubsystem%3Dinfinispan%2Fcache-container%3Dserver",
1084
+ "properties" : {
1085
+ "__identityHash" : "58bbf4a7cf3daff46f22d986de456f38f9c8b771"
1086
+ },
1087
+ "name" : "Infinispan Cache Container [server]",
1088
+ "identityHash" : "58bbf4a7cf3daff46f22d986de456f38f9c8b771",
1089
+ "type" : {
1090
+ "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;Infinispan%20Cache%20Container",
1091
+ "name" : "Infinispan Cache Container",
1092
+ "identityHash" : "53f33112d2fa8726fd7a36b3b09827b874f36c2",
1093
+ "id" : "Infinispan Cache Container"
1094
+ },
1095
+ "id" : "Local~/subsystem=infinispan/cache-container=server"
1096
+ } ]
1097
+ http_version:
1098
+ recorded_at: Thu, 14 Jul 2016 16:23:43 GMT
1099
+ recorded_with: VCR 3.0.1