case TRACE:
this.strategy = new TraceStrategy(apmAgentContext, instrumentation);
LOG.info("Using Trace strategy");
break;
default:
this.strategy = new SamplingStrategy(apmAgentContext);
LOG.info("Using Sampling strategy");
}
this.strategy.initialize();