diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index 349db30..af3d44b 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -66,7 +66,7 @@ jobs:
id: tusk-version
run: |
VERSION=$(curl -s -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
- "https://api.github.com/repos/Use-Tusk/tusk-drift-cli/releases/latest" \
+ "https://api.github.com/repos/Use-Tusk/tusk-cli/releases/latest" \
| grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "Latest Tusk CLI version: $VERSION"
@@ -127,7 +127,7 @@ jobs:
id: tusk-version
run: |
VERSION=$(curl -s -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
- "https://api.github.com/repos/Use-Tusk/tusk-drift-cli/releases/latest" \
+ "https://api.github.com/repos/Use-Tusk/tusk-cli/releases/latest" \
| grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "Latest Tusk CLI version: $VERSION"
diff --git a/README.md b/README.md
index 82e73c3..4ac79f5 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@
-The Node.js Tusk Drift SDK enables fast and deterministic API testing by capturing and replaying API calls made to/from your service. Automatically record real-world API calls, then replay them as tests using the [Tusk CLI](https://github.com/Use-Tusk/tusk-drift-cli) to find regressions. During replay, all outbound requests are intercepted with recorded data to ensure consistent behavior without side-effects.
+The Node.js Tusk Drift SDK enables fast and deterministic API testing by capturing and replaying API calls made to/from your service. Automatically record real-world API calls, then replay them as tests using the [Tusk CLI](https://github.com/Use-Tusk/tusk-cli) to find regressions. During replay, all outbound requests are intercepted with recorded data to ensure consistent behavior without side-effects.
@@ -63,7 +63,7 @@ If you're using packages or versions not listed above, please create an issue wi
### Step 1: Install the CLI
-First, install and configure the Tusk Drift CLI by following our [CLI installation guide](https://github.com/Use-Tusk/tusk-drift-cli?tab=readme-ov-file#install). The CLI helps set up your Tusk configuration file and replays tests.
+First, install and configure the Tusk Drift CLI by following our [CLI installation guide](https://github.com/Use-Tusk/tusk-cli?tab=readme-ov-file#install). The CLI helps set up your Tusk configuration file and replays tests.
The wizard will eventually direct you back here when it's time to set up the SDK.
diff --git a/docs/initialization.md b/docs/initialization.md
index f767eb9..fbfc6bc 100644
--- a/docs/initialization.md
+++ b/docs/initialization.md
@@ -4,7 +4,7 @@
Before setting up the SDK, ensure you have:
-- Completed the [CLI wizard](https://github.com/Use-Tusk/tusk-drift-cli?tab=readme-ov-file#quick-start)
+- Completed the [CLI wizard](https://github.com/Use-Tusk/tusk-cli/blob/main/docs/drift/README.md#quick-start)
- Obtained an API key from the [Tusk Drift dashboard](https://usetusk.ai/app/settings/api-keys) (only required if using Tusk Cloud)
> **📦 Using Next.js?** Next.js applications require a different initialization process.
diff --git a/docs/quickstart.md b/docs/quickstart.md
index 4f51cc7..1c1a762 100644
--- a/docs/quickstart.md
+++ b/docs/quickstart.md
@@ -49,7 +49,7 @@ You should see an output similar to:
Press `ESC` to exit the list view.
-Need to install the Tusk CLI? See [CLI installation guide](https://github.com/Use-Tusk/tusk-drift-cli?tab=readme-ov-file#install).
+Need to install the Tusk CLI? See [CLI installation guide](https://github.com/Use-Tusk/tusk-cli?tab=readme-ov-file#install).
## Step 6: Replay the Trace
diff --git a/src/instrumentation/libraries/fetch/e2e-tests/cjs-fetch/Dockerfile b/src/instrumentation/libraries/fetch/e2e-tests/cjs-fetch/Dockerfile
index 8400845..2dc3e12 100644
--- a/src/instrumentation/libraries/fetch/e2e-tests/cjs-fetch/Dockerfile
+++ b/src/instrumentation/libraries/fetch/e2e-tests/cjs-fetch/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/fetch/e2e-tests/esm-fetch/Dockerfile b/src/instrumentation/libraries/fetch/e2e-tests/esm-fetch/Dockerfile
index da37ce5..6937f58 100644
--- a/src/instrumentation/libraries/fetch/e2e-tests/esm-fetch/Dockerfile
+++ b/src/instrumentation/libraries/fetch/e2e-tests/esm-fetch/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/firestore/e2e-tests/cjs-firestore/Dockerfile b/src/instrumentation/libraries/firestore/e2e-tests/cjs-firestore/Dockerfile
index 442338c..e76e3cf 100644
--- a/src/instrumentation/libraries/firestore/e2e-tests/cjs-firestore/Dockerfile
+++ b/src/instrumentation/libraries/firestore/e2e-tests/cjs-firestore/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/firestore/e2e-tests/esm-firestore/Dockerfile b/src/instrumentation/libraries/firestore/e2e-tests/esm-firestore/Dockerfile
index 260dd79..edf7390 100644
--- a/src/instrumentation/libraries/firestore/e2e-tests/esm-firestore/Dockerfile
+++ b/src/instrumentation/libraries/firestore/e2e-tests/esm-firestore/Dockerfile
@@ -18,9 +18,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/grpc/e2e-tests/cjs-grpc/Dockerfile b/src/instrumentation/libraries/grpc/e2e-tests/cjs-grpc/Dockerfile
index a695d44..21b4f6d 100644
--- a/src/instrumentation/libraries/grpc/e2e-tests/cjs-grpc/Dockerfile
+++ b/src/instrumentation/libraries/grpc/e2e-tests/cjs-grpc/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server ports
diff --git a/src/instrumentation/libraries/grpc/e2e-tests/esm-grpc/Dockerfile b/src/instrumentation/libraries/grpc/e2e-tests/esm-grpc/Dockerfile
index 6d25cdf..f07c188 100644
--- a/src/instrumentation/libraries/grpc/e2e-tests/esm-grpc/Dockerfile
+++ b/src/instrumentation/libraries/grpc/e2e-tests/esm-grpc/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server ports
diff --git a/src/instrumentation/libraries/http/e2e-tests/cjs-http/Dockerfile b/src/instrumentation/libraries/http/e2e-tests/cjs-http/Dockerfile
index 437d46e..0209552 100644
--- a/src/instrumentation/libraries/http/e2e-tests/cjs-http/Dockerfile
+++ b/src/instrumentation/libraries/http/e2e-tests/cjs-http/Dockerfile
@@ -22,9 +22,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/http/e2e-tests/esm-http/Dockerfile b/src/instrumentation/libraries/http/e2e-tests/esm-http/Dockerfile
index 0c4afb8..f6b5f5a 100644
--- a/src/instrumentation/libraries/http/e2e-tests/esm-http/Dockerfile
+++ b/src/instrumentation/libraries/http/e2e-tests/esm-http/Dockerfile
@@ -22,9 +22,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/ioredis/e2e-tests/cjs-ioredis/Dockerfile b/src/instrumentation/libraries/ioredis/e2e-tests/cjs-ioredis/Dockerfile
index d76b0e7..59f86f3 100644
--- a/src/instrumentation/libraries/ioredis/e2e-tests/cjs-ioredis/Dockerfile
+++ b/src/instrumentation/libraries/ioredis/e2e-tests/cjs-ioredis/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/ioredis/e2e-tests/esm-ioredis/Dockerfile b/src/instrumentation/libraries/ioredis/e2e-tests/esm-ioredis/Dockerfile
index 772c8de..84e1896 100644
--- a/src/instrumentation/libraries/ioredis/e2e-tests/esm-ioredis/Dockerfile
+++ b/src/instrumentation/libraries/ioredis/e2e-tests/esm-ioredis/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/mongodb/e2e-tests/cjs-mongodb-v4/Dockerfile b/src/instrumentation/libraries/mongodb/e2e-tests/cjs-mongodb-v4/Dockerfile
index d0348b5..ef2eb90 100644
--- a/src/instrumentation/libraries/mongodb/e2e-tests/cjs-mongodb-v4/Dockerfile
+++ b/src/instrumentation/libraries/mongodb/e2e-tests/cjs-mongodb-v4/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/mongodb/e2e-tests/cjs-mongodb/Dockerfile b/src/instrumentation/libraries/mongodb/e2e-tests/cjs-mongodb/Dockerfile
index f6352a5..3f00743 100644
--- a/src/instrumentation/libraries/mongodb/e2e-tests/cjs-mongodb/Dockerfile
+++ b/src/instrumentation/libraries/mongodb/e2e-tests/cjs-mongodb/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/mongodb/e2e-tests/esm-mongodb-v4/Dockerfile b/src/instrumentation/libraries/mongodb/e2e-tests/esm-mongodb-v4/Dockerfile
index 1bcd82f..93520ce 100644
--- a/src/instrumentation/libraries/mongodb/e2e-tests/esm-mongodb-v4/Dockerfile
+++ b/src/instrumentation/libraries/mongodb/e2e-tests/esm-mongodb-v4/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/mongodb/e2e-tests/esm-mongodb/Dockerfile b/src/instrumentation/libraries/mongodb/e2e-tests/esm-mongodb/Dockerfile
index 74998d7..9137ac6 100644
--- a/src/instrumentation/libraries/mongodb/e2e-tests/esm-mongodb/Dockerfile
+++ b/src/instrumentation/libraries/mongodb/e2e-tests/esm-mongodb/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/mysql/e2e-tests/cjs-mysql/Dockerfile b/src/instrumentation/libraries/mysql/e2e-tests/cjs-mysql/Dockerfile
index bbee873..0ebc719 100644
--- a/src/instrumentation/libraries/mysql/e2e-tests/cjs-mysql/Dockerfile
+++ b/src/instrumentation/libraries/mysql/e2e-tests/cjs-mysql/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/mysql/e2e-tests/esm-mysql/Dockerfile b/src/instrumentation/libraries/mysql/e2e-tests/esm-mysql/Dockerfile
index d901033..ef2bc99 100644
--- a/src/instrumentation/libraries/mysql/e2e-tests/esm-mysql/Dockerfile
+++ b/src/instrumentation/libraries/mysql/e2e-tests/esm-mysql/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/mysql2/e2e-tests/cjs-mysql2/Dockerfile b/src/instrumentation/libraries/mysql2/e2e-tests/cjs-mysql2/Dockerfile
index 325c33f..c2c48ff 100644
--- a/src/instrumentation/libraries/mysql2/e2e-tests/cjs-mysql2/Dockerfile
+++ b/src/instrumentation/libraries/mysql2/e2e-tests/cjs-mysql2/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/mysql2/e2e-tests/esm-mysql2/Dockerfile b/src/instrumentation/libraries/mysql2/e2e-tests/esm-mysql2/Dockerfile
index 7894eb0..bc85146 100644
--- a/src/instrumentation/libraries/mysql2/e2e-tests/esm-mysql2/Dockerfile
+++ b/src/instrumentation/libraries/mysql2/e2e-tests/esm-mysql2/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/nextjs/e2e-tests/cjs-nextjs/Dockerfile b/src/instrumentation/libraries/nextjs/e2e-tests/cjs-nextjs/Dockerfile
index 6ecc577..9fd14cf 100644
--- a/src/instrumentation/libraries/nextjs/e2e-tests/cjs-nextjs/Dockerfile
+++ b/src/instrumentation/libraries/nextjs/e2e-tests/cjs-nextjs/Dockerfile
@@ -16,9 +16,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/nextjs/e2e-tests/esm-nextjs/Dockerfile b/src/instrumentation/libraries/nextjs/e2e-tests/esm-nextjs/Dockerfile
index c4469f1..27a13f4 100644
--- a/src/instrumentation/libraries/nextjs/e2e-tests/esm-nextjs/Dockerfile
+++ b/src/instrumentation/libraries/nextjs/e2e-tests/esm-nextjs/Dockerfile
@@ -16,9 +16,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/pg/e2e-tests/cjs-pg/Dockerfile b/src/instrumentation/libraries/pg/e2e-tests/cjs-pg/Dockerfile
index 3f1e60e..470d68b 100644
--- a/src/instrumentation/libraries/pg/e2e-tests/cjs-pg/Dockerfile
+++ b/src/instrumentation/libraries/pg/e2e-tests/cjs-pg/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/pg/e2e-tests/esm-pg/Dockerfile b/src/instrumentation/libraries/pg/e2e-tests/esm-pg/Dockerfile
index f306a96..7a1620b 100644
--- a/src/instrumentation/libraries/pg/e2e-tests/esm-pg/Dockerfile
+++ b/src/instrumentation/libraries/pg/e2e-tests/esm-pg/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/postgres/e2e-tests/cjs-postgres/Dockerfile b/src/instrumentation/libraries/postgres/e2e-tests/cjs-postgres/Dockerfile
index 5a86756..3b2a70a 100644
--- a/src/instrumentation/libraries/postgres/e2e-tests/cjs-postgres/Dockerfile
+++ b/src/instrumentation/libraries/postgres/e2e-tests/cjs-postgres/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/postgres/e2e-tests/esm-postgres/Dockerfile b/src/instrumentation/libraries/postgres/e2e-tests/esm-postgres/Dockerfile
index ee1565f..4116c70 100644
--- a/src/instrumentation/libraries/postgres/e2e-tests/esm-postgres/Dockerfile
+++ b/src/instrumentation/libraries/postgres/e2e-tests/esm-postgres/Dockerfile
@@ -13,7 +13,7 @@ ARG CACHEBUST=1
RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt/lists/*
# Install Tusk Drift CLI
-RUN curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh
+RUN curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh
# Expose the server port
EXPOSE 3000
diff --git a/src/instrumentation/libraries/prisma/e2e-tests/cjs-prisma/Dockerfile b/src/instrumentation/libraries/prisma/e2e-tests/cjs-prisma/Dockerfile
index 7a9652e..855e878 100644
--- a/src/instrumentation/libraries/prisma/e2e-tests/cjs-prisma/Dockerfile
+++ b/src/instrumentation/libraries/prisma/e2e-tests/cjs-prisma/Dockerfile
@@ -18,9 +18,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/prisma/e2e-tests/esm-prisma/Dockerfile b/src/instrumentation/libraries/prisma/e2e-tests/esm-prisma/Dockerfile
index c826b96..360d0be 100644
--- a/src/instrumentation/libraries/prisma/e2e-tests/esm-prisma/Dockerfile
+++ b/src/instrumentation/libraries/prisma/e2e-tests/esm-prisma/Dockerfile
@@ -18,9 +18,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/redis/e2e-tests/cjs-redis/Dockerfile b/src/instrumentation/libraries/redis/e2e-tests/cjs-redis/Dockerfile
index c07d912..57b8a3d 100644
--- a/src/instrumentation/libraries/redis/e2e-tests/cjs-redis/Dockerfile
+++ b/src/instrumentation/libraries/redis/e2e-tests/cjs-redis/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/redis/e2e-tests/esm-redis/Dockerfile b/src/instrumentation/libraries/redis/e2e-tests/esm-redis/Dockerfile
index a88b7fc..8863153 100644
--- a/src/instrumentation/libraries/redis/e2e-tests/esm-redis/Dockerfile
+++ b/src/instrumentation/libraries/redis/e2e-tests/esm-redis/Dockerfile
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt
# Install Tusk Drift CLI
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
# Expose the server port
diff --git a/src/instrumentation/libraries/upstash-redis-js/e2e-tests/cjs-upstash-redis-js/Dockerfile b/src/instrumentation/libraries/upstash-redis-js/e2e-tests/cjs-upstash-redis-js/Dockerfile
index 1143eb3..981fc08 100644
--- a/src/instrumentation/libraries/upstash-redis-js/e2e-tests/cjs-upstash-redis-js/Dockerfile
+++ b/src/instrumentation/libraries/upstash-redis-js/e2e-tests/cjs-upstash-redis-js/Dockerfile
@@ -12,9 +12,9 @@ ARG TUSK_CLI_VERSION=latest
RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt/lists/*
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
EXPOSE 3000
diff --git a/src/instrumentation/libraries/upstash-redis-js/e2e-tests/esm-upstash-redis-js/Dockerfile b/src/instrumentation/libraries/upstash-redis-js/e2e-tests/esm-upstash-redis-js/Dockerfile
index 2473965..65e4b3e 100644
--- a/src/instrumentation/libraries/upstash-redis-js/e2e-tests/esm-upstash-redis-js/Dockerfile
+++ b/src/instrumentation/libraries/upstash-redis-js/e2e-tests/esm-upstash-redis-js/Dockerfile
@@ -12,9 +12,9 @@ ARG TUSK_CLI_VERSION=latest
RUN apt-get update && apt-get install -y socat bubblewrap && rm -rf /var/lib/apt/lists/*
RUN if [ "$TUSK_CLI_VERSION" = "latest" ]; then \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh; \
else \
- curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-drift-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
+ curl -fsSL https://raw.githubusercontent.com/Use-Tusk/tusk-cli/main/install.sh | sh -s -- ${TUSK_CLI_VERSION}; \
fi
EXPOSE 3000