Skip to content

Commit 1a83d33

Browse files
authored
Update keploy-karaf.md
Signed-off-by: Sarthak Shyngle <[email protected]>
1 parent b40a90e commit 1a83d33

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

versioned_docs/version-2.0.0/running-keploy/keploy-karaf.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ keywords:
1616

1717
Use `wget` to download the necessary JAR files:
1818

19-
- [java-agent-1.0-SNAPSHOT.jar](https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/java-agent-1.0-SNAPSHOT.jar)
19+
- [KeployAgent.jar](https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/KeployAgent.jar)
2020
- [org.jacoco.agent-0.8.12-runtime.jar](https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/org.jacoco.agent-0.8.12-runtime.jar)
2121

2222
Run the following commands to download the files:
2323

2424
```bash
25-
wget https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/java-agent-1.0-SNAPSHOT.jar
25+
wget https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/KeployAgent.jar
2626
wget https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/org.jacoco.agent-0.8.12-runtime.jar
2727
```
2828

@@ -35,7 +35,7 @@ wget https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/org.jacoco.
3535
3. Add the paths of the downloaded agents under the `JAVA_OPTS` section. For example:
3636

3737
```bash
38-
export JAVA_OPTS="-javaagent:/path/to/java-agent-1.0-SNAPSHOT.jar"
38+
export JAVA_OPTS="-javaagent:/path/to/KeployAgent.jar"
3939
export JAVA_OPTS="$JAVA_OPTS -javaagent:/path/to/org.jacoco.agent-0.8.12-runtime.jar=address=*,port=36320,destfile=jacoco-it.exec,output=tcpserver"
4040
```
4141

@@ -46,7 +46,7 @@ wget https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/org.jacoco.
4646
3. Add the paths of the downloaded agents under the `JAVA_OPTS` section. For example:
4747

4848
```bash
49-
set JAVA_OPTS=-javaagent:/path/to/java-agent-1.0-SNAPSHOT.jar
49+
set JAVA_OPTS=-javaagent:/path/to/KeployAgent.jar
5050
set JAVA_OPTS=%JAVA_OPTS% -javaagent:/path/to/org.jacoco.agent-0.8.12-runtime.jar=address=*,port=36320,destfile=jacoco-it.exec,output=tcpserver
5151
```
5252

@@ -93,7 +93,7 @@ wget https://keploy-enterprise.s3.us-west-2.amazonaws.com/agent-jars/org.jacoco.
9393
3. Export the application path to point to your target folder containing Java classes:
9494

9595
```bash
96-
export APP_PATH="/Users/sarthak_1/Downloads/karaf-sample/user-service"
96+
export APP_PATH="/Users/path/to/karaf-sample/user-service"
9797
```
9898

9999
Replace the `APP_PATH` value with the absolute path to your application's target folder.

0 commit comments

Comments
 (0)