Browse Source

Post 1.6.0 release updates (#4108)

Trask Stalnaker 3 years ago
parent
commit
7ae89fa3b9

+ 3 - 3
README.md

@@ -62,7 +62,7 @@ if you are looking for documentation on using those.
 
 ## Getting Started
 
-Download the [latest version](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent-all.jar).
+Download the [latest version](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent.jar).
 
 This package includes the instrumentation agent as well as
 instrumentations for all supported libraries and all available data exporters.
@@ -70,7 +70,7 @@ The package provides a completely automatic, out-of-the-box experience.
 
 Enable the instrumentation agent using the `-javaagent` flag to the JVM.
 ```
-java -javaagent:path/to/opentelemetry-javaagent-all.jar \
+java -javaagent:path/to/opentelemetry-javaagent.jar \
      -jar myapp.jar
 ```
 By default, the OpenTelemetry Java agent uses
@@ -83,7 +83,7 @@ Configuration parameters are passed as Java system properties (`-D` flags) or
 as environment variables. See [the configuration documentation](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/docs/agent-config.md)
 for the full list of configuration items. For example:
 ```
-java -javaagent:path/to/opentelemetry-javaagent-all.jar \
+java -javaagent:path/to/opentelemetry-javaagent.jar \
      -Dotel.resource.attributes=service.name=your-service-name \
      -Dotel.traces.exporter=zipkin \
      -jar myapp.jar

+ 1 - 1
benchmark-overhead/src/test/java/io/opentelemetry/agents/Agent.java

@@ -10,7 +10,7 @@ import java.util.List;
 public class Agent {
 
   static final String OTEL_LATEST =
-      "https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent-all.jar";
+      "https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent.jar";
 
   public static final Agent NONE = new Agent("none", "no agent at all");
   public static final Agent LATEST_RELEASE =

+ 1 - 1
examples/extension/README.md

@@ -16,7 +16,7 @@ To add the extension to the instrumentation agent:
 2. Modify the startup command to add the full path to the extension file. For example:
 
      ```bash
-     java -javaagent:path/to/opentelemetry-javaagent-all.jar \
+     java -javaagent:path/to/opentelemetry-javaagent.jar \
           -Dotel.javaagent.extensions=build/libs/opentelemetry-java-instrumentation-extension-demo-1.0-all.jar
           -jar myapp.jar
      ```