You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/quickstart.rst
+2-2
Original file line number
Diff line number
Diff line change
@@ -16,15 +16,15 @@ A Locust test is essentially just a Python program making requests to the system
16
16
self.client.get("/hello")
17
17
self.client.get("/world")
18
18
19
-
This user will make HTTP requests to ``/hello``, and then ``/world``, again and again. For a full explanation and a more realistic example see :ref:`writing-a-locustfile`.
19
+
This user will make an HTTP request to ``/hello``, and after that to ``/world``, and then repeat. For a full explanation and a more realistic example see :ref:`writing-a-locustfile`.
20
20
21
21
Change ``/hello`` and ``/world`` to some actual paths on the web site/service you want to test, put the code in a file named ``locustfile.py`` in your current directory and then run ``locust``:
22
22
23
23
.. code-block:: console
24
24
:substitutions:
25
25
26
26
$ locust
27
-
[2021-07-24 09:58:46,215] .../INFO/locust.main: Starting web interface at http://*:8089
27
+
[2021-07-24 09:58:46,215] .../INFO/locust.main: Starting web interface at http://0.0.0.0:8089
0 commit comments