Make it cleaner
This commit is contained in:
parent
8180a9cd0d
commit
fabe2c338a
34
README.md
34
README.md
|
@ -1,19 +1,23 @@
|
|||
## Datadog Trace Java
|
||||
## Datadog APM - Java Agent and Core Tracer
|
||||
|
||||
This repository is the official Datadog Trace Java.
|
||||
It offers you all resources you needed to start to instrument your Java project and
|
||||
see traces in your [Datadog](https://app.datadoghq.com) account.
|
||||
|
||||

|
||||
|
||||
|
||||
This project hosts 3 parts:
|
||||
|
||||
* [dd-trace](dd-trace) is the Datadog implementation of an Opentracing tracer
|
||||
* [dd-java-agent](dd-java-agent) is the Java agent allows you to automatically instrument a dozen of frameworks (Spring Boot, Mongo,
|
||||
JMS, MySQl, etc.) without editing one line of code.
|
||||
* [dd-trace-examples](dd-trace-examples) provides you useful examples to start easily your first instrumentation.
|
||||
|
||||
Datadog APM gives you powerful tools to observe and optimize modern applications.
|
||||
It enables you to see exactly where your requests go and which services or calls are contributing to overall latency.
|
||||
The lightweight agent is designed to be deployed on every host in your infrastructure,
|
||||
so it generates gap-free distributed request traces even in the most complex microservice architectures.
|
||||
|
||||
This repository offers you all resources you needed to start to instrument your project and
|
||||
gather all traces in your [Datadog](https://app.datadoghq.com) account.
|
||||
|
||||

|
||||
|
||||
|
||||
### Start in minutes
|
||||
|
||||
* [Introduction to the Datadog APM](https://www.datadoghq.com/apm/). Learn what you can do with the Next-Gen APM and how to get started.
|
||||
* [Install the Datadog Java agent](https://github.con/datadog/dd-trace-java/dd-java-agent). Instructions for supported technologies, web-servers and frameworks.
|
||||
* [Browse examples](https://github.con/datadog/dd-trace-java/dd-trace-examples). See how to instrument legacy projects based on the most used tehcnologies.
|
||||
* [DD Trace API](https://github.con/datadog/dd-trace-java/dd-trace). We choose to embrace the Opentracting initiative, use the Trace Java API to customize your instrumentation.
|
||||
|
||||
### Help or questions?
|
||||
|
||||
And for any questions or feedback, feel free to send us an email: support@datadoghq.com
|
53
pom.xml
53
pom.xml
|
@ -12,7 +12,6 @@
|
|||
<opentracing.version>0.22.0</opentracing.version>
|
||||
<java.version>1.7</java.version>
|
||||
<ot.dd-trace.version>0.0.1-SNAPSHOT</ot.dd-trace.version>
|
||||
|
||||
</properties>
|
||||
|
||||
<licenses>
|
||||
|
@ -27,7 +26,7 @@
|
|||
<url>https://github.com/datadog/dd-trace-java</url>
|
||||
<connection>scm:git:git://github.com/datadog/dd-trace-java.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:datadog/dd-trace-java.git</developerConnection>
|
||||
<tag>dd-trace-java-1.0</tag>
|
||||
<tag>v0.0.1</tag>
|
||||
</scm>
|
||||
|
||||
<developers>
|
||||
|
@ -80,31 +79,31 @@
|
|||
<target>${java.version}</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<!--<plugin>-->
|
||||
<!--<groupId>org.apache.maven.plugins</groupId>-->
|
||||
<!--<artifactId>maven-gpg-plugin</artifactId>-->
|
||||
<!--<version>1.6</version>-->
|
||||
<!--<executions>-->
|
||||
<!--<execution>-->
|
||||
<!--<id>sign-artifacts</id>-->
|
||||
<!--<phase>verify</phase>-->
|
||||
<!--<goals>-->
|
||||
<!--<goal>sign</goal>-->
|
||||
<!--</goals>-->
|
||||
<!--</execution>-->
|
||||
<!--</executions>-->
|
||||
<!--</plugin>-->
|
||||
<!-- <plugin> -->
|
||||
<!-- <groupId>org.sonatype.plugins</groupId> -->
|
||||
<!-- <artifactId>nexus-staging-maven-plugin</artifactId> -->
|
||||
<!-- <version>1.6.3</version> -->
|
||||
<!-- <extensions>true</extensions> -->
|
||||
<!-- <configuration> -->
|
||||
<!-- <serverId>ossrh</serverId> -->
|
||||
<!-- <nexusUrl>https://oss.sonatype.org/</nexusUrl> -->
|
||||
<!-- <autoReleaseAfterClose>true</autoReleaseAfterClose> -->
|
||||
<!-- </configuration> -->
|
||||
<!-- </plugin> -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.sonatype.plugins</groupId>
|
||||
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||||
<version>1.6.3</version>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<serverId>ossrh</serverId>
|
||||
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
||||
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
|
Loading…
Reference in New Issue