Change http server span type back to `web`
This commit is contained in:
parent
74510a3baf
commit
b1304b478a
|
@ -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:
|
||||
|
|
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in New Issue