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.
- checksums.yaml +4 -4
- data/.rubocop.yml +3 -0
- data/.yardopts +1 -0
- data/CHANGES.rdoc +17 -4
- data/README.rdoc +15 -6
- data/api_breaking_changes.rdoc +79 -0
- data/hawkularclient.gemspec +6 -5
- data/lib/{alerts → hawkular/alerts}/alerts_api.rb +168 -7
- data/lib/{hawkular.rb → hawkular/base_client.rb} +7 -44
- data/lib/hawkular/hawkular_client.rb +60 -0
- data/lib/hawkular/hawkular_client_utils.rb +40 -0
- data/lib/{inventory → hawkular/inventory}/inventory_api.rb +167 -142
- data/lib/{metrics → hawkular/metrics}/metric_api.rb +1 -0
- data/lib/{metrics → hawkular/metrics}/metrics_client.rb +4 -4
- data/lib/{metrics → hawkular/metrics}/tenant_api.rb +0 -0
- data/lib/{metrics → hawkular/metrics}/types.rb +0 -0
- data/lib/{operations → hawkular/operations}/operations_api.rb +11 -8
- data/lib/{tokens → hawkular/tokens}/tokens_api.rb +1 -1
- data/lib/{version.rb → hawkular/version.rb} +1 -1
- data/spec/integration/alerts_spec.rb +200 -0
- data/spec/integration/hawkular_client_spec.rb +228 -0
- data/spec/integration/inventory_spec.rb +246 -160
- data/spec/integration/metric_spec.rb +52 -59
- data/spec/integration/operations_spec.rb +53 -29
- data/spec/spec_helper.rb +109 -8
- data/spec/unit/base_spec.rb +9 -0
- data/spec/unit/canonical_path_spec.rb +2 -2
- data/spec/vcr/vcr_setup.rb +6 -0
- data/spec/vcr_cassettes/Alert/Events/Should_create_an_event.yml +50 -0
- data/spec/vcr_cassettes/Alert/Groups/Should_operate_a_complex_group_trigger.yml +1726 -0
- data/spec/vcr_cassettes/Counter_metrics/Should_get_metrics_as_bucketed_results.yml +190 -0
- data/spec/vcr_cassettes/Counter_metrics/Should_get_metrics_with_limit_and_order.yml +30 -42
- data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_both_create_and_delete_feed.yml +287 -0
- data/spec/vcr_cassettes/{Inventory/Should_list_URLs.yml → HawkularClient/and_Inventory_client/Should_both_list_WildFlys.yml} +35 -33
- 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
- data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_list_same_types_when_param_is_given.yml +245 -0
- data/spec/vcr_cassettes/{Inventory/Should_list_feeds.yml → HawkularClient/and_Inventory_client/Should_list_the_same_feeds.yml} +20 -20
- data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_list_the_same_resource_types.yml +249 -0
- data/spec/vcr_cassettes/HawkularClient/and_Metrics_client/Should_both_create_and_retrieve_tags_for_Availability.yml +155 -0
- data/spec/vcr_cassettes/HawkularClient/and_Metrics_client/Should_both_create_and_return_Availability_using_Hash_parameter.yml +155 -0
- data/spec/vcr_cassettes/HawkularClient/and_Metrics_client/Should_both_return_the_version.yml +89 -0
- 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
- data/spec/vcr_cassettes/{Inventory/Should_list_WildFlys_with_props.yml → HawkularClient/and_Operations_client/Should_both_work_the_same_way.yml} +28 -50
- data/spec/vcr_cassettes/HawkularClient/and_Operations_client_Should_both_work_the_same_way.json +44 -0
- data/spec/vcr_cassettes/Inventory/Helpers/create_url.yml +48 -0
- data/spec/vcr_cassettes/Inventory/Helpers/generate_some_events_for_websocket.yml +4446 -0
- data/spec/vcr_cassettes/Inventory/Helpers/get_feeds.yml +54 -0
- data/spec/vcr_cassettes/Inventory/Templates/Client_should_listen_on_various_inventory_events.json +47 -0
- data/spec/vcr_cassettes/Inventory/{Should_create_a_resourcetype.yml → Templates/Client_should_listen_on_various_inventory_events.yml} +47 -61
- data/spec/vcr_cassettes/Inventory/Templates/Helpers/generate_some_events_for_websocket.yml +542 -0
- data/spec/vcr_cassettes/Inventory/{Should_List_datasources_with_no_props.yml → Templates/Should_List_datasources_with_no_props.yml} +26 -85
- data/spec/vcr_cassettes/Inventory/Templates/Should_create_a_feed.yml +54 -0
- data/spec/vcr_cassettes/Inventory/Templates/Should_create_a_feed_again.yml +164 -0
- 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
- data/spec/vcr_cassettes/Inventory/{Should_create_a_resource_.yml → Templates/Should_create_a_resource.yml} +103 -76
- data/spec/vcr_cassettes/Inventory/{Should_create_a_resource_with_metric.yml → Templates/Should_create_a_resource_with_metric.yml} +91 -197
- data/spec/vcr_cassettes/Inventory/Templates/Should_create_a_resourcetype.yml +154 -0
- data/spec/vcr_cassettes/Inventory/Templates/Should_create_and_delete_feed.yml +145 -0
- data/spec/vcr_cassettes/Inventory/{Should_create_and_get_a_resource.yml → Templates/Should_create_and_get_a_resource.yml} +35 -20
- data/spec/vcr_cassettes/Inventory/Templates/Should_list_URLs.yml +65 -0
- data/spec/vcr_cassettes/Inventory/Templates/Should_list_WildFlys.yml +61 -0
- data/spec/vcr_cassettes/Inventory/{Should_list_WildFlys.yml → Templates/Should_list_WildFlys_with_props.yml} +36 -33
- data/spec/vcr_cassettes/Inventory/Templates/Should_list_all_the_resource_types.yml +126 -0
- data/spec/vcr_cassettes/Inventory/{Should_list_children_of_WildFly.yml → Templates/Should_list_children_of_WildFly.yml} +66 -112
- data/spec/vcr_cassettes/Inventory/{Should_list_children_of_nested_resource.yml → Templates/Should_list_children_of_nested_resource.yml} +13 -13
- data/spec/vcr_cassettes/Inventory/Templates/Should_list_feeds.yml +54 -0
- data/spec/vcr_cassettes/Inventory/Templates/Should_list_heap_metrics_for_WildFlys.yml +712 -0
- data/spec/vcr_cassettes/Inventory/Templates/Should_list_metrics_for_WildFlys.yml +278 -0
- data/spec/vcr_cassettes/Inventory/Templates/Should_list_metrics_of_given_metric_type.yml +530 -0
- data/spec/vcr_cassettes/Inventory/Templates/Should_list_metrics_of_given_resource_type.yml +278 -0
- data/spec/vcr_cassettes/Inventory/Templates/Should_list_operation_definitions_of_given_resource.yml +185 -0
- data/spec/vcr_cassettes/Inventory/Templates/Should_list_operation_definitions_of_given_resource_type.yml +126 -0
- data/spec/vcr_cassettes/Inventory/Templates/Should_list_recursive_children_of_WildFly.yml +2369 -0
- data/spec/vcr_cassettes/Inventory/Templates/Should_list_relationships_of_WildFly.yml +415 -0
- data/spec/vcr_cassettes/Inventory/Templates/Should_list_types_with_bad_feed.yml +51 -0
- data/spec/vcr_cassettes/Inventory/Templates/Should_list_types_with_feed.yml +124 -0
- data/spec/vcr_cassettes/Inventory/{Should_not_find_an_unknown_resource.yml → Templates/Should_not_find_an_unknown_resource.yml} +14 -13
- 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
- data/spec/vcr_cassettes/Inventory/{Should_return_config_data_of_given_resource.yml → Templates/Should_return_config_data_of_given_resource.yml} +4 -4
- data/spec/vcr_cassettes/Inventory/Tenants/Should_Get_Tenant_For_Explicit_Credentials.yml +50 -0
- data/spec/vcr_cassettes/Inventory/Tenants/Should_Get_Tenant_For_Implicit_Credentials.yml +50 -0
- data/spec/vcr_cassettes/Operation/Helpers/get_feed.yml +54 -0
- data/spec/vcr_cassettes/Operation/Helpers/get_tenant.yml +50 -0
- data/spec/vcr_cassettes/Operation/Operation/Add_JDBC_driver_should_add_the_driver.json +26 -0
- data/spec/vcr_cassettes/Operation/Operation/Add_datasource_should_be_doable.json +26 -0
- data/spec/vcr_cassettes/Operation/Operation/Add_deployment_should_be_doable.json +26 -0
- data/spec/vcr_cassettes/Operation/Operation/Redeploy_can_be_run_multiple_times_in_parallel.json +40 -0
- data/spec/vcr_cassettes/Operation/Operation/Redeploy_should_be_performed_and_eventually_respond_with_success.json +26 -0
- data/spec/vcr_cassettes/Operation/Operation/Redeploy_should_not_be_performed_if_resource_path_is_wrong.json +26 -0
- data/spec/vcr_cassettes/Operation/Operation/Remove_JDBC_driver_should_be_performed_and_eventually_respond_with_success.json +26 -0
- data/spec/vcr_cassettes/Operation/Operation/Remove_datasource_should_be_performed_and_eventually_respond_with_success.json +26 -0
- data/spec/vcr_cassettes/Operation/Operation/Remove_deployment_should_be_performed_and_eventually_respond_with_success.json +26 -0
- data/spec/vcr_cassettes/Operation/Operation/Undeploy_should_be_performed_and_eventually_respond_with_success.json +26 -0
- data/spec/vcr_cassettes/Operation/Operation/should_not_be_possible_to_perform_on_closed_client.json +12 -0
- data/spec/vcr_cassettes/Operation/Websocket_connection/should_be_established.json +9 -0
- metadata +171 -72
- data/lib/hawkular_all.rb +0 -9
- data/spec/vcr_cassettes/Inventory/Should_create_a_feed.yml +0 -107
- data/spec/vcr_cassettes/Inventory/Should_create_a_feed_again.yml +0 -211
- data/spec/vcr_cassettes/Inventory/Should_create_and_delete_feed.yml +0 -201
- data/spec/vcr_cassettes/Inventory/Should_list_all_the_resource_types.yml +0 -177
- data/spec/vcr_cassettes/Inventory/Should_list_heap_metrics_for_WildFlys.yml +0 -775
- data/spec/vcr_cassettes/Inventory/Should_list_metrics_for_WildFlys.yml +0 -333
- data/spec/vcr_cassettes/Inventory/Should_list_metrics_of_given_metric_type.yml +0 -613
- data/spec/vcr_cassettes/Inventory/Should_list_metrics_of_given_resource_type.yml +0 -333
- data/spec/vcr_cassettes/Inventory/Should_list_recursive_children_of_WildFly.yml +0 -2064
- data/spec/vcr_cassettes/Inventory/Should_list_relationships_of_WildFly.yml +0 -460
- data/spec/vcr_cassettes/Inventory/Should_list_types_with_feed.yml +0 -175
|
@@ -1,177 +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:14 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:14 GMT
|
|
50
|
-
- request:
|
|
51
|
-
method: get
|
|
52
|
-
uri: http://jdoe:password@localhost:8080/hawkular/inventory/resourceTypes
|
|
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:14 GMT
|
|
86
|
-
X-Total-Count:
|
|
87
|
-
- '19'
|
|
88
|
-
Connection:
|
|
89
|
-
- keep-alive
|
|
90
|
-
Content-Type:
|
|
91
|
-
- application/json
|
|
92
|
-
Content-Length:
|
|
93
|
-
- '3134'
|
|
94
|
-
Link:
|
|
95
|
-
- <http://localhost:8080/hawkular/inventory/resourceTypes>; rel="current"
|
|
96
|
-
body:
|
|
97
|
-
encoding: ASCII-8BIT
|
|
98
|
-
string: |-
|
|
99
|
-
[ {
|
|
100
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/rt;URL",
|
|
101
|
-
"id" : "URL"
|
|
102
|
-
}, {
|
|
103
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Operating%20System",
|
|
104
|
-
"name" : "Operating System",
|
|
105
|
-
"id" : "Operating System"
|
|
106
|
-
}, {
|
|
107
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;File%20Store",
|
|
108
|
-
"name" : "File Store",
|
|
109
|
-
"id" : "File Store"
|
|
110
|
-
}, {
|
|
111
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Memory",
|
|
112
|
-
"name" : "Memory",
|
|
113
|
-
"id" : "Memory"
|
|
114
|
-
}, {
|
|
115
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Processor",
|
|
116
|
-
"name" : "Processor",
|
|
117
|
-
"id" : "Processor"
|
|
118
|
-
}, {
|
|
119
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;WildFly%20Server",
|
|
120
|
-
"name" : "WildFly Server",
|
|
121
|
-
"id" : "WildFly Server"
|
|
122
|
-
}, {
|
|
123
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Datasource",
|
|
124
|
-
"name" : "Datasource",
|
|
125
|
-
"id" : "Datasource"
|
|
126
|
-
}, {
|
|
127
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;JDBC%20Driver",
|
|
128
|
-
"name" : "JDBC Driver",
|
|
129
|
-
"id" : "JDBC Driver"
|
|
130
|
-
}, {
|
|
131
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Deployment",
|
|
132
|
-
"name" : "Deployment",
|
|
133
|
-
"id" : "Deployment"
|
|
134
|
-
}, {
|
|
135
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Singleton%20EJB",
|
|
136
|
-
"name" : "Singleton EJB",
|
|
137
|
-
"id" : "Singleton EJB"
|
|
138
|
-
}, {
|
|
139
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Stateless%20Session%20EJB",
|
|
140
|
-
"name" : "Stateless Session EJB",
|
|
141
|
-
"id" : "Stateless Session EJB"
|
|
142
|
-
}, {
|
|
143
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Message%20Driven%20EJB",
|
|
144
|
-
"name" : "Message Driven EJB",
|
|
145
|
-
"id" : "Message Driven EJB"
|
|
146
|
-
}, {
|
|
147
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Servlet",
|
|
148
|
-
"name" : "Servlet",
|
|
149
|
-
"id" : "Servlet"
|
|
150
|
-
}, {
|
|
151
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;SubDeployment",
|
|
152
|
-
"name" : "SubDeployment",
|
|
153
|
-
"id" : "SubDeployment"
|
|
154
|
-
}, {
|
|
155
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Transaction%20Manager",
|
|
156
|
-
"name" : "Transaction Manager",
|
|
157
|
-
"id" : "Transaction Manager"
|
|
158
|
-
}, {
|
|
159
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Messaging%20Server",
|
|
160
|
-
"name" : "Messaging Server",
|
|
161
|
-
"id" : "Messaging Server"
|
|
162
|
-
}, {
|
|
163
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;JMS%20Topic",
|
|
164
|
-
"name" : "JMS Topic",
|
|
165
|
-
"id" : "JMS Topic"
|
|
166
|
-
}, {
|
|
167
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;JMS%20Queue",
|
|
168
|
-
"name" : "JMS Queue",
|
|
169
|
-
"id" : "JMS Queue"
|
|
170
|
-
}, {
|
|
171
|
-
"path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/rt;Hawkular%20WildFly%20Agent",
|
|
172
|
-
"name" : "Hawkular WildFly Agent",
|
|
173
|
-
"id" : "Hawkular WildFly Agent"
|
|
174
|
-
} ]
|
|
175
|
-
http_version:
|
|
176
|
-
recorded_at: Thu, 18 Feb 2016 22:30:14 GMT
|
|
177
|
-
recorded_with: VCR 3.0.1
|
|
@@ -1,775 +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/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:17 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:17 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:17 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:17 GMT
|
|
333
|
-
- request:
|
|
334
|
-
method: get
|
|
335
|
-
uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resources/Local~~/metrics
|
|
336
|
-
body:
|
|
337
|
-
encoding: US-ASCII
|
|
338
|
-
string: ''
|
|
339
|
-
headers:
|
|
340
|
-
Accept:
|
|
341
|
-
- application/json
|
|
342
|
-
Accept-Encoding:
|
|
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
|
|
350
|
-
Content-Type:
|
|
351
|
-
- application/json
|
|
352
|
-
response:
|
|
353
|
-
status:
|
|
354
|
-
code: 200
|
|
355
|
-
message: OK
|
|
356
|
-
headers:
|
|
357
|
-
Expires:
|
|
358
|
-
- '0'
|
|
359
|
-
Cache-Control:
|
|
360
|
-
- no-cache, no-store, must-revalidate
|
|
361
|
-
X-Powered-By:
|
|
362
|
-
- Undertow/1
|
|
363
|
-
Server:
|
|
364
|
-
- WildFly/10
|
|
365
|
-
Pragma:
|
|
366
|
-
- no-cache
|
|
367
|
-
Date:
|
|
368
|
-
- Thu, 18 Feb 2016 22:30:17 GMT
|
|
369
|
-
X-Total-Count:
|
|
370
|
-
- '14'
|
|
371
|
-
Connection:
|
|
372
|
-
- keep-alive
|
|
373
|
-
Content-Type:
|
|
374
|
-
- application/json
|
|
375
|
-
Content-Length:
|
|
376
|
-
- '10779'
|
|
377
|
-
Link:
|
|
378
|
-
- <http://localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resources/Local~~/metrics>;
|
|
379
|
-
rel="current"
|
|
380
|
-
body:
|
|
381
|
-
encoding: ASCII-8BIT
|
|
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
|
|
554
|
-
- request:
|
|
555
|
-
method: get
|
|
556
|
-
uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resources/Local~~/metrics
|
|
557
|
-
body:
|
|
558
|
-
encoding: US-ASCII
|
|
559
|
-
string: ''
|
|
560
|
-
headers:
|
|
561
|
-
Accept:
|
|
562
|
-
- application/json
|
|
563
|
-
Accept-Encoding:
|
|
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
|
|
571
|
-
Content-Type:
|
|
572
|
-
- application/json
|
|
573
|
-
response:
|
|
574
|
-
status:
|
|
575
|
-
code: 200
|
|
576
|
-
message: OK
|
|
577
|
-
headers:
|
|
578
|
-
Expires:
|
|
579
|
-
- '0'
|
|
580
|
-
Cache-Control:
|
|
581
|
-
- no-cache, no-store, must-revalidate
|
|
582
|
-
X-Powered-By:
|
|
583
|
-
- Undertow/1
|
|
584
|
-
Server:
|
|
585
|
-
- WildFly/10
|
|
586
|
-
Pragma:
|
|
587
|
-
- no-cache
|
|
588
|
-
Date:
|
|
589
|
-
- Thu, 18 Feb 2016 22:30:17 GMT
|
|
590
|
-
X-Total-Count:
|
|
591
|
-
- '14'
|
|
592
|
-
Connection:
|
|
593
|
-
- keep-alive
|
|
594
|
-
Content-Type:
|
|
595
|
-
- application/json
|
|
596
|
-
Content-Length:
|
|
597
|
-
- '10779'
|
|
598
|
-
Link:
|
|
599
|
-
- <http://localhost:8080/hawkular/inventory/feeds/f1cb161f-4de3-44b9-a2a4-bdc5a2064f88/resources/Local~~/metrics>;
|
|
600
|
-
rel="current"
|
|
601
|
-
body:
|
|
602
|
-
encoding: ASCII-8BIT
|
|
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
|