moving files to dd-trace

This commit is contained in:
Guillaume Polaert 2017-07-24 13:41:40 +02:00
parent 7c5fd24a14
commit a58f797fd1
2 changed files with 0 additions and 47 deletions

View File

@ -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

View File

@ -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", ...]