Correct typo (#15)

This commit is contained in:
Emeric Planet 2017-06-15 16:35:59 +02:00 committed by GitHub
parent 9e6ea73e4c
commit 79e98f43c0
1 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,7 @@ This is a Java Agent to instrument Java applications using the Datadog Tracer. O
Tracing instrumentation can be done in 2 ways: Tracing instrumentation can be done in 2 ways:
- Automatically over a set of [supported Web servers, frameworks or database drivers](#instrumented-frameworks) - Automatically over a set of [supported Web servers, frameworks or database drivers](#instrumented-frameworks)
- By using the [`@trace` annotation](#custom-instrumentations) - By using the [`@Trace` annotation](#custom-instrumentations)
:heavy_exclamation_mark: **Warning:** This library is currently in Alpha. This means that even though we rigorously tested instrumentations you may experience strange behaviors depending on your running environment. Be sure to test thoroughly on a staging environment before releasing to production. For any help please contact [tracehelp@datadoghq.com](mailto:tracehelp@datadoghq.com). :heavy_exclamation_mark: **Warning:** This library is currently in Alpha. This means that even though we rigorously tested instrumentations you may experience strange behaviors depending on your running environment. Be sure to test thoroughly on a staging environment before releasing to production. For any help please contact [tracehelp@datadoghq.com](mailto:tracehelp@datadoghq.com).
@ -59,9 +59,9 @@ defaultServiceName: java-app
# Could be: LoggingWritter or DDAgentWriter (default) # Could be: LoggingWritter or DDAgentWriter (default)
writer: writer:
# LoggingWriter: Spans are logged using the application configuration # LoggingWriter: Spans are logged using the application configuration
# DDAgentWriter: Spans are forwarding to a Datadog Agent # DDAgentWriter: Spans are forwarding to a Datadog trace Agent
# - Param 'host': the hostname where the DD Agent running (default: localhost) # - Param 'host': the hostname where the DD trace Agent is running (default: localhost)
# - Param 'port': the port to reach the DD Agent (default: 8126) # - Param 'port': the port to reach the DD trace Agent (default: 8126)
type: DDAgentWriter type: DDAgentWriter
host: localhost host: localhost
port: 8126 port: 8126
@ -138,9 +138,9 @@ disabledInstrumentations: ["apache http", "mongo", "tomcat"]
## Custom instrumentations ## Custom instrumentations
### The `@trace` annotation ### The `@Trace` annotation
By adding the `@trace` annotation to a method the `dd-java-agent` automatically measures the execution time. By adding the `@Trace` annotation to a method the `dd-java-agent` automatically measures the execution time.
```java ```java
@Trace @Trace