Skip to content

Commit

Permalink
Adding _agent to uri path for PerformanceAnalyzerRCAHealthCheckIT (#225)
Browse files Browse the repository at this point in the history
Signed-off-by: Ankit Jain <jain.ankitk@gmail.com>
  • Loading branch information
jainankitk authored May 24, 2022
1 parent 54eba11 commit ec2e5b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void checkMetrics(String paBaseUri) throws Exception {
new Request(
"GET",
paBaseUri
+ "/metrics/?metrics=Disk_Utilization&agg=max&dim=&nodes=all");
+ "/_agent/metrics/?metrics=Disk_Utilization&agg=max&dim=&nodes=all");
Response resp = paClient.performRequest(request);
Assert.assertEquals(HttpStatus.SC_OK, resp.getStatusLine().getStatusCode());
jsonString[0] = EntityUtils.toString(resp.getEntity());
Expand Down

0 comments on commit ec2e5b9

Please sign in to comment.