use of com.newrelic.agent.stats.TransactionStats in project newrelic-java-agent by newrelic.
the class ErrorServiceTest method unexpectedThrowableInTransaction.
@Test
public void unexpectedThrowableInTransaction() {
TransactionData transactionData = createTransactionData(200, new Throwable("Surprising error"), false);
TransactionService txService = ServiceFactory.getTransactionService();
TransactionStats transactionStats = new TransactionStats();
txService.transactionFinished(transactionData, transactionStats);
List<TracedError> tracedErrors = ServiceFactory.getRPMService().getErrorService().getAndClearTracedErrors();
TracedError tracedError = tracedErrors.get(0);
Assert.assertEquals("Surprising error", tracedError.getMessage());
Assert.assertFalse(tracedError.expected);
Assert.assertTrue(tracedError.incrementsErrorMetric());
}
use of com.newrelic.agent.stats.TransactionStats in project newrelic-java-agent by newrelic.
the class ErrorServiceTest method expectedThrowableInTransaction.
@Test
public void expectedThrowableInTransaction() {
TransactionData transactionData = createTransactionData(200, new Throwable("I am expected"), true);
TransactionService txService = ServiceFactory.getTransactionService();
TransactionStats transactionStats = new TransactionStats();
txService.transactionFinished(transactionData, transactionStats);
List<TracedError> tracedErrors = ServiceFactory.getRPMService().getErrorService().getAndClearTracedErrors();
TracedError tracedError = tracedErrors.get(0);
Assert.assertEquals("I am expected", tracedError.getMessage());
Assert.assertTrue(tracedError.expected);
Assert.assertFalse(tracedError.incrementsErrorMetric());
}
use of com.newrelic.agent.stats.TransactionStats in project newrelic-java-agent by newrelic.
the class ErrorServiceTest method userParametersEnabledRequestDisabled.
@SuppressWarnings("unchecked")
@Test
public void userParametersEnabledRequestDisabled() throws Exception {
Map<String, Object> config = createConfig("java.lang.Exception");
setConfigAttributes(config, true, false);
EventTestHelper.createServiceManager(config);
ErrorServiceImpl errorService = (ErrorServiceImpl) ServiceFactory.getRPMService().getErrorService();
MockRPMService rpmService = (MockRPMService) ServiceFactory.getRPMService();
rpmService.setIsConnected(true);
TransactionService txService = ServiceFactory.getTransactionService();
Throwable error = new ArrayIndexOutOfBoundsException();
Map<String, String> requestParams = new HashMap<>();
requestParams.put("key1", "value1");
Map<String, Object> agentParams = new HashMap<>();
agentParams.put("key2", 2L);
Map<String, Object> userParams = new HashMap<>();
userParams.put("key3", "value3");
Map<String, Object> errorParams = new HashMap<>();
errorParams.put("key4", "value4");
Map<String, Object> intrinsics = new HashMap<>();
intrinsics.put("key5", "value5");
intrinsics.put("key6", 7.77);
intrinsics.put("key7", 18L);
TransactionData data = createTransactionData(true, 0, error, false, requestParams, userParams, agentParams, errorParams, intrinsics);
TransactionStats transactionStats = new TransactionStats();
txService.transactionFinished(data, transactionStats);
List<TracedError> actualErrors = errorService.getAndClearTracedErrors(APP_NAME, new StatsEngineImpl());
Assert.assertEquals(1, actualErrors.size());
JSONArray serializedError = (JSONArray) AgentHelper.serializeJSON(actualErrors.get(0));
Assert.assertNotNull(serializedError);
Map<String, Object> params = (Map<String, Object>) serializedError.get(4);
Assert.assertEquals(4, params.size());
Assert.assertNotNull(params.get("stack_trace"));
Assert.assertNotNull(params.get("intrinsics"));
Assert.assertNotNull(params.get("agentAttributes"));
Assert.assertNotNull(params.get("userAttributes"));
Map<String, Object> actual = (Map<String, Object>) params.get("intrinsics");
Assert.assertEquals(8, actual.size());
Assert.assertEquals("value5", actual.get("key5"));
Assert.assertEquals(7.77, (Double) actual.get("key6"), .001);
Assert.assertEquals(18L, actual.get("key7"));
Assert.assertEquals(false, actual.get("error.expected"));
actual = (Map<String, Object>) params.get("agentAttributes");
Assert.assertEquals(2, actual.size());
Assert.assertEquals(2L, actual.get("key2"));
Assert.assertEquals("/dude", actual.get("request.uri"));
actual = (Map<String, Object>) params.get("userAttributes");
Assert.assertEquals(2, actual.size());
Assert.assertEquals("value3", actual.get("key3"));
Assert.assertEquals("value4", actual.get("key4"));
}
use of com.newrelic.agent.stats.TransactionStats in project newrelic-java-agent by newrelic.
the class ErrorServiceTest method userParametersEnabled.
@SuppressWarnings("unchecked")
@Test
public void userParametersEnabled() throws Exception {
Map<String, Object> config = createConfig("java.lang.Exception");
setConfigAttributes(config, true, true);
EventTestHelper.createServiceManager(config);
ErrorServiceImpl errorService = (ErrorServiceImpl) ServiceFactory.getRPMService().getErrorService();
MockRPMService rpmService = (MockRPMService) ServiceFactory.getRPMService();
rpmService.setIsConnected(true);
TransactionService txService = ServiceFactory.getTransactionService();
Throwable error = new ArrayIndexOutOfBoundsException();
Map<String, String> requestParams = new HashMap<>();
requestParams.put("key1", "value1");
Map<String, Object> agentParams = new HashMap<>();
agentParams.put("key2", 2L);
Map<String, Object> userParams = new HashMap<>();
userParams.put("key3", "value3");
Map<String, Object> errorParams = new HashMap<>();
errorParams.put("key4", "value4");
Map<String, Object> intrinsics = new HashMap<>();
intrinsics.put("key5", "value5");
intrinsics.put("key6", 7.77);
intrinsics.put("key7", 18L);
TransactionData data = createTransactionData(true, 0, error, false, requestParams, userParams, agentParams, errorParams, intrinsics);
TransactionStats transactionStats = new TransactionStats();
txService.transactionFinished(data, transactionStats);
List<TracedError> actualErrors = errorService.getAndClearTracedErrors(APP_NAME, new StatsEngineImpl());
Assert.assertEquals(1, actualErrors.size());
JSONArray serializedError = (JSONArray) AgentHelper.serializeJSON(actualErrors.get(0));
Assert.assertNotNull(serializedError);
Map<String, Object> params = (Map<String, Object>) serializedError.get(4);
Assert.assertEquals(4, params.size());
Assert.assertNotNull(params.get("stack_trace"));
Assert.assertNotNull(params.get("intrinsics"));
Assert.assertNotNull(params.get("agentAttributes"));
Assert.assertNotNull(params.get("userAttributes"));
Map<String, Object> actual = (Map<String, Object>) params.get("intrinsics");
Assert.assertEquals(8, actual.size());
Assert.assertEquals("value5", actual.get("key5"));
Assert.assertEquals(7.77, (Double) actual.get("key6"), .001);
Assert.assertEquals(18L, actual.get("key7"));
Assert.assertEquals(false, actual.get("error.expected"));
actual = (Map<String, Object>) params.get("agentAttributes");
Assert.assertEquals(3, actual.size());
Assert.assertEquals("value1", actual.get("request.parameters.key1"));
Assert.assertEquals(2L, actual.get("key2"));
Assert.assertEquals("/dude", actual.get("request.uri"));
actual = (Map<String, Object>) params.get("userAttributes");
Assert.assertEquals(2, actual.size());
Assert.assertEquals("value3", actual.get("key3"));
Assert.assertEquals("value4", actual.get("key4"));
}
use of com.newrelic.agent.stats.TransactionStats in project newrelic-java-agent by newrelic.
the class ErrorServiceTest method attributesDisabled.
@SuppressWarnings("unchecked")
@Test
public void attributesDisabled() throws Exception {
Map<String, Object> config = createConfig("java.lang.Exception");
setConfigAttributes(config, false, true);
EventTestHelper.createServiceManager(config);
ErrorServiceImpl errorService = (ErrorServiceImpl) ServiceFactory.getRPMService().getErrorService();
MockRPMService rpmService = (MockRPMService) ServiceFactory.getRPMService();
rpmService.setIsConnected(true);
TransactionService txService = ServiceFactory.getTransactionService();
Throwable error = new ArrayIndexOutOfBoundsException();
Map<String, String> requestParams = new HashMap<>();
requestParams.put("key1", "value1");
Map<String, Object> agentParams = new HashMap<>();
agentParams.put("key2", 2L);
Map<String, Object> userParams = new HashMap<>();
userParams.put("key3", "value3");
Map<String, Object> errorParams = new HashMap<>();
errorParams.put("key4", "value4");
Map<String, Object> intrinsics = new HashMap<>();
TransactionData data = createTransactionData(true, 0, error, false, requestParams, userParams, agentParams, errorParams, intrinsics);
TransactionStats transactionStats = new TransactionStats();
txService.transactionFinished(data, transactionStats);
List<TracedError> actualErrors = errorService.getAndClearTracedErrors(APP_NAME, new StatsEngineImpl());
Assert.assertEquals(1, actualErrors.size());
JSONArray serializedError = (JSONArray) AgentHelper.serializeJSON(actualErrors.get(0));
Assert.assertNotNull(serializedError);
Map<String, Object> params = (Map<String, Object>) serializedError.get(4);
Assert.assertEquals(2, params.size());
Assert.assertNotNull(params.get("stack_trace"));
Map<String, Object> intrinsicsParam = (Map<String, Object>) params.get("intrinsics");
Assert.assertEquals(false, intrinsicsParam.get("error.expected"));
}
Aggregations