diff --git a/static/img/docs/checks_durations.png b/static/img/docs/checks_durations.png
new file mode 100644
index 00000000..e29e6692
Binary files /dev/null and b/static/img/docs/checks_durations.png differ
diff --git a/static/img/docs/details_durations.png b/static/img/docs/details_durations.png
new file mode 100644
index 00000000..88319c6d
Binary files /dev/null and b/static/img/docs/details_durations.png differ
diff --git a/templates/docs/configuring_notifications.html b/templates/docs/configuring_notifications.html
index fdeb72e0..024d113d 100644
--- a/templates/docs/configuring_notifications.html
+++ b/templates/docs/configuring_notifications.html
@@ -35,12 +35,12 @@ Set them up in Account Settings › Email Repo
Monthly Reports
SITE_NAME sends monthly email reports at the start of each month. Use them
to make sure all checks have their expected state and nothing has
-fallen "through the cracks".
+"fallen through the cracks".
A monthly report shows checks from all projects you have access
to. For each check it lists:
- check's current status
-- the number of downtimes for two previous months
-- the downtime duration for two previous months
+- the number of downtimes by month, for the two previous months
+- the total downtime duration by month, for the two previous months

\ No newline at end of file
diff --git a/templates/docs/configuring_notifications.md b/templates/docs/configuring_notifications.md
index e0631078..6a2fdc5e 100644
--- a/templates/docs/configuring_notifications.md
+++ b/templates/docs/configuring_notifications.md
@@ -44,13 +44,13 @@ Set them up in [Account Settings › Email Reports](../../accounts/profile/):
SITE_NAME sends monthly email reports at the start of each month. Use them
to make sure all checks have their expected state and nothing has
-fallen "through the cracks".
+"fallen through the cracks".
A monthly report shows checks from all projects you have access
to. For each check it lists:
* check's current status
-* the number of downtimes for two previous months
-* the downtime duration for two previous months
+* the number of downtimes by month, for the two previous months
+* the total downtime duration by month, for the two previous months

\ No newline at end of file
diff --git a/templates/docs/measuring_script_run_time.html b/templates/docs/measuring_script_run_time.html
index 1c77ecb7..a957de54 100644
--- a/templates/docs/measuring_script_run_time.html
+++ b/templates/docs/measuring_script_run_time.html
@@ -27,4 +27,15 @@ success within its configured "Grace Time", or it will get marked as "down".
# Signal success:
requests.get(URL)
-
\ No newline at end of file
+
+
+
+Viewing Measured Run Times
+When SITE_NAME receives a "start" signal followed by a regular ping or a "fail"
+signal, and the two events are less than 24 hours apart,
+you will see the time delta displayed in the list of checks. If the two events are
+more than 24 hours apart, they are assumed to be unrelated, and the time delta is
+not displayed.
+
+You can also see durations of the previous runs when viewing an individual check:
+
\ No newline at end of file
diff --git a/templates/docs/measuring_script_run_time.md b/templates/docs/measuring_script_run_time.md
index fb289bf0..b0644b18 100644
--- a/templates/docs/measuring_script_run_time.md
+++ b/templates/docs/measuring_script_run_time.md
@@ -33,3 +33,17 @@ print("F(42) = %d" % fib(42))
# Signal success:
requests.get(URL)
```
+
+## Viewing Measured Run Times
+
+When SITE_NAME receives a "start" signal followed by a regular ping or a "fail"
+signal, and the two events are less than 24 hours apart,
+you will see the time delta displayed in the list of checks. If the two events are
+more than 24 hours apart, they are assumed to be unrelated, and the time delta is
+not displayed.
+
+
+
+You can also see durations of the previous runs when viewing an individual check:
+
+
\ No newline at end of file