Changed use of "column" in docstring to "attribute"

This commit is contained in:
Logan Lipke
2021-01-08 14:40:19 -08:00
parent 8083d2b9e6
commit 6d25adeceb
8 changed files with 9 additions and 9 deletions

View File

@@ -7,8 +7,8 @@ macvlans can be used as well. Command line options are available to update cross
existing cross-connects if desired. if none are given, cross-connects and endpoints will be created by the script.
Modes such as read-only, write-only, or both can be specified as well as ip addresses and starting numbers for sequential
stations or macvlans that are created in case of limited or pre-existing configurations. The test that is run during
this script will depend on the mode used, a read-only test will check the read-bps column, write-only will check write-bps
and both will check both columns. If the relevant columns increase over the duration of the test it will pass,
this script will depend on the mode used, a read-only test will check the read-bps attribute, write-only will check write-bps
and both will check both attributes. If the relevant attributes increase over the duration of the test it will pass,
otherwise it will fail.
Use './test_fileio.py --help' to see command line usage and options

View File

@@ -3,7 +3,7 @@
"""test_generic.py will create stations and endpoints to generate traffic based on a command-line specified command type.
This script will create a variable number of stations to test generic endpoints. Multiple command types can be tested
including ping, speedtest, generic types. The test will check the last result column for different things
including ping, speedtest, generic types. The test will check the last-result attribute for different things
depending on what test is being run. Ping will test for successful pings, speedtest will test for download
speed, upload speed, and ping time, generic will test for successful generic commands

View File

@@ -4,7 +4,7 @@
This script will create a variable number of stations that will attempt to use layer 4 endpoints to generate traffic.
A test will run for a specified amount of time with periodic checks for traffic successfully being received. The test will
monitor the bytes-rd column of the endpoints. An increase at every test interval will pass the test, otherwise it will fail
monitor the bytes-rd attribute of the endpoints. An increase at every test interval will pass the test, otherwise it will fail
Use './test_ipv4_l4.py --help' to see command line usage and options
Copyright 2021 Candela Technologies Inc

View File

@@ -4,7 +4,7 @@
This script will create a variable number of stations that will attempt to use layer 4 endpoints to generate traffic over ftp.
A test will run for a specified amount of time with periodic checks for traffic successfully being received. The test will
monitor the bytes-wr column of the endpoints. An increase at every test interval will pass the test, otherwise it will fail
monitor the bytes-wr attribute of the endpoints. An increase at every test interval will pass the test, otherwise it will fail
Use './test_ipv4_l4_ftp_upload.py --help' to see command line usage and options
Copyright 2021 Candela Technologies Inc

View File

@@ -4,7 +4,7 @@
This script will create a variable number of stations that will attempt to use layer 4 endpoints to generate traffic over ftp.
A test will run a specified number of times with periodic checks for traffic successfully being received every ten minutes.
The test will monitor the urls/s column of the endpoints. Being at or above 90% of the chosen url rate at each interval
The test will monitor the urls/s attribute of the endpoints. Being at or above 90% of the chosen url rate at each interval
will pass the test, otherwise it will fail
Use './test_ipv4_l4_ftp_urls_per_ten.py --help' to see command line usage and options

View File

@@ -4,7 +4,7 @@
This script will create a variable number of stations that will attempt to use layer 4 endpoints to generate traffic over ftp.
A test will run for a specified amount of time with periodic checks for traffic successfully being received. The test will
monitor the bytes-wr column of the endpoints. An increase at every test interval will pass the test, otherwise it will fail
monitor the bytes-wr attribute of the endpoints. An increase at every test interval will pass the test, otherwise it will fail
Use './test_ipv4_l4_ftp_wifi.py --help' to see command line usage and options
Copyright 2021 Candela Technologies Inc

View File

@@ -4,7 +4,7 @@
This script will create a variable number of stations that will attempt to use layer 4 endpoints to generate traffic.
A test will run a specified number of times with periodic checks for traffic successfully being received every ten minutes.
The test will monitor the urls/s column of the endpoints. Being at or above 90% of the chosen url rate at each interval
The test will monitor the urls/s attribute of the endpoints. Being at or above 90% of the chosen url rate at each interval
will pass the test, otherwise it will fail
Use './test_ipv4_l4_urls_per_ten.py --help' to see command line usage and options

View File

@@ -4,7 +4,7 @@
This script will create a variable number of stations that will attempt to use layer 4 endpoints to generate traffic.
A test will run for a specified amount of time with periodic checks for traffic successfully being received. The test will
monitor the bytes-rd column of the endpoints. An increase at every test interval will pass the test, otherwise it will fail
monitor the bytes-rd attribute of the endpoints. An increase at every test interval will pass the test, otherwise it will fail
Use './test_ipv4_l4_wifi.py --help' to see command line usage and options
Copyright 2021 Candela Technologies Inc