Python locust.Locust() Examples
The following are 2
code examples of locust.Locust().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
locust
, or try the search function
.
Example #1
Source File: image_locust.py From inference-model-manager with Apache License 2.0 | 6 votes |
def teardown(self): print("Locust ends his tasks")
Example #2
Source File: mqtt_locust.py From mqtt-locust with MIT License | 6 votes |
def __init__(self, *args, **kwargs): super(Locust, self).__init__(*args, **kwargs) if self.host is None: raise LocustError("You must specify a host") #TODO: Current implementation sets an empty client_id when the connection is initialized, # which Paho handles by creating a random client_id. # Ideally we want to control the client_id that is set in Paho. Each client_id # should match a thing_id in the AWS IoT Thing Registry #self.client = MQTTClient(self.client_id) self.client = MQTTClient() try: [host, port] = self.host.split(":") except: host, port = self.host, 8883 try: self.client.tls_set(self.ca_cert, self.iot_cert, self.iot_private_key, tls_version=ssl.PROTOCOL_TLSv1_2) #It is important to do an asynchronous connect, given that we will have #multiple connections happening in a single server during a Locust test self.client.connect_async(host, port) self.client.loop_start() except Exception as e: fire_locust_failure( request_type=REQUEST_TYPE, name='connect', response_time=time_delta(start_time, time.time()), exception=ConnectError("Could not connect to host:["+host+"]") )