hawkular-client 0.2.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +3 -0
  3. data/.yardopts +1 -0
  4. data/CHANGES.rdoc +17 -4
  5. data/README.rdoc +15 -6
  6. data/api_breaking_changes.rdoc +79 -0
  7. data/hawkularclient.gemspec +6 -5
  8. data/lib/{alerts → hawkular/alerts}/alerts_api.rb +168 -7
  9. data/lib/{hawkular.rb → hawkular/base_client.rb} +7 -44
  10. data/lib/hawkular/hawkular_client.rb +60 -0
  11. data/lib/hawkular/hawkular_client_utils.rb +40 -0
  12. data/lib/{inventory → hawkular/inventory}/inventory_api.rb +167 -142
  13. data/lib/{metrics → hawkular/metrics}/metric_api.rb +1 -0
  14. data/lib/{metrics → hawkular/metrics}/metrics_client.rb +4 -4
  15. data/lib/{metrics → hawkular/metrics}/tenant_api.rb +0 -0
  16. data/lib/{metrics → hawkular/metrics}/types.rb +0 -0
  17. data/lib/{operations → hawkular/operations}/operations_api.rb +11 -8
  18. data/lib/{tokens → hawkular/tokens}/tokens_api.rb +1 -1
  19. data/lib/{version.rb → hawkular/version.rb} +1 -1
  20. data/spec/integration/alerts_spec.rb +200 -0
  21. data/spec/integration/hawkular_client_spec.rb +228 -0
  22. data/spec/integration/inventory_spec.rb +246 -160
  23. data/spec/integration/metric_spec.rb +52 -59
  24. data/spec/integration/operations_spec.rb +53 -29
  25. data/spec/spec_helper.rb +109 -8
  26. data/spec/unit/base_spec.rb +9 -0
  27. data/spec/unit/canonical_path_spec.rb +2 -2
  28. data/spec/vcr/vcr_setup.rb +6 -0
  29. data/spec/vcr_cassettes/Alert/Events/Should_create_an_event.yml +50 -0
  30. data/spec/vcr_cassettes/Alert/Groups/Should_operate_a_complex_group_trigger.yml +1726 -0
  31. data/spec/vcr_cassettes/Counter_metrics/Should_get_metrics_as_bucketed_results.yml +190 -0
  32. data/spec/vcr_cassettes/Counter_metrics/Should_get_metrics_with_limit_and_order.yml +30 -42
  33. data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_both_create_and_delete_feed.yml +287 -0
  34. data/spec/vcr_cassettes/{Inventory/Should_list_URLs.yml → HawkularClient/and_Inventory_client/Should_both_list_WildFlys.yml} +35 -33
  35. data/spec/vcr_cassettes/{Inventory/Should_list_types_with_bad_feed.yml → HawkularClient/and_Inventory_client/Should_both_list_types_with_bad_feed.yml} +16 -19
  36. data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_list_same_types_when_param_is_given.yml +245 -0
  37. data/spec/vcr_cassettes/{Inventory/Should_list_feeds.yml → HawkularClient/and_Inventory_client/Should_list_the_same_feeds.yml} +20 -20
  38. data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_list_the_same_resource_types.yml +249 -0
  39. data/spec/vcr_cassettes/HawkularClient/and_Metrics_client/Should_both_create_and_retrieve_tags_for_Availability.yml +155 -0
  40. data/spec/vcr_cassettes/HawkularClient/and_Metrics_client/Should_both_create_and_return_Availability_using_Hash_parameter.yml +155 -0
  41. data/spec/vcr_cassettes/HawkularClient/and_Metrics_client/Should_both_return_the_version.yml +89 -0
  42. data/spec/vcr_cassettes/HawkularClient/and_Metrics_client/Should_both_work_the_same_way_when_pushing_metric_data_to_non-existing_counter.yml +114 -0
  43. data/spec/vcr_cassettes/{Inventory/Should_list_WildFlys_with_props.yml → HawkularClient/and_Operations_client/Should_both_work_the_same_way.yml} +28 -50
  44. data/spec/vcr_cassettes/HawkularClient/and_Operations_client_Should_both_work_the_same_way.json +44 -0
  45. data/spec/vcr_cassettes/Inventory/Helpers/create_url.yml +48 -0
  46. data/spec/vcr_cassettes/Inventory/Helpers/generate_some_events_for_websocket.yml +4446 -0
  47. data/spec/vcr_cassettes/Inventory/Helpers/get_feeds.yml +54 -0
  48. data/spec/vcr_cassettes/Inventory/Templates/Client_should_listen_on_various_inventory_events.json +47 -0
  49. data/spec/vcr_cassettes/Inventory/{Should_create_a_resourcetype.yml → Templates/Client_should_listen_on_various_inventory_events.yml} +47 -61
  50. data/spec/vcr_cassettes/Inventory/Templates/Helpers/generate_some_events_for_websocket.yml +542 -0
  51. data/spec/vcr_cassettes/Inventory/{Should_List_datasources_with_no_props.yml → Templates/Should_List_datasources_with_no_props.yml} +26 -85
  52. data/spec/vcr_cassettes/Inventory/Templates/Should_create_a_feed.yml +54 -0
  53. data/spec/vcr_cassettes/Inventory/Templates/Should_create_a_feed_again.yml +164 -0
  54. data/spec/vcr_cassettes/Inventory/{Should_create_a_nested_resource_and_metric_on_it.yml → Templates/Should_create_a_nested_resource_and_metric_on_it.yml} +93 -74
  55. data/spec/vcr_cassettes/Inventory/{Should_create_a_resource_.yml → Templates/Should_create_a_resource.yml} +103 -76
  56. data/spec/vcr_cassettes/Inventory/{Should_create_a_resource_with_metric.yml → Templates/Should_create_a_resource_with_metric.yml} +91 -197
  57. data/spec/vcr_cassettes/Inventory/Templates/Should_create_a_resourcetype.yml +154 -0
  58. data/spec/vcr_cassettes/Inventory/Templates/Should_create_and_delete_feed.yml +145 -0
  59. data/spec/vcr_cassettes/Inventory/{Should_create_and_get_a_resource.yml → Templates/Should_create_and_get_a_resource.yml} +35 -20
  60. data/spec/vcr_cassettes/Inventory/Templates/Should_list_URLs.yml +65 -0
  61. data/spec/vcr_cassettes/Inventory/Templates/Should_list_WildFlys.yml +61 -0
  62. data/spec/vcr_cassettes/Inventory/{Should_list_WildFlys.yml → Templates/Should_list_WildFlys_with_props.yml} +36 -33
  63. data/spec/vcr_cassettes/Inventory/Templates/Should_list_all_the_resource_types.yml +126 -0
  64. data/spec/vcr_cassettes/Inventory/{Should_list_children_of_WildFly.yml → Templates/Should_list_children_of_WildFly.yml} +66 -112
  65. data/spec/vcr_cassettes/Inventory/{Should_list_children_of_nested_resource.yml → Templates/Should_list_children_of_nested_resource.yml} +13 -13
  66. data/spec/vcr_cassettes/Inventory/Templates/Should_list_feeds.yml +54 -0
  67. data/spec/vcr_cassettes/Inventory/Templates/Should_list_heap_metrics_for_WildFlys.yml +712 -0
  68. data/spec/vcr_cassettes/Inventory/Templates/Should_list_metrics_for_WildFlys.yml +278 -0
  69. data/spec/vcr_cassettes/Inventory/Templates/Should_list_metrics_of_given_metric_type.yml +530 -0
  70. data/spec/vcr_cassettes/Inventory/Templates/Should_list_metrics_of_given_resource_type.yml +278 -0
  71. data/spec/vcr_cassettes/Inventory/Templates/Should_list_operation_definitions_of_given_resource.yml +185 -0
  72. data/spec/vcr_cassettes/Inventory/Templates/Should_list_operation_definitions_of_given_resource_type.yml +126 -0
  73. data/spec/vcr_cassettes/Inventory/Templates/Should_list_recursive_children_of_WildFly.yml +2369 -0
  74. data/spec/vcr_cassettes/Inventory/Templates/Should_list_relationships_of_WildFly.yml +415 -0
  75. data/spec/vcr_cassettes/Inventory/Templates/Should_list_types_with_bad_feed.yml +51 -0
  76. data/spec/vcr_cassettes/Inventory/Templates/Should_list_types_with_feed.yml +124 -0
  77. data/spec/vcr_cassettes/Inventory/{Should_not_find_an_unknown_resource.yml → Templates/Should_not_find_an_unknown_resource.yml} +14 -13
  78. data/spec/vcr_cassettes/Inventory/{Should_return_config_data_of_given_nested_resource.yml → Templates/Should_return_config_data_of_given_nested_resource.yml} +4 -4
  79. data/spec/vcr_cassettes/Inventory/{Should_return_config_data_of_given_resource.yml → Templates/Should_return_config_data_of_given_resource.yml} +4 -4
  80. data/spec/vcr_cassettes/Inventory/Tenants/Should_Get_Tenant_For_Explicit_Credentials.yml +50 -0
  81. data/spec/vcr_cassettes/Inventory/Tenants/Should_Get_Tenant_For_Implicit_Credentials.yml +50 -0
  82. data/spec/vcr_cassettes/Operation/Helpers/get_feed.yml +54 -0
  83. data/spec/vcr_cassettes/Operation/Helpers/get_tenant.yml +50 -0
  84. data/spec/vcr_cassettes/Operation/Operation/Add_JDBC_driver_should_add_the_driver.json +26 -0
  85. data/spec/vcr_cassettes/Operation/Operation/Add_datasource_should_be_doable.json +26 -0
  86. data/spec/vcr_cassettes/Operation/Operation/Add_deployment_should_be_doable.json +26 -0
  87. data/spec/vcr_cassettes/Operation/Operation/Redeploy_can_be_run_multiple_times_in_parallel.json +40 -0
  88. data/spec/vcr_cassettes/Operation/Operation/Redeploy_should_be_performed_and_eventually_respond_with_success.json +26 -0
  89. data/spec/vcr_cassettes/Operation/Operation/Redeploy_should_not_be_performed_if_resource_path_is_wrong.json +26 -0
  90. data/spec/vcr_cassettes/Operation/Operation/Remove_JDBC_driver_should_be_performed_and_eventually_respond_with_success.json +26 -0
  91. data/spec/vcr_cassettes/Operation/Operation/Remove_datasource_should_be_performed_and_eventually_respond_with_success.json +26 -0
  92. data/spec/vcr_cassettes/Operation/Operation/Remove_deployment_should_be_performed_and_eventually_respond_with_success.json +26 -0
  93. data/spec/vcr_cassettes/Operation/Operation/Undeploy_should_be_performed_and_eventually_respond_with_success.json +26 -0
  94. data/spec/vcr_cassettes/Operation/Operation/should_not_be_possible_to_perform_on_closed_client.json +12 -0
  95. data/spec/vcr_cassettes/Operation/Websocket_connection/should_be_established.json +9 -0
  96. metadata +171 -72
  97. data/lib/hawkular_all.rb +0 -9
  98. data/spec/vcr_cassettes/Inventory/Should_create_a_feed.yml +0 -107
  99. data/spec/vcr_cassettes/Inventory/Should_create_a_feed_again.yml +0 -211
  100. data/spec/vcr_cassettes/Inventory/Should_create_and_delete_feed.yml +0 -201
  101. data/spec/vcr_cassettes/Inventory/Should_list_all_the_resource_types.yml +0 -177
  102. data/spec/vcr_cassettes/Inventory/Should_list_heap_metrics_for_WildFlys.yml +0 -775
  103. data/spec/vcr_cassettes/Inventory/Should_list_metrics_for_WildFlys.yml +0 -333
  104. data/spec/vcr_cassettes/Inventory/Should_list_metrics_of_given_metric_type.yml +0 -613
  105. data/spec/vcr_cassettes/Inventory/Should_list_metrics_of_given_resource_type.yml +0 -333
  106. data/spec/vcr_cassettes/Inventory/Should_list_recursive_children_of_WildFly.yml +0 -2064
  107. data/spec/vcr_cassettes/Inventory/Should_list_relationships_of_WildFly.yml +0 -460
  108. data/spec/vcr_cassettes/Inventory/Should_list_types_with_feed.yml +0 -175
@@ -0,0 +1,65 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/resourceTypes/URL/resources
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Accept-Encoding:
13
+ - gzip, deflate
14
+ Content-Type:
15
+ - application/json
16
+ User-Agent:
17
+ - Ruby
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Expires:
24
+ - '0'
25
+ Cache-Control:
26
+ - no-cache, no-store, must-revalidate
27
+ X-Powered-By:
28
+ - Undertow/1
29
+ Server:
30
+ - WildFly/10
31
+ Pragma:
32
+ - no-cache
33
+ Date:
34
+ - Thu, 05 May 2016 11:18:41 GMT
35
+ X-Total-Count:
36
+ - '1'
37
+ Connection:
38
+ - keep-alive
39
+ Content-Type:
40
+ - application/json
41
+ Content-Length:
42
+ - '465'
43
+ Link:
44
+ - <http://localhost:8080/hawkular/inventory/resourceTypes/URL/resources>; rel="current"
45
+ body:
46
+ encoding: ASCII-8BIT
47
+ string: |-
48
+ [ {
49
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/e;test/r;536cc3ede5769b60a49774425aedba24",
50
+ "type" : {
51
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/rt;URL",
52
+ "id" : "URL"
53
+ },
54
+ "properties" : {
55
+ "hwk-gui-domainSort" : "http://bsd.de",
56
+ "trait-collected-on" : 1462447120360,
57
+ "trait-powered-by" : "Apache",
58
+ "trait-remote-address" : "212.86.200.189",
59
+ "url" : "http://bsd.de"
60
+ },
61
+ "id" : "536cc3ede5769b60a49774425aedba24"
62
+ } ]
63
+ http_version:
64
+ recorded_at: Thu, 05 May 2016 11:18:41 GMT
65
+ recorded_with: VCR 3.0.1
@@ -0,0 +1,61 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/<%= feed_uuid %>/resourceTypes/WildFly%20Server/resources
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Accept-Encoding:
13
+ - gzip, deflate
14
+ Content-Type:
15
+ - application/json
16
+ User-Agent:
17
+ - Ruby
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Expires:
24
+ - '0'
25
+ Cache-Control:
26
+ - no-cache, no-store, must-revalidate
27
+ X-Powered-By:
28
+ - Undertow/1
29
+ Server:
30
+ - WildFly/10
31
+ Pragma:
32
+ - no-cache
33
+ Date:
34
+ - Thu, 05 May 2016 11:18:41 GMT
35
+ X-Total-Count:
36
+ - '1'
37
+ Connection:
38
+ - keep-alive
39
+ Content-Type:
40
+ - application/json
41
+ Content-Length:
42
+ - '351'
43
+ Link:
44
+ - <http://localhost:8080/hawkular/inventory/feeds/<%= feed_uuid %>/resourceTypes/WildFly%20Server/resources>;
45
+ rel="current"
46
+ body:
47
+ encoding: ASCII-8BIT
48
+ string: |-
49
+ [ {
50
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~",
51
+ "type" : {
52
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;WildFly%20Server",
53
+ "name" : "WildFly Server",
54
+ "id" : "WildFly Server"
55
+ },
56
+ "name" : "localhost/Local",
57
+ "id" : "Local~~"
58
+ } ]
59
+ http_version:
60
+ recorded_at: Thu, 05 May 2016 11:18:41 GMT
61
+ 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/tenant
5
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/<%= feed_uuid %>/resourceTypes/WildFly%20Server/resources
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -11,10 +11,10 @@ http_interactions:
11
11
  - application/json
12
12
  Accept-Encoding:
13
13
  - gzip, deflate
14
- User-Agent:
15
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
16
14
  Content-Type:
17
15
  - application/json
16
+ User-Agent:
17
+ - Ruby
18
18
  response:
19
19
  status:
20
20
  code: 200
@@ -31,25 +31,36 @@ http_interactions:
31
31
  Pragma:
32
32
  - no-cache
33
33
  Date:
34
- - Thu, 18 Feb 2016 22:30:15 GMT
34
+ - Thu, 05 May 2016 11:18:41 GMT
35
+ X-Total-Count:
36
+ - '1'
35
37
  Connection:
36
38
  - keep-alive
37
39
  Content-Type:
38
40
  - application/json
39
41
  Content-Length:
40
- - '105'
42
+ - '351'
43
+ Link:
44
+ - <http://localhost:8080/hawkular/inventory/feeds/<%= feed_uuid %>/resourceTypes/WildFly%20Server/resources>;
45
+ rel="current"
41
46
  body:
42
47
  encoding: ASCII-8BIT
43
48
  string: |-
44
- {
45
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf",
46
- "id" : "28026b36-8fe4-4332-84c8-524e173a68bf"
47
- }
49
+ [ {
50
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~",
51
+ "type" : {
52
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;WildFly%20Server",
53
+ "name" : "WildFly Server",
54
+ "id" : "WildFly Server"
55
+ },
56
+ "name" : "localhost/Local",
57
+ "id" : "Local~~"
58
+ } ]
48
59
  http_version:
49
- recorded_at: Thu, 18 Feb 2016 22:30:15 GMT
60
+ recorded_at: Thu, 05 May 2016 11:18:41 GMT
50
61
  - request:
51
62
  method: get
52
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resourceTypes/WildFly%20Server/resources
63
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/<%= feed_uuid %>/resources/Local~~/data?dataType=configuration
53
64
  body:
54
65
  encoding: US-ASCII
55
66
  string: ''
@@ -58,14 +69,10 @@ http_interactions:
58
69
  - application/json
59
70
  Accept-Encoding:
60
71
  - gzip, deflate
61
- User-Agent:
62
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
63
- Hawkular-Tenant:
64
- - 28026b36-8fe4-4332-84c8-524e173a68bf
65
- Tenantid:
66
- - 28026b36-8fe4-4332-84c8-524e173a68bf
67
72
  Content-Type:
68
73
  - application/json
74
+ User-Agent:
75
+ - Ruby
69
76
  response:
70
77
  status:
71
78
  code: 200
@@ -82,31 +89,27 @@ http_interactions:
82
89
  Pragma:
83
90
  - no-cache
84
91
  Date:
85
- - Thu, 18 Feb 2016 22:30:15 GMT
86
- X-Total-Count:
87
- - '1'
92
+ - Thu, 05 May 2016 11:18:41 GMT
88
93
  Connection:
89
94
  - keep-alive
90
95
  Content-Type:
91
96
  - application/json
92
97
  Content-Length:
93
98
  - '351'
94
- Link:
95
- - <http://localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resourceTypes/WildFly%20Server/resources>;
96
- rel="current"
97
99
  body:
98
100
  encoding: ASCII-8BIT
99
101
  string: |-
100
- [ {
101
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~",
102
- "type" : {
103
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;WildFly%20Server",
104
- "name" : "WildFly Server",
105
- "id" : "WildFly Server"
102
+ {
103
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/d;configuration",
104
+ "value" : {
105
+ "Bound Address" : "127.0.0.1",
106
+ "Version" : "1.0.0.Alpha13-SNAPSHOT",
107
+ "Server State" : "running",
108
+ "Product Name" : "Hawkular",
109
+ "Hostname" : "localhost.localdomain"
106
110
  },
107
- "name" : "localhost/Local",
108
- "id" : "Local~~"
109
- } ]
111
+ "name" : "configuration"
112
+ }
110
113
  http_version:
111
- recorded_at: Thu, 18 Feb 2016 22:30:15 GMT
114
+ recorded_at: Thu, 05 May 2016 11:18:41 GMT
112
115
  recorded_with: VCR 3.0.1
@@ -0,0 +1,126 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/resourceTypes
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Accept-Encoding:
13
+ - gzip, deflate
14
+ Content-Type:
15
+ - application/json
16
+ User-Agent:
17
+ - Ruby
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Expires:
24
+ - '0'
25
+ Cache-Control:
26
+ - no-cache, no-store, must-revalidate
27
+ X-Powered-By:
28
+ - Undertow/1
29
+ Server:
30
+ - WildFly/10
31
+ Pragma:
32
+ - no-cache
33
+ Date:
34
+ - Thu, 05 May 2016 11:18:39 GMT
35
+ X-Total-Count:
36
+ - '19'
37
+ Connection:
38
+ - keep-alive
39
+ Content-Type:
40
+ - application/json
41
+ Content-Length:
42
+ - '3134'
43
+ Link:
44
+ - <http://localhost:8080/hawkular/inventory/resourceTypes>; rel="current"
45
+ body:
46
+ encoding: ASCII-8BIT
47
+ string: |-
48
+ [ {
49
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/rt;URL",
50
+ "id" : "URL"
51
+ }, {
52
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Operating%20System",
53
+ "name" : "Operating System",
54
+ "id" : "Operating System"
55
+ }, {
56
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;File%20Store",
57
+ "name" : "File Store",
58
+ "id" : "File Store"
59
+ }, {
60
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Memory",
61
+ "name" : "Memory",
62
+ "id" : "Memory"
63
+ }, {
64
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Processor",
65
+ "name" : "Processor",
66
+ "id" : "Processor"
67
+ }, {
68
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;WildFly%20Server",
69
+ "name" : "WildFly Server",
70
+ "id" : "WildFly Server"
71
+ }, {
72
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Datasource",
73
+ "name" : "Datasource",
74
+ "id" : "Datasource"
75
+ }, {
76
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;JDBC%20Driver",
77
+ "name" : "JDBC Driver",
78
+ "id" : "JDBC Driver"
79
+ }, {
80
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
81
+ "name" : "Deployment",
82
+ "id" : "Deployment"
83
+ }, {
84
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Singleton%20EJB",
85
+ "name" : "Singleton EJB",
86
+ "id" : "Singleton EJB"
87
+ }, {
88
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Stateless%20Session%20EJB",
89
+ "name" : "Stateless Session EJB",
90
+ "id" : "Stateless Session EJB"
91
+ }, {
92
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Message%20Driven%20EJB",
93
+ "name" : "Message Driven EJB",
94
+ "id" : "Message Driven EJB"
95
+ }, {
96
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Servlet",
97
+ "name" : "Servlet",
98
+ "id" : "Servlet"
99
+ }, {
100
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;SubDeployment",
101
+ "name" : "SubDeployment",
102
+ "id" : "SubDeployment"
103
+ }, {
104
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Transaction%20Manager",
105
+ "name" : "Transaction Manager",
106
+ "id" : "Transaction Manager"
107
+ }, {
108
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Messaging%20Server",
109
+ "name" : "Messaging Server",
110
+ "id" : "Messaging Server"
111
+ }, {
112
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;JMS%20Topic",
113
+ "name" : "JMS Topic",
114
+ "id" : "JMS Topic"
115
+ }, {
116
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;JMS%20Queue",
117
+ "name" : "JMS Queue",
118
+ "id" : "JMS Queue"
119
+ }, {
120
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Hawkular%20WildFly%20Agent",
121
+ "name" : "Hawkular WildFly Agent",
122
+ "id" : "Hawkular WildFly Agent"
123
+ } ]
124
+ http_version:
125
+ recorded_at: Thu, 05 May 2016 11:18:39 GMT
126
+ 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/tenant
5
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/<%= feed_uuid %>/resourceTypes/WildFly%20Server/resources
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -11,61 +11,10 @@ http_interactions:
11
11
  - application/json
12
12
  Accept-Encoding:
13
13
  - gzip, deflate
14
- User-Agent:
15
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
16
14
  Content-Type:
17
15
  - application/json
18
- response:
19
- status:
20
- code: 200
21
- message: OK
22
- headers:
23
- Expires:
24
- - '0'
25
- Cache-Control:
26
- - no-cache, no-store, must-revalidate
27
- X-Powered-By:
28
- - Undertow/1
29
- Server:
30
- - WildFly/10
31
- Pragma:
32
- - no-cache
33
- Date:
34
- - Thu, 18 Feb 2016 22:30:16 GMT
35
- Connection:
36
- - keep-alive
37
- Content-Type:
38
- - application/json
39
- Content-Length:
40
- - '105'
41
- body:
42
- encoding: ASCII-8BIT
43
- string: |-
44
- {
45
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf",
46
- "id" : "28026b36-8fe4-4332-84c8-524e173a68bf"
47
- }
48
- http_version:
49
- recorded_at: Thu, 18 Feb 2016 22:30:16 GMT
50
- - request:
51
- method: get
52
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resourceTypes/WildFly%20Server/resources
53
- body:
54
- encoding: US-ASCII
55
- string: ''
56
- headers:
57
- Accept:
58
- - application/json
59
- Accept-Encoding:
60
- - gzip, deflate
61
16
  User-Agent:
62
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
63
- Hawkular-Tenant:
64
- - 28026b36-8fe4-4332-84c8-524e173a68bf
65
- Tenantid:
66
- - 28026b36-8fe4-4332-84c8-524e173a68bf
67
- Content-Type:
68
- - application/json
17
+ - Ruby
69
18
  response:
70
19
  status:
71
20
  code: 200
@@ -82,7 +31,7 @@ http_interactions:
82
31
  Pragma:
83
32
  - no-cache
84
33
  Date:
85
- - Thu, 18 Feb 2016 22:30:16 GMT
34
+ - Thu, 05 May 2016 11:18:42 GMT
86
35
  X-Total-Count:
87
36
  - '1'
88
37
  Connection:
@@ -92,15 +41,15 @@ http_interactions:
92
41
  Content-Length:
93
42
  - '351'
94
43
  Link:
95
- - <http://localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resourceTypes/WildFly%20Server/resources>;
44
+ - <http://localhost:8080/hawkular/inventory/feeds/<%= feed_uuid %>/resourceTypes/WildFly%20Server/resources>;
96
45
  rel="current"
97
46
  body:
98
47
  encoding: ASCII-8BIT
99
48
  string: |-
100
49
  [ {
101
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~",
50
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~",
102
51
  "type" : {
103
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;WildFly%20Server",
52
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;WildFly%20Server",
104
53
  "name" : "WildFly Server",
105
54
  "id" : "WildFly Server"
106
55
  },
@@ -108,10 +57,10 @@ http_interactions:
108
57
  "id" : "Local~~"
109
58
  } ]
110
59
  http_version:
111
- recorded_at: Thu, 18 Feb 2016 22:30:16 GMT
60
+ recorded_at: Thu, 05 May 2016 11:18:42 GMT
112
61
  - request:
113
62
  method: get
114
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resources/Local~~/children
63
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/<%= feed_uuid %>/resources/Local~~/children
115
64
  body:
116
65
  encoding: US-ASCII
117
66
  string: ''
@@ -120,14 +69,10 @@ http_interactions:
120
69
  - application/json
121
70
  Accept-Encoding:
122
71
  - gzip, deflate
123
- User-Agent:
124
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
125
- Hawkular-Tenant:
126
- - 28026b36-8fe4-4332-84c8-524e173a68bf
127
- Tenantid:
128
- - 28026b36-8fe4-4332-84c8-524e173a68bf
129
72
  Content-Type:
130
73
  - application/json
74
+ User-Agent:
75
+ - Ruby
131
76
  response:
132
77
  status:
133
78
  code: 200
@@ -144,205 +89,214 @@ http_interactions:
144
89
  Pragma:
145
90
  - no-cache
146
91
  Date:
147
- - Thu, 18 Feb 2016 22:30:16 GMT
92
+ - Thu, 05 May 2016 11:18:42 GMT
148
93
  X-Total-Count:
149
- - '21'
94
+ - '22'
150
95
  Connection:
151
96
  - keep-alive
152
97
  Content-Type:
153
98
  - application/json
154
99
  Content-Length:
155
- - '9140'
100
+ - '9615'
156
101
  Link:
157
- - <http://localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resources/Local~~/children>;
102
+ - <http://localhost:8080/hawkular/inventory/feeds/<%= feed_uuid %>/resources/Local~~/children>;
158
103
  rel="current"
159
104
  body:
160
105
  encoding: ASCII-8BIT
161
106
  string: |-
162
107
  [ {
163
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fsubsystem=datasources%2Fdata-source=ExampleDS",
108
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Ddatasources%2Fdata-source%3DExampleDS",
164
109
  "type" : {
165
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Datasource",
110
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Datasource",
166
111
  "name" : "Datasource",
167
112
  "id" : "Datasource"
168
113
  },
169
114
  "name" : "ExampleDS",
170
115
  "id" : "Local~/subsystem=datasources/data-source=ExampleDS"
171
116
  }, {
172
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fsubsystem=datasources%2Fdata-source=KeycloakDS",
117
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Ddatasources%2Fdata-source%3DKeycloakDS",
173
118
  "type" : {
174
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Datasource",
119
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Datasource",
175
120
  "name" : "Datasource",
176
121
  "id" : "Datasource"
177
122
  },
178
123
  "name" : "KeycloakDS",
179
124
  "id" : "Local~/subsystem=datasources/data-source=KeycloakDS"
180
125
  }, {
181
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fsubsystem=datasources%2Fjdbc-driver=h2",
126
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Ddatasources%2Fjdbc-driver%3Dh2",
182
127
  "type" : {
183
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;JDBC%20Driver",
128
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;JDBC%20Driver",
184
129
  "name" : "JDBC Driver",
185
130
  "id" : "JDBC Driver"
186
131
  },
187
132
  "name" : "h2",
188
133
  "id" : "Local~/subsystem=datasources/jdbc-driver=h2"
189
134
  }, {
190
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=hawkular-command-gateway-war.war",
135
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-command-gateway-war.war",
191
136
  "type" : {
192
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
137
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
193
138
  "name" : "Deployment",
194
139
  "id" : "Deployment"
195
140
  },
196
141
  "name" : "hawkular-command-gateway-war.war",
197
142
  "id" : "Local~/deployment=hawkular-command-gateway-war.war"
198
143
  }, {
199
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=hawkular-alerts-actions-email.war",
144
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war",
200
145
  "type" : {
201
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
146
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
202
147
  "name" : "Deployment",
203
148
  "id" : "Deployment"
204
149
  },
205
150
  "name" : "hawkular-alerts-actions-email.war",
206
151
  "id" : "Local~/deployment=hawkular-alerts-actions-email.war"
207
152
  }, {
208
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=hawkular-wildfly-agent-download.war",
153
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-wildfly-agent-download.war",
209
154
  "type" : {
210
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
155
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
211
156
  "name" : "Deployment",
212
157
  "id" : "Deployment"
213
158
  },
214
159
  "name" : "hawkular-wildfly-agent-download.war",
215
160
  "id" : "Local~/deployment=hawkular-wildfly-agent-download.war"
216
161
  }, {
217
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=hawkular-avail-creator.war",
162
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-avail-creator.war",
218
163
  "type" : {
219
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
164
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
220
165
  "name" : "Deployment",
221
166
  "id" : "Deployment"
222
167
  },
223
168
  "name" : "hawkular-avail-creator.war",
224
169
  "id" : "Local~/deployment=hawkular-avail-creator.war"
225
170
  }, {
226
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=secret-store.war",
171
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dsecret-store.war",
227
172
  "type" : {
228
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
173
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
229
174
  "name" : "Deployment",
230
175
  "id" : "Deployment"
231
176
  },
232
177
  "name" : "secret-store.war",
233
178
  "id" : "Local~/deployment=secret-store.war"
234
179
  }, {
235
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=hawkular-inventory-dist.war",
180
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-inventory-dist.war",
236
181
  "type" : {
237
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
182
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
238
183
  "name" : "Deployment",
239
184
  "id" : "Deployment"
240
185
  },
241
186
  "name" : "hawkular-inventory-dist.war",
242
187
  "id" : "Local~/deployment=hawkular-inventory-dist.war"
243
188
  }, {
244
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=hawkular-alerts-rest.war",
189
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-rest.war",
245
190
  "type" : {
246
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
191
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
247
192
  "name" : "Deployment",
248
193
  "id" : "Deployment"
249
194
  },
250
195
  "name" : "hawkular-alerts-rest.war",
251
196
  "id" : "Local~/deployment=hawkular-alerts-rest.war"
252
197
  }, {
253
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=hawkular-accounts-events-backend.war",
198
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-accounts-events-backend.war",
254
199
  "type" : {
255
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
200
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
256
201
  "name" : "Deployment",
257
202
  "id" : "Deployment"
258
203
  },
259
204
  "name" : "hawkular-accounts-events-backend.war",
260
205
  "id" : "Local~/deployment=hawkular-accounts-events-backend.war"
261
206
  }, {
262
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=hawkular-pinger.war",
207
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-pinger.war",
263
208
  "type" : {
264
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
209
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
265
210
  "name" : "Deployment",
266
211
  "id" : "Deployment"
267
212
  },
268
213
  "name" : "hawkular-pinger.war",
269
214
  "id" : "Local~/deployment=hawkular-pinger.war"
270
215
  }, {
271
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=hawkular-rest-api.war",
216
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-rest-api.war",
272
217
  "type" : {
273
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
218
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
274
219
  "name" : "Deployment",
275
220
  "id" : "Deployment"
276
221
  },
277
222
  "name" : "hawkular-rest-api.war",
278
223
  "id" : "Local~/deployment=hawkular-rest-api.war"
279
224
  }, {
280
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=hawkular-metrics-component.war",
225
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-metrics-component.war",
281
226
  "type" : {
282
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
227
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
283
228
  "name" : "Deployment",
284
229
  "id" : "Deployment"
285
230
  },
286
231
  "name" : "hawkular-metrics-component.war",
287
232
  "id" : "Local~/deployment=hawkular-metrics-component.war"
288
233
  }, {
289
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=hawkular-commons-embedded-cassandra-ear.ear",
234
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-commons-embedded-cassandra-ear.ear",
290
235
  "type" : {
291
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
236
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
292
237
  "name" : "Deployment",
293
238
  "id" : "Deployment"
294
239
  },
295
240
  "name" : "hawkular-commons-embedded-cassandra-ear.ear",
296
241
  "id" : "Local~/deployment=hawkular-commons-embedded-cassandra-ear.ear"
297
242
  }, {
298
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=hawkular-accounts.war",
243
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-accounts.war",
299
244
  "type" : {
300
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
245
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
301
246
  "name" : "Deployment",
302
247
  "id" : "Deployment"
303
248
  },
304
249
  "name" : "hawkular-accounts.war",
305
250
  "id" : "Local~/deployment=hawkular-accounts.war"
306
251
  }, {
307
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=keycloak-server.war",
252
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-btm-server.war",
253
+ "type" : {
254
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
255
+ "name" : "Deployment",
256
+ "id" : "Deployment"
257
+ },
258
+ "name" : "hawkular-btm-server.war",
259
+ "id" : "Local~/deployment=hawkular-btm-server.war"
260
+ }, {
261
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dkeycloak-server.war",
308
262
  "type" : {
309
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
263
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
310
264
  "name" : "Deployment",
311
265
  "id" : "Deployment"
312
266
  },
313
267
  "name" : "keycloak-server.war",
314
268
  "id" : "Local~/deployment=keycloak-server.war"
315
269
  }, {
316
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fdeployment=hawkular-console.war",
270
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-console.war",
317
271
  "type" : {
318
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
272
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Deployment",
319
273
  "name" : "Deployment",
320
274
  "id" : "Deployment"
321
275
  },
322
276
  "name" : "hawkular-console.war",
323
277
  "id" : "Local~/deployment=hawkular-console.war"
324
278
  }, {
325
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fsubsystem=transactions",
279
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dtransactions",
326
280
  "type" : {
327
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Transaction%20Manager",
281
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Transaction%20Manager",
328
282
  "name" : "Transaction Manager",
329
283
  "id" : "Transaction Manager"
330
284
  },
331
285
  "name" : "Transaction Manager",
332
286
  "id" : "Local~/subsystem=transactions"
333
287
  }, {
334
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fsubsystem=messaging-activemq%2Fserver=default",
288
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dmessaging-activemq%2Fserver%3Ddefault",
335
289
  "type" : {
336
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Messaging%20Server",
290
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Messaging%20Server",
337
291
  "name" : "Messaging Server",
338
292
  "id" : "Messaging Server"
339
293
  },
340
294
  "name" : "Messaging Server [default]",
341
295
  "id" : "Local~/subsystem=messaging-activemq/server=default"
342
296
  }, {
343
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/r;Local~~/r;Local~%2Fsubsystem=hawkular-wildfly-agent",
297
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/r;Local~~/r;Local~%2Fsubsystem%3Dhawkular-wildfly-agent",
344
298
  "type" : {
345
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Hawkular%20WildFly%20Agent",
299
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;<%= feed_uuid %>/rt;Hawkular%20WildFly%20Agent",
346
300
  "name" : "Hawkular WildFly Agent",
347
301
  "id" : "Hawkular WildFly Agent"
348
302
  },
@@ -350,5 +304,5 @@ http_interactions:
350
304
  "id" : "Local~/subsystem=hawkular-wildfly-agent"
351
305
  } ]
352
306
  http_version:
353
- recorded_at: Thu, 18 Feb 2016 22:30:16 GMT
307
+ recorded_at: Thu, 05 May 2016 11:18:42 GMT
354
308
  recorded_with: VCR 3.0.1