Skip to content

Commit f823d3d

Browse files
.
Signed-off-by: Elena Kolevska <elena@kolevska.com>
1 parent ca9d43b commit f823d3d

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ make status
172172
**Custom Configuration:**
173173
```bash
174174
# Multiple clients with custom threading
175+
# Note: app-name will be concatenated with workload profile (python-dev-basic_rw)
175176
./venv/bin/python main.py run \
176177
--workload-profile basic_rw \
177178
--duration 300 \
@@ -253,13 +254,23 @@ make dev-stop
253254
--client-instances N # Number of client pools (default: 1)
254255
--connections-per-client N # Connections per pool (default: 5)
255256
--threads-per-client N # Worker threads per pool (default: 2)
256-
--app-name NAME # Application identifier (default: python-local)
257+
--app-name NAME # Base application name (default: python)
257258
--version VERSION # Version label (default: dev)
258259
--host HOST # Redis host (default: localhost)
259260
--port PORT # Redis port (default: 6379)
260261
--quiet # Minimal output
261262
```
262263

264+
#### **App Naming Convention:**
265+
The final app name in metrics is automatically concatenated as: `{app-name}-{workload-profile}`
266+
267+
**Examples:**
268+
- `--app-name python --workload-profile basic_rw``python-basic_rw`
269+
- `--app-name python-dev --workload-profile high_throughput``python-dev-high_throughput`
270+
- `--app-name go-test --workload-profile list_operations``go-test-list_operations`
271+
272+
This allows easy filtering and identification of different workloads in Grafana dashboards.
273+
263274
#### **Environment Variables:**
264275
```bash
265276
# Redis Connection

0 commit comments

Comments
 (0)