Search in sources :

Example 6 with StartAndThenLink

use of com.newrelic.agent.TransactionAsyncUtility.StartAndThenLink in project newrelic-java-agent by newrelic.

the class TransactionAsyncRootLastTest method testStartAndThenLinkExpireAfter.

@Test
public void testStartAndThenLinkExpireAfter() throws InterruptedException {
    Transaction.clearTransaction();
    Transaction tx = Transaction.getTransaction();
    Tracer rootTracer = TransactionAsyncUtility.createDispatcherTracer(this, "hi");
    tx.getTransactionActivity().tracerStarted(rootTracer);
    TokenImpl token = (TokenImpl) tx.getToken();
    StartAndThenLink activity1 = new StartAndThenLink(token, false, true);
    activity1.start();
    activity1.join();
    rootTracer.finish(Opcodes.RETURN, 0);
    verifyDataTwo(activity1, tx, token);
}
Also used : Transaction(com.newrelic.agent.Transaction) TokenImpl(com.newrelic.agent.TokenImpl) Tracer(com.newrelic.agent.tracers.Tracer) StartAndThenLink(com.newrelic.agent.TransactionAsyncUtility.StartAndThenLink) Test(org.junit.Test)

Example 7 with StartAndThenLink

use of com.newrelic.agent.TransactionAsyncUtility.StartAndThenLink in project newrelic-java-agent by newrelic.

the class TransactionAsyncRootLastTest method testStartAndThenLinkExpireInMain.

@Test
public void testStartAndThenLinkExpireInMain() throws InterruptedException {
    Transaction.clearTransaction();
    Transaction tx = Transaction.getTransaction();
    Tracer rootTracer = TransactionAsyncUtility.createDispatcherTracer(this, "hi");
    tx.getTransactionActivity().tracerStarted(rootTracer);
    TokenImpl token = (TokenImpl) tx.getToken();
    // second expire should do nothing
    StartAndThenLink activity1 = new StartAndThenLink(token, false, false);
    activity1.start();
    activity1.join();
    rootTracer.finish(Opcodes.RETURN, 0);
    token.expire();
    verifyDataTwo(activity1, tx, token);
}
Also used : Transaction(com.newrelic.agent.Transaction) TokenImpl(com.newrelic.agent.TokenImpl) Tracer(com.newrelic.agent.tracers.Tracer) StartAndThenLink(com.newrelic.agent.TransactionAsyncUtility.StartAndThenLink) Test(org.junit.Test)

Example 8 with StartAndThenLink

use of com.newrelic.agent.TransactionAsyncUtility.StartAndThenLink in project newrelic-java-agent by newrelic.

the class TransactionAsyncRootLastTest method testStartAndThenLinkMultipleDiffTokens.

@Test
public void testStartAndThenLinkMultipleDiffTokens() throws InterruptedException {
    Transaction.clearTransaction();
    Transaction tx = Transaction.getTransaction();
    Tracer rootTracer = TransactionAsyncUtility.createDispatcherTracer(this, "hi");
    tx.getTransactionActivity().tracerStarted(rootTracer);
    TokenImpl token1 = (TokenImpl) tx.getToken();
    TokenImpl token2 = (TokenImpl) tx.getToken();
    StartAndThenLink activity1 = new StartAndThenLink(token1, true, false);
    activity1.start();
    activity1.join();
    StartAndThenLink activity2 = new StartAndThenLink(token2, false, true);
    activity2.start();
    activity2.join();
    rootTracer.finish(Opcodes.RETURN, 0);
    waitForTransaction();
    TransactionAsyncUtility.basicDataVerify(data, stats, activity1, 3);
    Map<String, StatsBase> scoped = stats.getScopedStats().getStatsMap();
    ResponseTimeStats data1 = (ResponseTimeStats) scoped.get("RequestDispatcher");
    ResponseTimeStats data2 = (ResponseTimeStats) scoped.get("Java/java.lang.Object/root" + token1.toString());
    ResponseTimeStats data3 = (ResponseTimeStats) scoped.get("Java/java.lang.Object/root" + token2.toString());
    Assert.assertNotNull(data1);
    Assert.assertNotNull(data2);
    Assert.assertNotNull(data3);
    Assert.assertEquals(1, data1.getCallCount());
    Assert.assertEquals(1, data2.getCallCount());
    Assert.assertEquals(1, data3.getCallCount());
    Map<String, StatsBase> unscoped = stats.getUnscopedStats().getStatsMap();
    Assert.assertEquals(((ResponseTimeStats) unscoped.get("WebTransactionTotalTime")).getTotal(), data1.getTotal() + data2.getTotal() + data3.getTotal(), .001);
}
Also used : ResponseTimeStats(com.newrelic.agent.stats.ResponseTimeStats) Transaction(com.newrelic.agent.Transaction) TokenImpl(com.newrelic.agent.TokenImpl) Tracer(com.newrelic.agent.tracers.Tracer) StartAndThenLink(com.newrelic.agent.TransactionAsyncUtility.StartAndThenLink) StatsBase(com.newrelic.agent.stats.StatsBase) Test(org.junit.Test)

Example 9 with StartAndThenLink

use of com.newrelic.agent.TransactionAsyncUtility.StartAndThenLink in project newrelic-java-agent by newrelic.

the class TransactionAsyncRootLastTest method testStartAndThenLinkExpireAllBeforeFinish.

@Test
public void testStartAndThenLinkExpireAllBeforeFinish() throws InterruptedException {
    Transaction.clearTransaction();
    Transaction tx = Transaction.getTransaction();
    Tracer rootTracer = TransactionAsyncUtility.createDispatcherTracer(this, "hi");
    tx.getTransactionActivity().tracerStarted(rootTracer);
    TokenImpl token = (TokenImpl) tx.getToken();
    // second expire should do nothing
    StartAndThenLink activity1 = new StartAndThenLink(token, false, false);
    activity1.start();
    activity1.join();
    tx.expireAllTokensForCurrentTransaction();
    rootTracer.finish(Opcodes.RETURN, 0);
    verifyDataTwo(activity1, tx, token);
}
Also used : Transaction(com.newrelic.agent.Transaction) TokenImpl(com.newrelic.agent.TokenImpl) Tracer(com.newrelic.agent.tracers.Tracer) StartAndThenLink(com.newrelic.agent.TransactionAsyncUtility.StartAndThenLink) Test(org.junit.Test)

Example 10 with StartAndThenLink

use of com.newrelic.agent.TransactionAsyncUtility.StartAndThenLink in project newrelic-java-agent by newrelic.

the class TransactionAsyncRootLastTest method testStartAndThenLinkExpireBoth.

@Test
public void testStartAndThenLinkExpireBoth() throws InterruptedException {
    Transaction.clearTransaction();
    Transaction tx = Transaction.getTransaction();
    Tracer rootTracer = TransactionAsyncUtility.createDispatcherTracer(this, "hi");
    tx.getTransactionActivity().tracerStarted(rootTracer);
    TokenImpl token = (TokenImpl) tx.getToken();
    // second expire should do nothing
    StartAndThenLink activity1 = new StartAndThenLink(token, true, true);
    activity1.start();
    activity1.join();
    rootTracer.finish(Opcodes.RETURN, 0);
    verifyDataTwo(activity1, tx, token);
}
Also used : Transaction(com.newrelic.agent.Transaction) TokenImpl(com.newrelic.agent.TokenImpl) Tracer(com.newrelic.agent.tracers.Tracer) StartAndThenLink(com.newrelic.agent.TransactionAsyncUtility.StartAndThenLink) Test(org.junit.Test)

Aggregations

TokenImpl (com.newrelic.agent.TokenImpl)27 Transaction (com.newrelic.agent.Transaction)27 StartAndThenLink (com.newrelic.agent.TransactionAsyncUtility.StartAndThenLink)27 Tracer (com.newrelic.agent.tracers.Tracer)27 Test (org.junit.Test)27 ResponseTimeStats (com.newrelic.agent.stats.ResponseTimeStats)6 StatsBase (com.newrelic.agent.stats.StatsBase)6