We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3718560 commit 98dbf2aCopy full SHA for 98dbf2a
justfile
@@ -29,6 +29,16 @@ system-info:
29
audit:
30
go list -json -m all | nancy sleuth --loud
31
32
+# benchmark the app's HTTP endpoint with plow (requires https://github.com/six-ddc/plow)
33
+benchmark-plow:
34
+ @echo plow -c 100 --duration=30s http://localhost:${APP_PORT}/status
35
+ @plow -c 100 --duration=30s http://localhost:${APP_PORT}/status
36
+
37
+# benchmark the app's HTTP endpoint with wrk (requires https://github.com/wg/wrk)
38
+benchmark-wrk:
39
+ @echo wrk -t 10 -c 100 --latency --duration 30 http://localhost:${APP_PORT}/status
40
+ @wrk -t 10 -c 100 --latency --duration 30 http://localhost:${APP_PORT}/status
41
42
# build executable for local OS
43
build: test-vanilla
44
@echo "Building executable for local OS ..."
0 commit comments