Skip to content

Commit 87c37be

Browse files
author
Olivier Briat
committed
Doc change
1 parent c123ae8 commit 87c37be

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/extending-locust.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ source code.
130130

131131
* ``extend_modern_web_ui.py``: Display a table with content-length for each call.
132132

133-
* ``extend_modern_web_ui_cache_stats.py``: Display Varnish Hit/ Miss stats for each call. Could be easly extended to other CDN or cache proxies and gather other cache statistics such as cache age, control, ...
133+
* ``web_ui_cache_stats.py``: Display Varnish Hit/ Miss stats for each call. Could be easly extended to other CDN or cache proxies and gather other cache statistics such as cache age, control, ...
134134

135135
.. image:: images/extend_modern_web_ui_cache_stats.png
136136

examples/extend_modern_web_ui_cache_stats.py renamed to examples/web_ui_cache_stats.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ class WebsiteUser(HttpUser):
3737
tasks = [MyTaskSet]
3838

3939

40-
# @see https://docs.acquia.com/acquia-cloud-platform/performance/varnish/headers
40+
# This example is based on the Varnish hit/miss headers (https://docs.varnish-software.com/tutorials/hit-miss-logging/).
41+
# It could easly be customised for matching other caching sytems, CDN or custom headers.
4142
CACHE_HEADER = "X-Cache"
4243

4344
cache_stats = {}

0 commit comments

Comments
 (0)