Skip to content

Instantly share code, notes, and snippets.

@njofce
Created March 17, 2020 19:17
Show Gist options
  • Select an option

  • Save njofce/f8c3d9aa25442dd15608719f4b5303b9 to your computer and use it in GitHub Desktop.

Select an option

Save njofce/f8c3d9aa25442dd15608719f4b5303b9 to your computer and use it in GitHub Desktop.
@Test
void testLogEvent() {
CustomMetric metric = new CustomMetric();
metric.metricDimensionName = "ServerId";
metric.metricDimensionValue = "server-01";
metric.metricName = "billingExecutionTime";
metric.metricValue = 112;
String res = cloudWatchLogger.logMetric(metric);
Assertions.assertNotNull(res);
Assertions.assertEquals(res, "Success");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment