Skip to content

Commit 7ae89fa

Browse files
authored
Post 1.6.0 release updates (#4108)
1 parent 9c19ecd commit 7ae89fa

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ if you are looking for documentation on using those.
6262

6363
## Getting Started
6464

65-
Download the [latest version](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent-all.jar).
65+
Download the [latest version](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent.jar).
6666

6767
This package includes the instrumentation agent as well as
6868
instrumentations for all supported libraries and all available data exporters.
6969
The package provides a completely automatic, out-of-the-box experience.
7070

7171
Enable the instrumentation agent using the `-javaagent` flag to the JVM.
7272
```
73-
java -javaagent:path/to/opentelemetry-javaagent-all.jar \
73+
java -javaagent:path/to/opentelemetry-javaagent.jar \
7474
-jar myapp.jar
7575
```
7676
By default, the OpenTelemetry Java agent uses
@@ -83,7 +83,7 @@ Configuration parameters are passed as Java system properties (`-D` flags) or
8383
as environment variables. See [the configuration documentation](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/docs/agent-config.md)
8484
for the full list of configuration items. For example:
8585
```
86-
java -javaagent:path/to/opentelemetry-javaagent-all.jar \
86+
java -javaagent:path/to/opentelemetry-javaagent.jar \
8787
-Dotel.resource.attributes=service.name=your-service-name \
8888
-Dotel.traces.exporter=zipkin \
8989
-jar myapp.jar

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
public class Agent {
1111

1212
static final String OTEL_LATEST =
13-
"https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent-all.jar";
13+
"https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent.jar";
1414

1515
public static final Agent NONE = new Agent("none", "no agent at all");
1616
public static final Agent LATEST_RELEASE =

examples/extension/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To add the extension to the instrumentation agent:
1616
2. Modify the startup command to add the full path to the extension file. For example:
1717

1818
```bash
19-
java -javaagent:path/to/opentelemetry-javaagent-all.jar \
19+
java -javaagent:path/to/opentelemetry-javaagent.jar \
2020
-Dotel.javaagent.extensions=build/libs/opentelemetry-java-instrumentation-extension-demo-1.0-all.jar
2121
-jar myapp.jar
2222
```

0 commit comments

Comments
 (0)