mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-13 07:53:58 +00:00
Add apache benchmark installation check
This commit is contained in:
parent
e876f1b17d
commit
f5f8d2d7be
2 changed files with 12 additions and 0 deletions
6
server/query_testing/apache_bench_report.sh
vendored
6
server/query_testing/apache_bench_report.sh
vendored
|
@ -11,6 +11,12 @@ declare -a arr=(
|
|||
"https://torrents-csv.ml/service/search?q=wheel&page=1&type_=torrent"
|
||||
)
|
||||
|
||||
## check if ab installed
|
||||
if ! [ -x "$(command -v ab)" ]; then
|
||||
echo 'Error: ab (Apache Bench) is not installed. https://httpd.apache.org/docs/2.4/programs/ab.html' >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
## now loop through the above array
|
||||
for i in "${arr[@]}"
|
||||
do
|
||||
|
|
6
server/query_testing/api_benchmark.sh
vendored
6
server/query_testing/api_benchmark.sh
vendored
|
@ -15,6 +15,12 @@ declare -a arr=(
|
|||
"/api/v1/post/list?sort=Hot&type_=All"
|
||||
)
|
||||
|
||||
## check if ab installed
|
||||
if ! [ -x "$(command -v ab)" ]; then
|
||||
echo 'Error: ab (Apache Bench) is not installed. https://httpd.apache.org/docs/2.4/programs/ab.html' >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
## now loop through the above array
|
||||
for path in "${arr[@]}"
|
||||
do
|
||||
|
|
Loading…
Reference in a new issue