diff --git a/docs/tutorials/asyncio.rst b/docs/tutorials/asyncio.rst index 9109250d..85b10238 100644 --- a/docs/tutorials/asyncio.rst +++ b/docs/tutorials/asyncio.rst @@ -18,6 +18,18 @@ You can find complete project on the What are we going to build? --------------------------- +We will build a monitoring daemon that monitors web services availability. + +The daemon will send the requests to the `example.com `_ and +`httpbin.org `_ every couple of seconds. For each successfully completed +response it will log: + +- The response code +- The amount of bytes in the response +- The time took to complete the response + +.. image:: asyncio_images/diagram.png + Prepare the environment ----------------------- diff --git a/docs/tutorials/asyncio_images/diagram.png b/docs/tutorials/asyncio_images/diagram.png new file mode 100644 index 00000000..8a77184b Binary files /dev/null and b/docs/tutorials/asyncio_images/diagram.png differ