mirror of
https://github.com/langgenius/dify.git
synced 2026-01-13 21:57:48 +08:00
Some checks are pending
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/amd64, build-api-amd64) (push) Waiting to run
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/arm64, build-api-arm64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/amd64, build-web-amd64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/arm64, build-web-arm64) (push) Waiting to run
Build and Push API & Web / create-manifest (api, DIFY_API_IMAGE_NAME, merge-api-images) (push) Blocked by required conditions
Build and Push API & Web / create-manifest (web, DIFY_WEB_IMAGE_NAME, merge-web-images) (push) Blocked by required conditions
Main CI Pipeline / Check Changed Files (push) Waiting to run
Main CI Pipeline / API Tests (push) Blocked by required conditions
Main CI Pipeline / Web Tests (push) Blocked by required conditions
Main CI Pipeline / Style Check (push) Waiting to run
Main CI Pipeline / VDB Tests (push) Blocked by required conditions
Main CI Pipeline / DB Migration Test (push) Blocked by required conditions
Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
37 lines
677 B
Plaintext
37 lines
677 B
Plaintext
# Locust configuration file for Dify SSE benchmark
|
|
|
|
# Target host
|
|
host = http://localhost:5001
|
|
|
|
# Number of users to simulate
|
|
users = 10
|
|
|
|
# Spawn rate (users per second)
|
|
spawn-rate = 2
|
|
|
|
# Run time (use format like 30s, 5m, 1h)
|
|
run-time = 1m
|
|
|
|
# Locustfile to use
|
|
locustfile = scripts/stress-test/sse_benchmark.py
|
|
|
|
# Headless mode (no web UI)
|
|
headless = true
|
|
|
|
# Print stats in the console
|
|
print-stats = true
|
|
|
|
# Only print summary stats
|
|
only-summary = false
|
|
|
|
# Reset statistics after ramp-up
|
|
reset-stats = false
|
|
|
|
# Log level
|
|
loglevel = INFO
|
|
|
|
# CSV output (uncomment to enable)
|
|
# csv = reports/locust_results
|
|
|
|
# HTML report (uncomment to enable)
|
|
# html = reports/locust_report.html |