summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rwxr-xr-xngxtop.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index be27e1d..237c414 100644
--- a/README.md
+++ b/README.md
@@ -79,7 +79,7 @@ top remote_addr
| 125.26.213.203 | 15 |
```
-###List 4xx or 5xx reponses together with HTTP referer
+###List 4xx or 5xx responses together with HTTP referer
```
$ ./ngxtop.py -i 'status >= 400' print request status http_referer
diff --git a/ngxtop.py b/ngxtop.py
index 69a4285..6e1cf48 100755
--- a/ngxtop.py
+++ b/ngxtop.py
@@ -52,7 +52,7 @@ Examples:
$ ngxtop -i 'status >= 400' print request status http_referer
Average body bytes sent of 200 responses of requested path begin with 'foo':
- $ ngxtop avg bytes_sent --filter 'status == 200 and requested_path.startswith("foo")'
+ $ ngxtop avg bytes_sent --filter 'status == 200 and request_path.startswith("foo")'
"""
from contextlib import closing
import logging