hawkular-client 0.2.0 → 0.2.1

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 (86) hide show
  1. checksums.yaml +4 -4
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +2 -1
  4. data/.rubocop.yml +19 -6
  5. data/CHANGES.rdoc +13 -3
  6. data/README.rdoc +9 -3
  7. data/hawkularclient.gemspec +8 -4
  8. data/lib/alerts/alerts_api.rb +202 -32
  9. data/lib/hawkular.rb +35 -67
  10. data/lib/hawkular_all.rb +2 -0
  11. data/lib/inventory/inventory_api.rb +459 -130
  12. data/lib/metrics/metric_api.rb +14 -9
  13. data/lib/operations/operations_api.rb +247 -0
  14. data/lib/tokens/tokens_api.rb +33 -0
  15. data/lib/version.rb +1 -1
  16. data/spec/integration/alerts_spec.rb +272 -20
  17. data/spec/integration/hello-world-definitions.json +46 -0
  18. data/spec/integration/inventory_spec.rb +253 -89
  19. data/spec/integration/metric_spec.rb +36 -0
  20. data/spec/integration/operations_spec.rb +420 -0
  21. data/spec/integration/tokens_spec.rb +45 -0
  22. data/spec/resources/driver.jar +0 -0
  23. data/spec/resources/sample.war +0 -0
  24. data/spec/spec_helper.rb +30 -6
  25. data/spec/unit/base_spec.rb +22 -1
  26. data/spec/unit/canonical_path_spec.rb +92 -0
  27. data/spec/vcr/vcr_setup.rb +3 -4
  28. data/spec/vcr_cassettes/Alert/EndToEnd/Should_create_and_fire_a_trigger.yml +1187 -0
  29. data/spec/vcr_cassettes/Alert/Events/Should_list_events.yml +101 -0
  30. data/spec/vcr_cassettes/Alert/Events/Should_list_events_using_criteria.yml +79 -0
  31. data/spec/vcr_cassettes/Alert/Events/Should_not_list_events_using_criteria.yml +49 -0
  32. data/spec/vcr_cassettes/Alert/Triggers/Should_bulk_load_triggers.yml +225 -0
  33. data/spec/vcr_cassettes/Alert/Triggers/Should_create_a_basic_trigger_with_action.yml +355 -0
  34. data/spec/vcr_cassettes/Alert/Triggers/Should_create_an_action.yml +134 -0
  35. data/spec/vcr_cassettes/Alert/Triggers/Should_create_an_action_for_webhooks.yml +220 -0
  36. data/spec/vcr_cassettes/Alert/Triggers/Should_get_the_action_definitions.yml +218 -0
  37. data/spec/vcr_cassettes/Alert/Triggers/Should_not_create_an_action_for_unknown_plugin.yml +46 -0
  38. data/spec/vcr_cassettes/Alert/Triggers/Should_not_create_an_action_for_unknown_properties.yml +134 -0
  39. data/spec/vcr_cassettes/Counter_metrics/Should_get_metrics_with_limit_and_order.yml +270 -0
  40. data/spec/vcr_cassettes/Inventory/Client_should_listen_on_various_inventory_events.json +47 -0
  41. data/spec/vcr_cassettes/Inventory/Client_should_listen_on_various_inventory_events.yml +191 -0
  42. data/spec/vcr_cassettes/Inventory/Helpers/generate_some_events_for_websocket.yml +507 -0
  43. data/spec/vcr_cassettes/Inventory/Should_List_datasources_with_no_props.yml +74 -69
  44. data/spec/vcr_cassettes/Inventory/{Should_list_types_without_feed.yml → Should_create_a_feed.yml} +29 -32
  45. data/spec/vcr_cassettes/Inventory/Should_create_a_feed_again.yml +211 -0
  46. data/spec/vcr_cassettes/Inventory/Should_create_a_resource_.yml +355 -0
  47. data/spec/vcr_cassettes/Inventory/Should_create_a_resource_with_metric.yml +786 -0
  48. data/spec/vcr_cassettes/Inventory/Should_create_a_resourcetype.yml +205 -0
  49. data/spec/vcr_cassettes/Inventory/Should_create_and_delete_feed.yml +201 -0
  50. data/spec/vcr_cassettes/Inventory/Should_create_and_get_a_resource.yml +419 -0
  51. data/spec/vcr_cassettes/Inventory/Should_list_URLs.yml +39 -27
  52. data/spec/vcr_cassettes/Inventory/Should_list_WildFlys.yml +37 -29
  53. data/spec/vcr_cassettes/Inventory/Should_list_WildFlys_with_props.yml +53 -45
  54. data/spec/vcr_cassettes/Inventory/Should_list_all_the_resource_types.yml +177 -0
  55. data/spec/vcr_cassettes/Inventory/Should_list_children_of_WildFly.yml +230 -56
  56. data/spec/vcr_cassettes/Inventory/Should_list_feeds.yml +27 -24
  57. data/spec/vcr_cassettes/Inventory/Should_list_heap_metrics_for_WildFlys.yml +586 -119
  58. data/spec/vcr_cassettes/Inventory/Should_list_metrics_for_WildFlys.yml +220 -59
  59. data/spec/vcr_cassettes/Inventory/Should_list_metrics_of_given_metric_type.yml +613 -0
  60. data/spec/vcr_cassettes/Inventory/Should_list_metrics_of_given_resource_type.yml +333 -0
  61. data/spec/vcr_cassettes/Inventory/Should_list_recursive_children_of_WildFly.yml +2064 -0
  62. data/spec/vcr_cassettes/Inventory/Should_list_relationships_of_WildFly.yml +460 -0
  63. data/spec/vcr_cassettes/Inventory/Should_list_types_with_bad_feed.yml +26 -25
  64. data/spec/vcr_cassettes/Inventory/Should_list_types_with_feed.yml +102 -36
  65. data/spec/vcr_cassettes/Inventory/Should_not_find_an_unknown_resource.yml +54 -0
  66. data/spec/vcr_cassettes/Inventory/Tenants/Should_Get_Tenant_For_Explicit_Credentials.yml +50 -0
  67. data/spec/vcr_cassettes/Inventory/Tenants/Should_Get_Tenant_For_Implicit_Credentials.yml +50 -0
  68. data/spec/vcr_cassettes/Operation/Helpers/get_tenant.yml +50 -0
  69. data/spec/vcr_cassettes/Operation/Operation/Add_JDBC_driver_should_add_the_driver.json +26 -0
  70. data/spec/vcr_cassettes/Operation/Operation/Add_datasource_should_be_doable.json +26 -0
  71. data/spec/vcr_cassettes/Operation/Operation/Add_deployment_should_be_doable.json +26 -0
  72. data/spec/vcr_cassettes/Operation/Operation/Redeploy_can_be_run_multiple_times_in_parallel.json +40 -0
  73. data/spec/vcr_cassettes/Operation/Operation/Redeploy_should_be_performed_and_eventually_respond_with_success.json +26 -0
  74. data/spec/vcr_cassettes/Operation/Operation/Redeploy_should_not_be_performed_if_resource_path_is_wrong.json +26 -0
  75. data/spec/vcr_cassettes/Operation/Operation/Remove_JDBC_driver_should_be_performed_and_eventually_respond_with_success.json +26 -0
  76. data/spec/vcr_cassettes/Operation/Operation/Remove_datasource_should_be_performed_and_eventually_respond_with_success.json +26 -0
  77. data/spec/vcr_cassettes/Operation/Operation/Remove_deployment_should_be_performed_and_eventually_respond_with_success.json +26 -0
  78. data/spec/vcr_cassettes/Operation/Operation/Undeploy_should_be_performed_and_eventually_respond_with_success.json +26 -0
  79. data/spec/vcr_cassettes/Operation/Operation/should_not_be_possible_to_perform_on_closed_client.json +12 -0
  80. data/spec/vcr_cassettes/Operation/Websocket_connection/should_be_established.json +9 -0
  81. data/spec/vcr_cassettes/Tokens/Should_be_able_to_create_a_new_token_for_an_actual_user.yml +57 -0
  82. data/spec/vcr_cassettes/Tokens/Should_be_able_to_list_the_available_tokens.yml +49 -0
  83. data/spec/vcr_cassettes/Tokens/Should_get_a_401_when_attempting_to_create_a_token_with_a_wrong_password.yml +56 -0
  84. data/spec/vcr_cassettes/Tokens/Should_get_a_401_when_attempting_to_create_a_token_without_a_password.yml +55 -0
  85. metadata +175 -11
  86. data/lib/metrics/version.rb +0 -7
@@ -11,17 +11,15 @@ 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
14
16
  Content-Type:
15
17
  - application/json
16
- User-Agent:
17
- - Ruby
18
18
  response:
19
19
  status:
20
20
  code: 200
21
21
  message: OK
22
22
  headers:
23
- Content-Encoding:
24
- - gzip
25
23
  Expires:
26
24
  - '0'
27
25
  Cache-Control:
@@ -29,24 +27,26 @@ http_interactions:
29
27
  X-Powered-By:
30
28
  - Undertow/1
31
29
  Server:
32
- - WildFly/9
30
+ - WildFly/10
33
31
  Pragma:
34
32
  - no-cache
35
33
  Date:
36
- - Fri, 06 Nov 2015 15:09:05 GMT
34
+ - Thu, 18 Feb 2016 22:30:14 GMT
37
35
  Connection:
38
36
  - keep-alive
39
37
  Content-Type:
40
38
  - application/json
41
39
  Content-Length:
42
- - '85'
40
+ - '105'
43
41
  body:
44
42
  encoding: ASCII-8BIT
45
- string: !binary |-
46
- H4sIAAAAAAAAAKvmUlBQKkgsyVBSsFJQ0i+xNrIwMDJLMjbTtUhLNdE1MTY2
47
- 0rUwSbbQNTUySTU0N040s0hKU9IB6cpMAeshSgNXLQAnmwH5aQAAAA==
43
+ string: |-
44
+ {
45
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf",
46
+ "id" : "28026b36-8fe4-4332-84c8-524e173a68bf"
47
+ }
48
48
  http_version:
49
- recorded_at: Fri, 06 Nov 2015 15:09:05 GMT
49
+ recorded_at: Thu, 18 Feb 2016 22:30:14 GMT
50
50
  - request:
51
51
  method: get
52
52
  uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds
@@ -58,17 +58,19 @@ http_interactions:
58
58
  - application/json
59
59
  Accept-Encoding:
60
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
61
67
  Content-Type:
62
68
  - application/json
63
- User-Agent:
64
- - Ruby
65
69
  response:
66
70
  status:
67
71
  code: 200
68
72
  message: OK
69
73
  headers:
70
- Content-Encoding:
71
- - gzip
72
74
  Expires:
73
75
  - '0'
74
76
  Cache-Control:
@@ -76,11 +78,11 @@ http_interactions:
76
78
  X-Powered-By:
77
79
  - Undertow/1
78
80
  Server:
79
- - WildFly/9
81
+ - WildFly/10
80
82
  Pragma:
81
83
  - no-cache
82
84
  Date:
83
- - Fri, 06 Nov 2015 15:09:05 GMT
85
+ - Thu, 18 Feb 2016 22:30:14 GMT
84
86
  X-Total-Count:
85
87
  - '1'
86
88
  Connection:
@@ -88,15 +90,16 @@ http_interactions:
88
90
  Content-Type:
89
91
  - application/json
90
92
  Content-Length:
91
- - '104'
93
+ - '148'
92
94
  Link:
93
95
  - <http://localhost:8080/hawkular/inventory/feeds>; rel="current"
94
96
  body:
95
97
  encoding: ASCII-8BIT
96
- string: !binary |-
97
- H4sIAAAAAAAAAItWqOZSUFAqSCzJUFKwUlDSL7E2sjAwMksyNtO1SEs10TUx
98
- NjbStTBJttA1NTJJNTQ3TjSzSErTT7UuSS0u0U+zLs5LLSpR0gEZkpkCNgIi
99
- wlWrEAsAWqDu6l0AAAA=
98
+ string: |-
99
+ [ {
100
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88",
101
+ "id" : "f1cb161f-4de3-44b9-a2a4-bdc5a2064f88"
102
+ } ]
100
103
  http_version:
101
- recorded_at: Fri, 06 Nov 2015 15:09:05 GMT
102
- recorded_with: VCR 3.0.0
104
+ recorded_at: Thu, 18 Feb 2016 22:30:14 GMT
105
+ recorded_with: VCR 3.0.1
@@ -11,17 +11,15 @@ 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
14
16
  Content-Type:
15
17
  - application/json
16
- User-Agent:
17
- - Ruby
18
18
  response:
19
19
  status:
20
20
  code: 200
21
21
  message: OK
22
22
  headers:
23
- Content-Encoding:
24
- - gzip
25
23
  Expires:
26
24
  - '0'
27
25
  Cache-Control:
@@ -29,27 +27,29 @@ http_interactions:
29
27
  X-Powered-By:
30
28
  - Undertow/1
31
29
  Server:
32
- - WildFly/9
30
+ - WildFly/10
33
31
  Pragma:
34
32
  - no-cache
35
33
  Date:
36
- - Fri, 06 Nov 2015 21:24:41 GMT
34
+ - Thu, 18 Feb 2016 22:30:17 GMT
37
35
  Connection:
38
36
  - keep-alive
39
37
  Content-Type:
40
38
  - application/json
41
39
  Content-Length:
42
- - '85'
40
+ - '105'
43
41
  body:
44
42
  encoding: ASCII-8BIT
45
- string: !binary |-
46
- H4sIAAAAAAAAAKvmUlBQKkgsyVBSsFJQ0i+xNrIwMDJLMjbTtUhLNdE1MTY2
47
- 0rUwSbbQNTUySTU0N040s0hKU9IB6cpMAeshSgNXLQAnmwH5aQAAAA==
48
- http_version:
49
- recorded_at: Fri, 06 Nov 2015 21:24:41 GMT
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
50
  - request:
51
51
  method: get
52
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/snert/resourceTypes/WildFly%20Server/resources
52
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resourceTypes/WildFly%20Server/resources
53
53
  body:
54
54
  encoding: US-ASCII
55
55
  string: ''
@@ -58,17 +58,19 @@ http_interactions:
58
58
  - application/json
59
59
  Accept-Encoding:
60
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
61
67
  Content-Type:
62
68
  - application/json
63
- User-Agent:
64
- - Ruby
65
69
  response:
66
70
  status:
67
71
  code: 200
68
72
  message: OK
69
73
  headers:
70
- Content-Encoding:
71
- - gzip
72
74
  Expires:
73
75
  - '0'
74
76
  Cache-Control:
@@ -76,11 +78,11 @@ http_interactions:
76
78
  X-Powered-By:
77
79
  - Undertow/1
78
80
  Server:
79
- - WildFly/9
81
+ - WildFly/10
80
82
  Pragma:
81
83
  - no-cache
82
84
  Date:
83
- - Fri, 06 Nov 2015 21:24:41 GMT
85
+ - Thu, 18 Feb 2016 22:30:17 GMT
84
86
  X-Total-Count:
85
87
  - '1'
86
88
  Connection:
@@ -88,22 +90,28 @@ http_interactions:
88
90
  Content-Type:
89
91
  - application/json
90
92
  Content-Length:
91
- - '177'
93
+ - '351'
92
94
  Link:
93
- - <http://localhost:8080/hawkular/inventory/feeds/snert/resourceTypes/WildFly%20Server/resources>;
95
+ - <http://localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resourceTypes/WildFly%20Server/resources>;
94
96
  rel="current"
95
97
  body:
96
98
  encoding: ASCII-8BIT
97
- string: !binary |-
98
- H4sIAAAAAAAAAItWqOZSUFAqSCzJUFKwUlDSL7E2sjAwMksyNtO1SEs10TUx
99
- NjbStTBJttA1NTJJNTQ3TjSzSErTT7UuSS0u0U+zLs5LLSrRL4LQdT75yYk5
100
- dXVKOiBDSyoLUkGGgmyghh0l1uGZOSluOZWqRgbBqUVlqUVge4BG5yXmgm1S
101
- gipQQJXOTMEmCZSrBbsTh26FaLC9sRDPQM1A9SZXrUIsAH0JV21CAQAA
102
- http_version:
103
- recorded_at: Fri, 06 Nov 2015 21:24:41 GMT
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:17 GMT
104
112
  - request:
105
113
  method: get
106
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/snert/resources/snert~Local~~/metrics
114
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resources/Local~~/metrics
107
115
  body:
108
116
  encoding: US-ASCII
109
117
  string: ''
@@ -112,17 +120,19 @@ http_interactions:
112
120
  - application/json
113
121
  Accept-Encoding:
114
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
115
129
  Content-Type:
116
130
  - application/json
117
- User-Agent:
118
- - Ruby
119
131
  response:
120
132
  status:
121
133
  code: 200
122
134
  message: OK
123
135
  headers:
124
- Content-Encoding:
125
- - gzip
126
136
  Expires:
127
137
  - '0'
128
138
  Cache-Control:
@@ -130,11 +140,11 @@ http_interactions:
130
140
  X-Powered-By:
131
141
  - Undertow/1
132
142
  Server:
133
- - WildFly/9
143
+ - WildFly/10
134
144
  Pragma:
135
145
  - no-cache
136
146
  Date:
137
- - Fri, 06 Nov 2015 21:24:41 GMT
147
+ - Thu, 18 Feb 2016 22:30:17 GMT
138
148
  X-Total-Count:
139
149
  - '14'
140
150
  Connection:
@@ -142,36 +152,187 @@ http_interactions:
142
152
  Content-Type:
143
153
  - application/json
144
154
  Content-Length:
145
- - '800'
155
+ - '10779'
146
156
  Link:
147
- - <http://localhost:8080/hawkular/inventory/feeds/snert/resources/snert~Local~~/metrics>;
157
+ - <http://localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resources/Local~~/metrics>;
148
158
  rel="current"
149
159
  body:
150
160
  encoding: ASCII-8BIT
151
- string: !binary |-
152
- H4sIAAAAAAAAANVZ0Y6iMBR9369oSOZtjLPquGZ9YhzX3WR1EsVMNpN5QKxO
153
- N4AuFDNmI9++FYFBbaGUKuwLgcI997ScHO4tL+DvJwCUtY7fFPAVKHXcbXTu
154
- Gu1Zs13rLGCr1mo2G7VOy+jU7hst+PlLU293Zos67GLo4vqi69rQwXWrO/zh
155
- j/2b+4fg2v+5MnTTJ9eP/lDzn5E5/2Zubxp36nLpwKWO4ZxcPMMZOQ4hdpDh
156
- +ke3JtDZmBCTszH845FM5ExDFlRu92zxdg33bPfUZZDHXckMCSlbtwKOSggN
157
- PqIBgQXnoCCEBCEgSMJ5NsIB3Ohp1I8Go3VQBup0EI+iuYy8BGsXLLbMiUTc
158
- ArG8HEnlNSEUYc672+vKeQitlbNNSOQ71NfkcurC+eWlmpmd9vYOQSAZApIB
159
- sdAefmn9SS6lMaHZWkplw6sWdt5r64HXPFQDow2Mn5lA10Ur262Ou6URFPOE
160
- A2Jw9xTtkt5GS1vE2ljTkOdsVMZVFfIY/oZG8qnqSTmdopgKIkwBOfeepiOt
161
- PxYWND11EUmzJyNP1AzW15a19uZAfY7sZUIshzEy0Ft5Nr68bjk50N5lHAqO
162
- A8FRmLidZuCzRcZBjFdLWRyq6oT99zVyKm2EqQzFrCOELMEGqZmLuCBzKvJM
163
- kM659J5ltLLDxqG3siyEcSm9C4sFR9cQhoKzQHEnzMzA3dLQyQm2NhQepcsn
164
- fGtD/b28jjdKzttiJp6XppEYOF+3G69bgWY3yFq6EFTD8CzPDL82gx45PHqO
165
- jonNlaCMLDYc7ycBAQY9cBpe5APHmYlbSmlUBZXF5FTVCoy2I3ulml4ORTmb
166
- rTl6gaJFGD21zJ3j/P2DMOvS/bMCRZhoBXbh8ku09pJXeJVddfEaDKkE/oft
167
- 5WyaYvZBcMvaaGalLuKGadOR54dM5qU74kdPWNIPNQqBHC0f9bearFY034+1
168
- M0oFG1DZv9dUlkBUzd9/r6Gz94uNjkx9hkyEt766XocFFXQupQzOzMn1PwyD
169
- 0wBw/Hh+NWTgnguBg0iErdI0EC88O+cOvP4DiWqq0D8iAAA=
170
- http_version:
171
- recorded_at: Fri, 06 Nov 2015 21:24:41 GMT
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:17 GMT
172
333
  - request:
173
334
  method: get
174
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/snert/resources/snert~Local~~/metrics
335
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resources/Local~~/metrics
175
336
  body:
176
337
  encoding: US-ASCII
177
338
  string: ''
@@ -180,17 +341,19 @@ http_interactions:
180
341
  - application/json
181
342
  Accept-Encoding:
182
343
  - gzip, deflate
344
+ User-Agent:
345
+ - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
346
+ Hawkular-Tenant:
347
+ - 28026b36-8fe4-4332-84c8-524e173a68bf
348
+ Tenantid:
349
+ - 28026b36-8fe4-4332-84c8-524e173a68bf
183
350
  Content-Type:
184
351
  - application/json
185
- User-Agent:
186
- - Ruby
187
352
  response:
188
353
  status:
189
354
  code: 200
190
355
  message: OK
191
356
  headers:
192
- Content-Encoding:
193
- - gzip
194
357
  Expires:
195
358
  - '0'
196
359
  Cache-Control:
@@ -198,11 +361,11 @@ http_interactions:
198
361
  X-Powered-By:
199
362
  - Undertow/1
200
363
  Server:
201
- - WildFly/9
364
+ - WildFly/10
202
365
  Pragma:
203
366
  - no-cache
204
367
  Date:
205
- - Fri, 06 Nov 2015 21:24:41 GMT
368
+ - Thu, 18 Feb 2016 22:30:17 GMT
206
369
  X-Total-Count:
207
370
  - '14'
208
371
  Connection:
@@ -210,36 +373,187 @@ http_interactions:
210
373
  Content-Type:
211
374
  - application/json
212
375
  Content-Length:
213
- - '800'
376
+ - '10779'
214
377
  Link:
215
- - <http://localhost:8080/hawkular/inventory/feeds/snert/resources/snert~Local~~/metrics>;
378
+ - <http://localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resources/Local~~/metrics>;
216
379
  rel="current"
217
380
  body:
218
381
  encoding: ASCII-8BIT
219
- string: !binary |-
220
- H4sIAAAAAAAAANVZ0Y6iMBR9369oSOZtjLPquGZ9YhzX3WR1EsVMNpN5QKxO
221
- N4AuFDNmI9++FYFBbaGUKuwLgcI997ScHO4tL+DvJwCUtY7fFPAVKHXcbXTu
222
- Gu1Zs13rLGCr1mo2G7VOy+jU7hst+PlLU293Zos67GLo4vqi69rQwXWrO/zh
223
- j/2b+4fg2v+5MnTTJ9eP/lDzn5E5/2Zubxp36nLpwKWO4ZxcPMMZOQ4hdpDh
224
- +ke3JtDZmBCTszH845FM5ExDFlRu92zxdg33bPfUZZDHXckMCSlbtwKOSggN
225
- PqIBgQXnoCCEBCEgSMJ5NsIB3Ohp1I8Go3VQBup0EI+iuYy8BGsXLLbMiUTc
226
- ArG8HEnlNSEUYc672+vKeQitlbNNSOQ71NfkcurC+eWlmpmd9vYOQSAZApIB
227
- sdAefmn9SS6lMaHZWkplw6sWdt5r64HXPFQDow2Mn5lA10Ur262Ou6URFPOE
228
- A2Jw9xTtkt5GS1vE2ljTkOdsVMZVFfIY/oZG8qnqSTmdopgKIkwBOfeepiOt
229
- PxYWND11EUmzJyNP1AzW15a19uZAfY7sZUIshzEy0Ft5Nr68bjk50N5lHAqO
230
- A8FRmLidZuCzRcZBjFdLWRyq6oT99zVyKm2EqQzFrCOELMEGqZmLuCBzKvJM
231
- kM659J5ltLLDxqG3siyEcSm9C4sFR9cQhoKzQHEnzMzA3dLQyQm2NhQepcsn
232
- fGtD/b28jjdKzttiJp6XppEYOF+3G69bgWY3yFq6EFTD8CzPDL82gx45PHqO
233
- jonNlaCMLDYc7ycBAQY9cBpe5APHmYlbSmlUBZXF5FTVCoy2I3ulml4ORTmb
234
- rTl6gaJFGD21zJ3j/P2DMOvS/bMCRZhoBXbh8ku09pJXeJVddfEaDKkE/oft
235
- 5WyaYvZBcMvaaGalLuKGadOR54dM5qU74kdPWNIPNQqBHC0f9bearFY034+1
236
- M0oFG1DZv9dUlkBUzd9/r6Gz94uNjkx9hkyEt766XocFFXQupQzOzMn1PwyD
237
- 0wBw/Hh+NWTgnguBg0iErdI0EC88O+cOvP4DiWqq0D8iAAA=
238
- http_version:
239
- recorded_at: Fri, 06 Nov 2015 21:24:41 GMT
382
+ string: |-
383
+ [ {
384
+ "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",
385
+ "type" : {
386
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~Accumulated%20GC%20Duration",
387
+ "name" : "WildFly Memory Metrics~Accumulated GC Duration",
388
+ "unit" : "NONE",
389
+ "type" : "COUNTER",
390
+ "collectionInterval" : 60,
391
+ "id" : "WildFly Memory Metrics~Accumulated GC Duration"
392
+ },
393
+ "name" : "WildFly Memory Metrics~Accumulated GC Duration",
394
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~Accumulated GC Duration"
395
+ }, {
396
+ "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",
397
+ "type" : {
398
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~Heap%20Used",
399
+ "name" : "WildFly Memory Metrics~Heap Used",
400
+ "unit" : "BYTES",
401
+ "type" : "GAUGE",
402
+ "collectionInterval" : 30,
403
+ "id" : "WildFly Memory Metrics~Heap Used"
404
+ },
405
+ "name" : "WildFly Memory Metrics~Heap Used",
406
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~Heap Used"
407
+ }, {
408
+ "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",
409
+ "type" : {
410
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Active%20Web%20Sessions",
411
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Active Web Sessions",
412
+ "unit" : "NONE",
413
+ "type" : "GAUGE",
414
+ "collectionInterval" : 60,
415
+ "id" : "WildFly Aggregated Web Metrics~Aggregated Active Web Sessions"
416
+ },
417
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Active Web Sessions",
418
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Active Web Sessions"
419
+ }, {
420
+ "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",
421
+ "type" : {
422
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~NonHeap%20Committed",
423
+ "name" : "WildFly Memory Metrics~NonHeap Committed",
424
+ "unit" : "NONE",
425
+ "type" : "GAUGE",
426
+ "collectionInterval" : 60,
427
+ "id" : "WildFly Memory Metrics~NonHeap Committed"
428
+ },
429
+ "name" : "WildFly Memory Metrics~NonHeap Committed",
430
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~NonHeap Committed"
431
+ }, {
432
+ "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",
433
+ "type" : {
434
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~NonHeap%20Used",
435
+ "name" : "WildFly Memory Metrics~NonHeap Used",
436
+ "unit" : "NONE",
437
+ "type" : "GAUGE",
438
+ "collectionInterval" : 30,
439
+ "id" : "WildFly Memory Metrics~NonHeap Used"
440
+ },
441
+ "name" : "WildFly Memory Metrics~NonHeap Used",
442
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~NonHeap Used"
443
+ }, {
444
+ "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",
445
+ "type" : {
446
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Expired%20Web%20Sessions",
447
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Expired Web Sessions",
448
+ "unit" : "NONE",
449
+ "type" : "COUNTER",
450
+ "collectionInterval" : 60,
451
+ "id" : "WildFly Aggregated Web Metrics~Aggregated Expired Web Sessions"
452
+ },
453
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Expired Web Sessions",
454
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Expired Web Sessions"
455
+ }, {
456
+ "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",
457
+ "type" : {
458
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~Heap%20Max",
459
+ "name" : "WildFly Memory Metrics~Heap Max",
460
+ "unit" : "NONE",
461
+ "type" : "GAUGE",
462
+ "collectionInterval" : 60,
463
+ "id" : "WildFly Memory Metrics~Heap Max"
464
+ },
465
+ "name" : "WildFly Memory Metrics~Heap Max",
466
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~Heap Max"
467
+ }, {
468
+ "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",
469
+ "type" : {
470
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Threading%20Metrics~Thread%20Count",
471
+ "name" : "WildFly Threading Metrics~Thread Count",
472
+ "unit" : "NONE",
473
+ "type" : "GAUGE",
474
+ "collectionInterval" : 120,
475
+ "id" : "WildFly Threading Metrics~Thread Count"
476
+ },
477
+ "name" : "WildFly Threading Metrics~Thread Count",
478
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Threading Metrics~Thread Count"
479
+ }, {
480
+ "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",
481
+ "type" : {
482
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Servlet%20Request%20Count",
483
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Count",
484
+ "unit" : "NONE",
485
+ "type" : "COUNTER",
486
+ "collectionInterval" : 60,
487
+ "id" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Count"
488
+ },
489
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Count",
490
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Servlet Request Count"
491
+ }, {
492
+ "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",
493
+ "type" : {
494
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Max%20Active%20Web%20Sessions",
495
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Max Active Web Sessions",
496
+ "unit" : "NONE",
497
+ "type" : "GAUGE",
498
+ "collectionInterval" : 60,
499
+ "id" : "WildFly Aggregated Web Metrics~Aggregated Max Active Web Sessions"
500
+ },
501
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Max Active Web Sessions",
502
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Max Active Web Sessions"
503
+ }, {
504
+ "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",
505
+ "type" : {
506
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~Heap%20Committed",
507
+ "name" : "WildFly Memory Metrics~Heap Committed",
508
+ "unit" : "NONE",
509
+ "type" : "GAUGE",
510
+ "collectionInterval" : 60,
511
+ "id" : "WildFly Memory Metrics~Heap Committed"
512
+ },
513
+ "name" : "WildFly Memory Metrics~Heap Committed",
514
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~Heap Committed"
515
+ }, {
516
+ "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",
517
+ "type" : {
518
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Rejected%20Web%20Sessions",
519
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Rejected Web Sessions",
520
+ "unit" : "NONE",
521
+ "type" : "COUNTER",
522
+ "collectionInterval" : 60,
523
+ "id" : "WildFly Aggregated Web Metrics~Aggregated Rejected Web Sessions"
524
+ },
525
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Rejected Web Sessions",
526
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Rejected Web Sessions"
527
+ }, {
528
+ "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",
529
+ "type" : {
530
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Servlet%20Request%20Time",
531
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Time",
532
+ "unit" : "NONE",
533
+ "type" : "COUNTER",
534
+ "collectionInterval" : 60,
535
+ "id" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Time"
536
+ },
537
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Time",
538
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Servlet Request Time"
539
+ }, {
540
+ "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",
541
+ "type" : {
542
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Server%20Availability~App%20Server",
543
+ "name" : "Server Availability~App Server",
544
+ "unit" : "NONE",
545
+ "type" : "AVAILABILITY",
546
+ "collectionInterval" : 30,
547
+ "id" : "Server Availability~App Server"
548
+ },
549
+ "name" : "Server Availability~App Server",
550
+ "id" : "AI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~AT~Server Availability~App Server"
551
+ } ]
552
+ http_version:
553
+ recorded_at: Thu, 18 Feb 2016 22:30:17 GMT
240
554
  - request:
241
555
  method: get
242
- uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/snert/resources/snert~Local~~/metrics
556
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resources/Local~~/metrics
243
557
  body:
244
558
  encoding: US-ASCII
245
559
  string: ''
@@ -248,17 +562,19 @@ http_interactions:
248
562
  - application/json
249
563
  Accept-Encoding:
250
564
  - gzip, deflate
565
+ User-Agent:
566
+ - rest-client/2.0.0.rc1 (linux-gnu x86_64) ruby/2.2.4p230
567
+ Hawkular-Tenant:
568
+ - 28026b36-8fe4-4332-84c8-524e173a68bf
569
+ Tenantid:
570
+ - 28026b36-8fe4-4332-84c8-524e173a68bf
251
571
  Content-Type:
252
572
  - application/json
253
- User-Agent:
254
- - Ruby
255
573
  response:
256
574
  status:
257
575
  code: 200
258
576
  message: OK
259
577
  headers:
260
- Content-Encoding:
261
- - gzip
262
578
  Expires:
263
579
  - '0'
264
580
  Cache-Control:
@@ -266,11 +582,11 @@ http_interactions:
266
582
  X-Powered-By:
267
583
  - Undertow/1
268
584
  Server:
269
- - WildFly/9
585
+ - WildFly/10
270
586
  Pragma:
271
587
  - no-cache
272
588
  Date:
273
- - Fri, 06 Nov 2015 21:24:41 GMT
589
+ - Thu, 18 Feb 2016 22:30:17 GMT
274
590
  X-Total-Count:
275
591
  - '14'
276
592
  Connection:
@@ -278,31 +594,182 @@ http_interactions:
278
594
  Content-Type:
279
595
  - application/json
280
596
  Content-Length:
281
- - '800'
597
+ - '10779'
282
598
  Link:
283
- - <http://localhost:8080/hawkular/inventory/feeds/snert/resources/snert~Local~~/metrics>;
599
+ - <http://localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resources/Local~~/metrics>;
284
600
  rel="current"
285
601
  body:
286
602
  encoding: ASCII-8BIT
287
- string: !binary |-
288
- H4sIAAAAAAAAANVZ0Y6iMBR9369oSOZtjLPquGZ9YhzX3WR1EsVMNpN5QKxO
289
- N4AuFDNmI9++FYFBbaGUKuwLgcI997ScHO4tL+DvJwCUtY7fFPAVKHXcbXTu
290
- Gu1Zs13rLGCr1mo2G7VOy+jU7hst+PlLU293Zos67GLo4vqi69rQwXWrO/zh
291
- j/2b+4fg2v+5MnTTJ9eP/lDzn5E5/2Zubxp36nLpwKWO4ZxcPMMZOQ4hdpDh
292
- +ke3JtDZmBCTszH845FM5ExDFlRu92zxdg33bPfUZZDHXckMCSlbtwKOSggN
293
- PqIBgQXnoCCEBCEgSMJ5NsIB3Ohp1I8Go3VQBup0EI+iuYy8BGsXLLbMiUTc
294
- ArG8HEnlNSEUYc672+vKeQitlbNNSOQ71NfkcurC+eWlmpmd9vYOQSAZApIB
295
- sdAefmn9SS6lMaHZWkplw6sWdt5r64HXPFQDow2Mn5lA10Ur262Ou6URFPOE
296
- A2Jw9xTtkt5GS1vE2ljTkOdsVMZVFfIY/oZG8qnqSTmdopgKIkwBOfeepiOt
297
- PxYWND11EUmzJyNP1AzW15a19uZAfY7sZUIshzEy0Ft5Nr68bjk50N5lHAqO
298
- A8FRmLidZuCzRcZBjFdLWRyq6oT99zVyKm2EqQzFrCOELMEGqZmLuCBzKvJM
299
- kM659J5ltLLDxqG3siyEcSm9C4sFR9cQhoKzQHEnzMzA3dLQyQm2NhQepcsn
300
- fGtD/b28jjdKzttiJp6XppEYOF+3G69bgWY3yFq6EFTD8CzPDL82gx45PHqO
301
- jonNlaCMLDYc7ycBAQY9cBpe5APHmYlbSmlUBZXF5FTVCoy2I3ulml4ORTmb
302
- rTl6gaJFGD21zJ3j/P2DMOvS/bMCRZhoBXbh8ku09pJXeJVddfEaDKkE/oft
303
- 5WyaYvZBcMvaaGalLuKGadOR54dM5qU74kdPWNIPNQqBHC0f9bearFY034+1
304
- M0oFG1DZv9dUlkBUzd9/r6Gz94uNjkx9hkyEt766XocFFXQupQzOzMn1PwyD
305
- 0wBw/Hh+NWTgnguBg0iErdI0EC88O+cOvP4DiWqq0D8iAAA=
306
- http_version:
307
- recorded_at: Fri, 06 Nov 2015 21:24:41 GMT
308
- recorded_with: VCR 3.0.0
603
+ string: |-
604
+ [ {
605
+ "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",
606
+ "type" : {
607
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~Accumulated%20GC%20Duration",
608
+ "name" : "WildFly Memory Metrics~Accumulated GC Duration",
609
+ "unit" : "NONE",
610
+ "type" : "COUNTER",
611
+ "collectionInterval" : 60,
612
+ "id" : "WildFly Memory Metrics~Accumulated GC Duration"
613
+ },
614
+ "name" : "WildFly Memory Metrics~Accumulated GC Duration",
615
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~Accumulated GC Duration"
616
+ }, {
617
+ "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",
618
+ "type" : {
619
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~Heap%20Used",
620
+ "name" : "WildFly Memory Metrics~Heap Used",
621
+ "unit" : "BYTES",
622
+ "type" : "GAUGE",
623
+ "collectionInterval" : 30,
624
+ "id" : "WildFly Memory Metrics~Heap Used"
625
+ },
626
+ "name" : "WildFly Memory Metrics~Heap Used",
627
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~Heap Used"
628
+ }, {
629
+ "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",
630
+ "type" : {
631
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Active%20Web%20Sessions",
632
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Active Web Sessions",
633
+ "unit" : "NONE",
634
+ "type" : "GAUGE",
635
+ "collectionInterval" : 60,
636
+ "id" : "WildFly Aggregated Web Metrics~Aggregated Active Web Sessions"
637
+ },
638
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Active Web Sessions",
639
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Active Web Sessions"
640
+ }, {
641
+ "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",
642
+ "type" : {
643
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~NonHeap%20Committed",
644
+ "name" : "WildFly Memory Metrics~NonHeap Committed",
645
+ "unit" : "NONE",
646
+ "type" : "GAUGE",
647
+ "collectionInterval" : 60,
648
+ "id" : "WildFly Memory Metrics~NonHeap Committed"
649
+ },
650
+ "name" : "WildFly Memory Metrics~NonHeap Committed",
651
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~NonHeap Committed"
652
+ }, {
653
+ "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",
654
+ "type" : {
655
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~NonHeap%20Used",
656
+ "name" : "WildFly Memory Metrics~NonHeap Used",
657
+ "unit" : "NONE",
658
+ "type" : "GAUGE",
659
+ "collectionInterval" : 30,
660
+ "id" : "WildFly Memory Metrics~NonHeap Used"
661
+ },
662
+ "name" : "WildFly Memory Metrics~NonHeap Used",
663
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~NonHeap Used"
664
+ }, {
665
+ "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",
666
+ "type" : {
667
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Expired%20Web%20Sessions",
668
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Expired Web Sessions",
669
+ "unit" : "NONE",
670
+ "type" : "COUNTER",
671
+ "collectionInterval" : 60,
672
+ "id" : "WildFly Aggregated Web Metrics~Aggregated Expired Web Sessions"
673
+ },
674
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Expired Web Sessions",
675
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Expired Web Sessions"
676
+ }, {
677
+ "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",
678
+ "type" : {
679
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~Heap%20Max",
680
+ "name" : "WildFly Memory Metrics~Heap Max",
681
+ "unit" : "NONE",
682
+ "type" : "GAUGE",
683
+ "collectionInterval" : 60,
684
+ "id" : "WildFly Memory Metrics~Heap Max"
685
+ },
686
+ "name" : "WildFly Memory Metrics~Heap Max",
687
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~Heap Max"
688
+ }, {
689
+ "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",
690
+ "type" : {
691
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Threading%20Metrics~Thread%20Count",
692
+ "name" : "WildFly Threading Metrics~Thread Count",
693
+ "unit" : "NONE",
694
+ "type" : "GAUGE",
695
+ "collectionInterval" : 120,
696
+ "id" : "WildFly Threading Metrics~Thread Count"
697
+ },
698
+ "name" : "WildFly Threading Metrics~Thread Count",
699
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Threading Metrics~Thread Count"
700
+ }, {
701
+ "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",
702
+ "type" : {
703
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Servlet%20Request%20Count",
704
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Count",
705
+ "unit" : "NONE",
706
+ "type" : "COUNTER",
707
+ "collectionInterval" : 60,
708
+ "id" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Count"
709
+ },
710
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Count",
711
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Servlet Request Count"
712
+ }, {
713
+ "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",
714
+ "type" : {
715
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Max%20Active%20Web%20Sessions",
716
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Max Active Web Sessions",
717
+ "unit" : "NONE",
718
+ "type" : "GAUGE",
719
+ "collectionInterval" : 60,
720
+ "id" : "WildFly Aggregated Web Metrics~Aggregated Max Active Web Sessions"
721
+ },
722
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Max Active Web Sessions",
723
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Max Active Web Sessions"
724
+ }, {
725
+ "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",
726
+ "type" : {
727
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Memory%20Metrics~Heap%20Committed",
728
+ "name" : "WildFly Memory Metrics~Heap Committed",
729
+ "unit" : "NONE",
730
+ "type" : "GAUGE",
731
+ "collectionInterval" : 60,
732
+ "id" : "WildFly Memory Metrics~Heap Committed"
733
+ },
734
+ "name" : "WildFly Memory Metrics~Heap Committed",
735
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Memory Metrics~Heap Committed"
736
+ }, {
737
+ "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",
738
+ "type" : {
739
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Rejected%20Web%20Sessions",
740
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Rejected Web Sessions",
741
+ "unit" : "NONE",
742
+ "type" : "COUNTER",
743
+ "collectionInterval" : 60,
744
+ "id" : "WildFly Aggregated Web Metrics~Aggregated Rejected Web Sessions"
745
+ },
746
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Rejected Web Sessions",
747
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Rejected Web Sessions"
748
+ }, {
749
+ "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",
750
+ "type" : {
751
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;WildFly%20Aggregated%20Web%20Metrics~Aggregated%20Servlet%20Request%20Time",
752
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Time",
753
+ "unit" : "NONE",
754
+ "type" : "COUNTER",
755
+ "collectionInterval" : 60,
756
+ "id" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Time"
757
+ },
758
+ "name" : "WildFly Aggregated Web Metrics~Aggregated Servlet Request Time",
759
+ "id" : "MI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~MT~WildFly Aggregated Web Metrics~Aggregated Servlet Request Time"
760
+ }, {
761
+ "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",
762
+ "type" : {
763
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/mt;Server%20Availability~App%20Server",
764
+ "name" : "Server Availability~App Server",
765
+ "unit" : "NONE",
766
+ "type" : "AVAILABILITY",
767
+ "collectionInterval" : 30,
768
+ "id" : "Server Availability~App Server"
769
+ },
770
+ "name" : "Server Availability~App Server",
771
+ "id" : "AI~R~[f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/Local~~]~AT~Server Availability~App Server"
772
+ } ]
773
+ http_version:
774
+ recorded_at: Thu, 18 Feb 2016 22:30:17 GMT
775
+ recorded_with: VCR 3.0.1