diff --git a/dd-java-agent/src/main/resources/dd-trace-decorators.yaml b/dd-java-agent/src/main/resources/dd-trace-decorators.yaml deleted file mode 100644 index 31a9a50c6c..0000000000 --- a/dd-java-agent/src/main/resources/dd-trace-decorators.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Decorators are used to add extra information to span -# Could be DBServiceDecorator, MapperDecorator or HTTPServiceDecorator -decorators: - - type: HTTPComponent - matchingValue: java-okhttp - setValue: http-client - - type: DBComponent - matchingValue: java-mongo - setValue: mongo - - type: DBComponent - matchingValue: java-jdbc - setValue: jdbc - - type: HTTPComponent - matchingValue: java-aws-sdk - setValue: aws-client - - type: URLAsResourceName - - type: DBStatementAsResourceName - - type: ErrorFlag \ No newline at end of file diff --git a/dd-java-agent/src/main/resources/dd-trace.yaml b/dd-java-agent/src/main/resources/dd-trace.yaml deleted file mode 100644 index a729b6f07c..0000000000 --- a/dd-java-agent/src/main/resources/dd-trace.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Service name used if none is provided in the app -defaultServiceName: java-app - -# The writer to use. -# Could be: LoggingWriter or DDAgentWriter (default) -writer: - # LoggingWriter: Spans are logged using the application configuration - # DDAgentWriter: Spans are forwarding to a Datadog Agent - # - Param 'host': the hostname where the DD Agent running (default: localhost) - # - Param 'port': the port to reach the DD Agent (default: 8126) - type: DDAgentWriter - host: localhost - port: 8126 - -# The sampler to use. -# Could be: AllSampler (default) or RateSampler -sampler: - # AllSampler: all spans are reported to the writer - # RateSample: only a portion of spans are reported to the writer - # - Param 'rate': the portion of spans to keep - type: AllSampler - # Skip some traces if the root span tag values matches some regexp patterns - # skipTagsPatterns: {"http.url": ".*/demo/add.*"} - -# Enable custom annotation tracing over a selected set of packages -# enableCustomAnnotationTracingOver: ["io","org","com"] - -# Disable some instrumentations -# disabledInstrumentations: ["apache http", "mongo", "jetty", "tomcat", ...] \ No newline at end of file