Change http server span type back to `web`

This commit is contained in:
Tyler Benson 2018-07-27 10:07:43 +10:00
parent 74510a3baf
commit b1304b478a
2 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ class AkkaHttpClientInstrumentationTest extends AgentTestRunner {
@Shared
ActorMaterializer materializer = ActorMaterializer.create(system)
def pool = Http.get(system).<Integer> superPool(materializer)
def pool = Http.get(system).superPool(materializer)
def "#route request trace"() {
setup:

View File

@ -1,9 +1,9 @@
package datadog.trace.api;
public class DDSpanTypes {
public static final String HTTP_SERVER = "http";
public static final String HTTP_CLIENT = "http";
public static final String WEB_SERVLET = "web";
public static final String HTTP_SERVER = "web";
public static final String WEB_SERVLET = HTTP_SERVER;
public static final String RPC = "rpc";
public static final String CACHE = "cache";