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

    1: #!/usr/bin/env bash
    2: 
    3: # 
    4: # ChivaNet Load Tester
    5: #  Copyright (C) 2025 Coherent Logic Development LLC
    6: #
    7: # Author: Serena Willis <snw@coherent-logic.com>
    8: #
    9: # Licensed AGPL-3.0
   10: #
   11: #   $Log: loadtest,v $
   12: #   Revision 1.2  2025/02/09 03:04:35  snw
   13: #   Add heartbeat
   14: #
   15: #
   16: #
   17: 
   18: 
   19: SERVER=$1
   20: BOTCT=$2
   21: 
   22: for i in $(seq 0 $BOTCT)
   23: do    
   24:     ./ras-load -botno $i -botct $BOTCT -aimpw dummy -aimhost ${SERVER} &
   25:     sleep 1
   26: done
   27: 

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