File:  [Coherent Logic Development] / RasLoadTester / loadtest
Revision 1.2: download - view: text, annotated - select for diffs
Sun Feb 9 03:04:35 2025 UTC (7 weeks, 4 days ago) by snw
Branches: MAIN
CVS tags: HEAD
Add heartbeat

#!/usr/bin/env bash

# 
# ChivaNet Load Tester
#  Copyright (C) 2025 Coherent Logic Development LLC
#
# Author: Serena Willis <snw@coherent-logic.com>
#
# Licensed AGPL-3.0
#
#   $Log: loadtest,v $
#   Revision 1.2  2025/02/09 03:04:35  snw
#   Add heartbeat
#
#
#


SERVER=$1
BOTCT=$2

for i in $(seq 0 $BOTCT)
do    
    ./ras-load -botno $i -botct $BOTCT -aimpw dummy -aimhost ${SERVER} &
    sleep 1
done


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>