hawkular-client 0.2.2 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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
@@ -1,333 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/tenant
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/json
12
- Accept-Encoding:
13
- - gzip, deflate
14
- User-Agent:
15
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
16
- Content-Type:
17
- - 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
- 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
69
- response:
70
- status:
71
- code: 200
72
- message: OK
73
- headers:
74
- Expires:
75
- - '0'
76
- Cache-Control:
77
- - no-cache, no-store, must-revalidate
78
- X-Powered-By:
79
- - Undertow/1
80
- Server:
81
- - WildFly/10
82
- Pragma:
83
- - no-cache
84
- Date:
85
- - Thu, 18 Feb 2016 22:30:16 GMT
86
- X-Total-Count:
87
- - '1'
88
- Connection:
89
- - keep-alive
90
- Content-Type:
91
- - application/json
92
- Content-Length:
93
- - '351'
94
- Link:
95
- - <http://localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resourceTypes/WildFly%20Server/resources>;
96
- rel="current"
97
- body:
98
- encoding: ASCII-8BIT
99
- 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"
106
- },
107
- "name" : "localhost/Local",
108
- "id" : "Local~~"
109
- } ]
110
- http_version:
111
- recorded_at: Thu, 18 Feb 2016 22:30:16 GMT
112
- - request:
113
- method: get
114
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resources/Local~~/metrics
115
- body:
116
- encoding: US-ASCII
117
- string: ''
118
- headers:
119
- Accept:
120
- - application/json
121
- Accept-Encoding:
122
- - 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
- Content-Type:
130
- - application/json
131
- response:
132
- status:
133
- code: 200
134
- message: OK
135
- headers:
136
- Expires:
137
- - '0'
138
- Cache-Control:
139
- - no-cache, no-store, must-revalidate
140
- X-Powered-By:
141
- - Undertow/1
142
- Server:
143
- - WildFly/10
144
- Pragma:
145
- - no-cache
146
- Date:
147
- - Thu, 18 Feb 2016 22:30:16 GMT
148
- X-Total-Count:
149
- - '14'
150
- Connection:
151
- - keep-alive
152
- Content-Type:
153
- - application/json
154
- Content-Length:
155
- - '10779'
156
- Link:
157
- - <http://localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resources/Local~~/metrics>;
158
- rel="current"
159
- body:
160
- encoding: ASCII-8BIT
161
- string: |-
162
- [ {
163
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2FLocal~~%5D~MT~WildFly%20Memory%20Metrics~Accumulated%20GC%20Duration",
164
- "type" : {
165
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~Accumulated%20GC%20Duration",
166
- "name" : "WildFly Memory Metrics~Accumulated GC Duration",
167
- "unit" : "NONE",
168
- "type" : "COUNTER",
169
- "collectionInterval" : 60,
170
- "id" : "WildFly Memory Metrics~Accumulated GC Duration"
171
- },
172
- "name" : "WildFly Memory Metrics~Accumulated GC Duration",
173
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~Accumulated GC Duration"
174
- }, {
175
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2FLocal~~%5D~MT~WildFly%20Memory%20Metrics~Heap%20Used",
176
- "type" : {
177
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~Heap%20Used",
178
- "name" : "WildFly Memory Metrics~Heap Used",
179
- "unit" : "BYTES",
180
- "type" : "GAUGE",
181
- "collectionInterval" : 30,
182
- "id" : "WildFly Memory Metrics~Heap Used"
183
- },
184
- "name" : "WildFly Memory Metrics~Heap Used",
185
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~Heap Used"
186
- }, {
187
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2FLocal~~%5D~MT~WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Active%20Web%20Sessions",
188
- "type" : {
189
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Active%20Web%20Sessions",
190
- "name" : "WildFly Aggregated Web Metrics~Aggregated Active Web Sessions",
191
- "unit" : "NONE",
192
- "type" : "GAUGE",
193
- "collectionInterval" : 60,
194
- "id" : "WildFly Aggregated Web Metrics~Aggregated Active Web Sessions"
195
- },
196
- "name" : "WildFly Aggregated Web Metrics~Aggregated Active Web Sessions",
197
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Active Web Sessions"
198
- }, {
199
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2FLocal~~%5D~MT~WildFly%20Memory%20Metrics~NonHeap%20Committed",
200
- "type" : {
201
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~NonHeap%20Committed",
202
- "name" : "WildFly Memory Metrics~NonHeap Committed",
203
- "unit" : "NONE",
204
- "type" : "GAUGE",
205
- "collectionInterval" : 60,
206
- "id" : "WildFly Memory Metrics~NonHeap Committed"
207
- },
208
- "name" : "WildFly Memory Metrics~NonHeap Committed",
209
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~NonHeap Committed"
210
- }, {
211
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2FLocal~~%5D~MT~WildFly%20Memory%20Metrics~NonHeap%20Used",
212
- "type" : {
213
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~NonHeap%20Used",
214
- "name" : "WildFly Memory Metrics~NonHeap Used",
215
- "unit" : "NONE",
216
- "type" : "GAUGE",
217
- "collectionInterval" : 30,
218
- "id" : "WildFly Memory Metrics~NonHeap Used"
219
- },
220
- "name" : "WildFly Memory Metrics~NonHeap Used",
221
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~NonHeap Used"
222
- }, {
223
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2FLocal~~%5D~MT~WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Expired%20Web%20Sessions",
224
- "type" : {
225
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Expired%20Web%20Sessions",
226
- "name" : "WildFly Aggregated Web Metrics~Aggregated Expired Web Sessions",
227
- "unit" : "NONE",
228
- "type" : "COUNTER",
229
- "collectionInterval" : 60,
230
- "id" : "WildFly Aggregated Web Metrics~Aggregated Expired Web Sessions"
231
- },
232
- "name" : "WildFly Aggregated Web Metrics~Aggregated Expired Web Sessions",
233
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Expired Web Sessions"
234
- }, {
235
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2FLocal~~%5D~MT~WildFly%20Memory%20Metrics~Heap%20Max",
236
- "type" : {
237
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~Heap%20Max",
238
- "name" : "WildFly Memory Metrics~Heap Max",
239
- "unit" : "NONE",
240
- "type" : "GAUGE",
241
- "collectionInterval" : 60,
242
- "id" : "WildFly Memory Metrics~Heap Max"
243
- },
244
- "name" : "WildFly Memory Metrics~Heap Max",
245
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~Heap Max"
246
- }, {
247
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2FLocal~~%5D~MT~WildFly%20Threading%20Metrics~Thread%20Count",
248
- "type" : {
249
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Threading%20Metrics~Thread%20Count",
250
- "name" : "WildFly Threading Metrics~Thread Count",
251
- "unit" : "NONE",
252
- "type" : "GAUGE",
253
- "collectionInterval" : 120,
254
- "id" : "WildFly Threading Metrics~Thread Count"
255
- },
256
- "name" : "WildFly Threading Metrics~Thread Count",
257
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Threading Metrics~Thread Count"
258
- }, {
259
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2FLocal~~%5D~MT~WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Servlet%20Request%20Count",
260
- "type" : {
261
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Servlet%20Request%20Count",
262
- "name" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Count",
263
- "unit" : "NONE",
264
- "type" : "COUNTER",
265
- "collectionInterval" : 60,
266
- "id" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Count"
267
- },
268
- "name" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Count",
269
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Servlet Request Count"
270
- }, {
271
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2FLocal~~%5D~MT~WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Max%20Active%20Web%20Sessions",
272
- "type" : {
273
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Max%20Active%20Web%20Sessions",
274
- "name" : "WildFly Aggregated Web Metrics~Aggregated Max Active Web Sessions",
275
- "unit" : "NONE",
276
- "type" : "GAUGE",
277
- "collectionInterval" : 60,
278
- "id" : "WildFly Aggregated Web Metrics~Aggregated Max Active Web Sessions"
279
- },
280
- "name" : "WildFly Aggregated Web Metrics~Aggregated Max Active Web Sessions",
281
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Max Active Web Sessions"
282
- }, {
283
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2FLocal~~%5D~MT~WildFly%20Memory%20Metrics~Heap%20Committed",
284
- "type" : {
285
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~Heap%20Committed",
286
- "name" : "WildFly Memory Metrics~Heap Committed",
287
- "unit" : "NONE",
288
- "type" : "GAUGE",
289
- "collectionInterval" : 60,
290
- "id" : "WildFly Memory Metrics~Heap Committed"
291
- },
292
- "name" : "WildFly Memory Metrics~Heap Committed",
293
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~Heap Committed"
294
- }, {
295
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2FLocal~~%5D~MT~WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Rejected%20Web%20Sessions",
296
- "type" : {
297
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Rejected%20Web%20Sessions",
298
- "name" : "WildFly Aggregated Web Metrics~Aggregated Rejected Web Sessions",
299
- "unit" : "NONE",
300
- "type" : "COUNTER",
301
- "collectionInterval" : 60,
302
- "id" : "WildFly Aggregated Web Metrics~Aggregated Rejected Web Sessions"
303
- },
304
- "name" : "WildFly Aggregated Web Metrics~Aggregated Rejected Web Sessions",
305
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Rejected Web Sessions"
306
- }, {
307
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2FLocal~~%5D~MT~WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Servlet%20Request%20Time",
308
- "type" : {
309
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Servlet%20Request%20Time",
310
- "name" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Time",
311
- "unit" : "NONE",
312
- "type" : "COUNTER",
313
- "collectionInterval" : 60,
314
- "id" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Time"
315
- },
316
- "name" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Time",
317
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Servlet Request Time"
318
- }, {
319
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;AI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2FLocal~~%5D~AT~Server%20Availability~App%20Server",
320
- "type" : {
321
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Server%20Availability~App%20Server",
322
- "name" : "Server Availability~App Server",
323
- "unit" : "NONE",
324
- "type" : "AVAILABILITY",
325
- "collectionInterval" : 30,
326
- "id" : "Server Availability~App Server"
327
- },
328
- "name" : "Server Availability~App Server",
329
- "id" : "AI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~AT~Server Availability~App Server"
330
- } ]
331
- http_version:
332
- recorded_at: Thu, 18 Feb 2016 22:30:16 GMT
333
- recorded_with: VCR 3.0.1
@@ -1,613 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/tenant
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/json
12
- Accept-Encoding:
13
- - gzip, deflate
14
- User-Agent:
15
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
16
- Content-Type:
17
- - 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:17 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:17 GMT
50
- - request:
51
- method: get
52
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/metricTypes/Total%20Space
53
- body:
54
- encoding: US-ASCII
55
- string: ''
56
- headers:
57
- Accept:
58
- - application/json
59
- Accept-Encoding:
60
- - 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
- Content-Type:
68
- - application/json
69
- response:
70
- status:
71
- code: 200
72
- message: OK
73
- headers:
74
- Expires:
75
- - '0'
76
- Cache-Control:
77
- - no-cache, no-store, must-revalidate
78
- X-Powered-By:
79
- - Undertow/1
80
- Server:
81
- - WildFly/10
82
- Pragma:
83
- - no-cache
84
- Date:
85
- - Thu, 18 Feb 2016 22:30:17 GMT
86
- Connection:
87
- - keep-alive
88
- Content-Type:
89
- - application/json
90
- Content-Length:
91
- - '232'
92
- body:
93
- encoding: ASCII-8BIT
94
- string: |-
95
- {
96
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
97
- "name" : "Total Space",
98
- "unit" : "BYTES",
99
- "type" : "GAUGE",
100
- "collectionInterval" : 300,
101
- "id" : "Total Space"
102
- }
103
- http_version:
104
- recorded_at: Thu, 18 Feb 2016 22:30:17 GMT
105
- - request:
106
- method: get
107
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/path/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space/relationships?named=defines
108
- body:
109
- encoding: US-ASCII
110
- string: ''
111
- headers:
112
- Accept:
113
- - application/json
114
- Accept-Encoding:
115
- - gzip, deflate
116
- User-Agent:
117
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
118
- Hawkular-Tenant:
119
- - 28026b36-8fe4-4332-84c8-524e173a68bf
120
- Tenantid:
121
- - 28026b36-8fe4-4332-84c8-524e173a68bf
122
- Content-Type:
123
- - application/json
124
- response:
125
- status:
126
- code: 200
127
- message: OK
128
- headers:
129
- Expires:
130
- - '0'
131
- Cache-Control:
132
- - no-cache, no-store, must-revalidate
133
- X-Powered-By:
134
- - Undertow/1
135
- Server:
136
- - WildFly/10
137
- Pragma:
138
- - no-cache
139
- Date:
140
- - Thu, 18 Feb 2016 22:30:17 GMT
141
- X-Total-Count:
142
- - '7'
143
- Connection:
144
- - keep-alive
145
- Content-Type:
146
- - application/json
147
- Content-Length:
148
- - '3074'
149
- Link:
150
- - <http://localhost:8080/hawkular/inventory/path/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space/relationships?named=defines>;
151
- rel="current"
152
- body:
153
- encoding: ASCII-8BIT
154
- string: |-
155
- [ {
156
- "id" : "1i00-9hc-1g5x-1clc",
157
- "name" : "defines",
158
- "source" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
159
- "target" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=hugetlbfs%5D~MT~Total%20Space"
160
- }, {
161
- "id" : "1icg-9hc-1g5x-1czk",
162
- "name" : "defines",
163
- "source" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
164
- "target" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=tmpfs%5D~MT~Total%20Space"
165
- }, {
166
- "id" : "1iow-9hc-1g5x-1dds",
167
- "name" : "defines",
168
- "source" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
169
- "target" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=sunrpc%5D~MT~Total%20Space"
170
- }, {
171
- "id" : "1j7k-9hc-1g5x-1dz4",
172
- "name" : "defines",
173
- "source" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
174
- "target" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=%2Fdev%2Fmapper%2Ffedora-home%5D~MT~Total%20Space"
175
- }, {
176
- "id" : "1jk0-9hc-1g5x-1edc",
177
- "name" : "defines",
178
- "source" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
179
- "target" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=mqueue%5D~MT~Total%20Space"
180
- }, {
181
- "id" : "1jq8-9hc-1g5x-1ekg",
182
- "name" : "defines",
183
- "source" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
184
- "target" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=~%5D~MT~Total%20Space"
185
- }, {
186
- "id" : "1k2o-9hc-1g5x-1eyo",
187
- "name" : "defines",
188
- "source" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
189
- "target" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=%2Fdev%2Fsda3%5D~MT~Total%20Space"
190
- } ]
191
- http_version:
192
- recorded_at: Thu, 18 Feb 2016 22:30:17 GMT
193
- - request:
194
- method: get
195
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/path/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=hugetlbfs%5D~MT~Total%20Space
196
- body:
197
- encoding: US-ASCII
198
- string: ''
199
- headers:
200
- Accept:
201
- - application/json
202
- Accept-Encoding:
203
- - gzip, deflate
204
- User-Agent:
205
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
206
- Hawkular-Tenant:
207
- - 28026b36-8fe4-4332-84c8-524e173a68bf
208
- Tenantid:
209
- - 28026b36-8fe4-4332-84c8-524e173a68bf
210
- Content-Type:
211
- - application/json
212
- response:
213
- status:
214
- code: 200
215
- message: OK
216
- headers:
217
- Expires:
218
- - '0'
219
- Cache-Control:
220
- - no-cache, no-store, must-revalidate
221
- X-Powered-By:
222
- - Undertow/1
223
- Server:
224
- - WildFly/10
225
- Pragma:
226
- - no-cache
227
- Date:
228
- - Thu, 18 Feb 2016 22:30:17 GMT
229
- Connection:
230
- - keep-alive
231
- Content-Type:
232
- - application/json
233
- Content-Length:
234
- - '726'
235
- body:
236
- encoding: ASCII-8BIT
237
- string: |-
238
- {
239
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=hugetlbfs%5D~MT~Total%20Space",
240
- "type" : {
241
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
242
- "name" : "Total Space",
243
- "unit" : "BYTES",
244
- "type" : "GAUGE",
245
- "collectionInterval" : 300,
246
- "id" : "Total Space"
247
- },
248
- "name" : "Total Space",
249
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/platform~/OPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem/FILE_STORE=hugetlbfs]~MT~Total Space"
250
- }
251
- http_version:
252
- recorded_at: Thu, 18 Feb 2016 22:30:17 GMT
253
- - request:
254
- method: get
255
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/path/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=tmpfs%5D~MT~Total%20Space
256
- body:
257
- encoding: US-ASCII
258
- string: ''
259
- headers:
260
- Accept:
261
- - application/json
262
- Accept-Encoding:
263
- - gzip, deflate
264
- User-Agent:
265
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
266
- Hawkular-Tenant:
267
- - 28026b36-8fe4-4332-84c8-524e173a68bf
268
- Tenantid:
269
- - 28026b36-8fe4-4332-84c8-524e173a68bf
270
- Content-Type:
271
- - application/json
272
- response:
273
- status:
274
- code: 200
275
- message: OK
276
- headers:
277
- Expires:
278
- - '0'
279
- Cache-Control:
280
- - no-cache, no-store, must-revalidate
281
- X-Powered-By:
282
- - Undertow/1
283
- Server:
284
- - WildFly/10
285
- Pragma:
286
- - no-cache
287
- Date:
288
- - Thu, 18 Feb 2016 22:30:17 GMT
289
- Connection:
290
- - keep-alive
291
- Content-Type:
292
- - application/json
293
- Content-Length:
294
- - '718'
295
- body:
296
- encoding: ASCII-8BIT
297
- string: |-
298
- {
299
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=tmpfs%5D~MT~Total%20Space",
300
- "type" : {
301
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
302
- "name" : "Total Space",
303
- "unit" : "BYTES",
304
- "type" : "GAUGE",
305
- "collectionInterval" : 300,
306
- "id" : "Total Space"
307
- },
308
- "name" : "Total Space",
309
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/platform~/OPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem/FILE_STORE=tmpfs]~MT~Total Space"
310
- }
311
- http_version:
312
- recorded_at: Thu, 18 Feb 2016 22:30:17 GMT
313
- - request:
314
- method: get
315
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/path/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=sunrpc%5D~MT~Total%20Space
316
- body:
317
- encoding: US-ASCII
318
- string: ''
319
- headers:
320
- Accept:
321
- - application/json
322
- Accept-Encoding:
323
- - gzip, deflate
324
- User-Agent:
325
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
326
- Hawkular-Tenant:
327
- - 28026b36-8fe4-4332-84c8-524e173a68bf
328
- Tenantid:
329
- - 28026b36-8fe4-4332-84c8-524e173a68bf
330
- Content-Type:
331
- - application/json
332
- response:
333
- status:
334
- code: 200
335
- message: OK
336
- headers:
337
- Expires:
338
- - '0'
339
- Cache-Control:
340
- - no-cache, no-store, must-revalidate
341
- X-Powered-By:
342
- - Undertow/1
343
- Server:
344
- - WildFly/10
345
- Pragma:
346
- - no-cache
347
- Date:
348
- - Thu, 18 Feb 2016 22:30:17 GMT
349
- Connection:
350
- - keep-alive
351
- Content-Type:
352
- - application/json
353
- Content-Length:
354
- - '720'
355
- body:
356
- encoding: ASCII-8BIT
357
- string: |-
358
- {
359
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=sunrpc%5D~MT~Total%20Space",
360
- "type" : {
361
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
362
- "name" : "Total Space",
363
- "unit" : "BYTES",
364
- "type" : "GAUGE",
365
- "collectionInterval" : 300,
366
- "id" : "Total Space"
367
- },
368
- "name" : "Total Space",
369
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/platform~/OPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem/FILE_STORE=sunrpc]~MT~Total Space"
370
- }
371
- http_version:
372
- recorded_at: Thu, 18 Feb 2016 22:30:17 GMT
373
- - request:
374
- method: get
375
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/path/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=%2Fdev%2Fmapper%2Ffedora-home%5D~MT~Total%20Space
376
- body:
377
- encoding: US-ASCII
378
- string: ''
379
- headers:
380
- Accept:
381
- - application/json
382
- Accept-Encoding:
383
- - gzip, deflate
384
- User-Agent:
385
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
386
- Hawkular-Tenant:
387
- - 28026b36-8fe4-4332-84c8-524e173a68bf
388
- Tenantid:
389
- - 28026b36-8fe4-4332-84c8-524e173a68bf
390
- Content-Type:
391
- - application/json
392
- response:
393
- status:
394
- code: 200
395
- message: OK
396
- headers:
397
- Expires:
398
- - '0'
399
- Cache-Control:
400
- - no-cache, no-store, must-revalidate
401
- X-Powered-By:
402
- - Undertow/1
403
- Server:
404
- - WildFly/10
405
- Pragma:
406
- - no-cache
407
- Date:
408
- - Thu, 18 Feb 2016 22:30:17 GMT
409
- Connection:
410
- - keep-alive
411
- Content-Type:
412
- - application/json
413
- Content-Length:
414
- - '760'
415
- body:
416
- encoding: ASCII-8BIT
417
- string: |-
418
- {
419
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=%2Fdev%2Fmapper%2Ffedora-home%5D~MT~Total%20Space",
420
- "type" : {
421
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
422
- "name" : "Total Space",
423
- "unit" : "BYTES",
424
- "type" : "GAUGE",
425
- "collectionInterval" : 300,
426
- "id" : "Total Space"
427
- },
428
- "name" : "Total Space",
429
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/platform~/OPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem/FILE_STORE=/dev/mapper/fedora-home]~MT~Total Space"
430
- }
431
- http_version:
432
- recorded_at: Thu, 18 Feb 2016 22:30:17 GMT
433
- - request:
434
- method: get
435
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/path/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=mqueue%5D~MT~Total%20Space
436
- body:
437
- encoding: US-ASCII
438
- string: ''
439
- headers:
440
- Accept:
441
- - application/json
442
- Accept-Encoding:
443
- - gzip, deflate
444
- User-Agent:
445
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
446
- Hawkular-Tenant:
447
- - 28026b36-8fe4-4332-84c8-524e173a68bf
448
- Tenantid:
449
- - 28026b36-8fe4-4332-84c8-524e173a68bf
450
- Content-Type:
451
- - application/json
452
- response:
453
- status:
454
- code: 200
455
- message: OK
456
- headers:
457
- Expires:
458
- - '0'
459
- Cache-Control:
460
- - no-cache, no-store, must-revalidate
461
- X-Powered-By:
462
- - Undertow/1
463
- Server:
464
- - WildFly/10
465
- Pragma:
466
- - no-cache
467
- Date:
468
- - Thu, 18 Feb 2016 22:30:17 GMT
469
- Connection:
470
- - keep-alive
471
- Content-Type:
472
- - application/json
473
- Content-Length:
474
- - '720'
475
- body:
476
- encoding: ASCII-8BIT
477
- string: |-
478
- {
479
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=mqueue%5D~MT~Total%20Space",
480
- "type" : {
481
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
482
- "name" : "Total Space",
483
- "unit" : "BYTES",
484
- "type" : "GAUGE",
485
- "collectionInterval" : 300,
486
- "id" : "Total Space"
487
- },
488
- "name" : "Total Space",
489
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/platform~/OPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem/FILE_STORE=mqueue]~MT~Total Space"
490
- }
491
- http_version:
492
- recorded_at: Thu, 18 Feb 2016 22:30:17 GMT
493
- - request:
494
- method: get
495
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/path/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=~%5D~MT~Total%20Space
496
- body:
497
- encoding: US-ASCII
498
- string: ''
499
- headers:
500
- Accept:
501
- - application/json
502
- Accept-Encoding:
503
- - gzip, deflate
504
- User-Agent:
505
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
506
- Hawkular-Tenant:
507
- - 28026b36-8fe4-4332-84c8-524e173a68bf
508
- Tenantid:
509
- - 28026b36-8fe4-4332-84c8-524e173a68bf
510
- Content-Type:
511
- - application/json
512
- response:
513
- status:
514
- code: 200
515
- message: OK
516
- headers:
517
- Expires:
518
- - '0'
519
- Cache-Control:
520
- - no-cache, no-store, must-revalidate
521
- X-Powered-By:
522
- - Undertow/1
523
- Server:
524
- - WildFly/10
525
- Pragma:
526
- - no-cache
527
- Date:
528
- - Thu, 18 Feb 2016 22:30:17 GMT
529
- Connection:
530
- - keep-alive
531
- Content-Type:
532
- - application/json
533
- Content-Length:
534
- - '710'
535
- body:
536
- encoding: ASCII-8BIT
537
- string: |-
538
- {
539
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=~%5D~MT~Total%20Space",
540
- "type" : {
541
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
542
- "name" : "Total Space",
543
- "unit" : "BYTES",
544
- "type" : "GAUGE",
545
- "collectionInterval" : 300,
546
- "id" : "Total Space"
547
- },
548
- "name" : "Total Space",
549
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/platform~/OPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem/FILE_STORE=~]~MT~Total Space"
550
- }
551
- http_version:
552
- recorded_at: Thu, 18 Feb 2016 22:30:17 GMT
553
- - request:
554
- method: get
555
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/path/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=%2Fdev%2Fsda3%5D~MT~Total%20Space
556
- body:
557
- encoding: US-ASCII
558
- string: ''
559
- headers:
560
- Accept:
561
- - application/json
562
- Accept-Encoding:
563
- - gzip, deflate
564
- User-Agent:
565
- - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
566
- Hawkular-Tenant:
567
- - 28026b36-8fe4-4332-84c8-524e173a68bf
568
- Tenantid:
569
- - 28026b36-8fe4-4332-84c8-524e173a68bf
570
- Content-Type:
571
- - application/json
572
- response:
573
- status:
574
- code: 200
575
- message: OK
576
- headers:
577
- Expires:
578
- - '0'
579
- Cache-Control:
580
- - no-cache, no-store, must-revalidate
581
- X-Powered-By:
582
- - Undertow/1
583
- Server:
584
- - WildFly/10
585
- Pragma:
586
- - no-cache
587
- Date:
588
- - Thu, 18 Feb 2016 22:30:17 GMT
589
- Connection:
590
- - keep-alive
591
- Content-Type:
592
- - application/json
593
- Content-Length:
594
- - '730'
595
- body:
596
- encoding: ASCII-8BIT
597
- string: |-
598
- {
599
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/m;MI~R~%5Bf1cb161f-4de3-44b9-a2a4-bdc5a2064f88%2Fplatform~%2FOPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem%2FFILE_STORE=%2Fdev%2Fsda3%5D~MT~Total%20Space",
600
- "type" : {
601
- "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Total%20Space",
602
- "name" : "Total Space",
603
- "unit" : "BYTES",
604
- "type" : "GAUGE",
605
- "collectionInterval" : 300,
606
- "id" : "Total Space"
607
- },
608
- "name" : "Total Space",
609
- "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/platform~/OPERATING_SYSTEM=f1cb161f-4de3-44b9-a2a4-bdc5a2064f88_OperatingSystem/FILE_STORE=/dev/sda3]~MT~Total Space"
610
- }
611
- http_version:
612
- recorded_at: Thu, 18 Feb 2016 22:30:17 GMT
613
- recorded_with: VCR 3.0.1