diff options
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -22,13 +22,13 @@ CLI usage | |||
22 | ```helptext | 22 | ```helptext |
23 | tickwatch: A monitoring and visualization tool | 23 | tickwatch: A monitoring and visualization tool |
24 | 24 | ||
25 | Usage: tickwatch [OPTIONS] | 25 | Usage: tickwatch [OPTIONS] MONITOR TARGET |
26 | 26 | ||
27 | Monitor options: | 27 | Monitors: |
28 | --ping=HOST Monitor ping latency to specified IP or hostname | 28 | ping Monitor ping latency to specified IP or hostname |
29 | Prefix hostname with 4/ or 6/ to force IP version | 29 | Prefix target hostname with 4/ or 6/ to force IP version |
30 | --value=PATH Monitor a sysfs file's value | 30 | value Monitor a sysfs file's value |
31 | --change=PATH Monitor changes in a sysfs file's value | 31 | change Monitor changes in a sysfs file's value |
32 | 32 | ||
33 | Display options: | 33 | Display options: |
34 | --range=MIN:MAX Set range of values (default: 0:1000) | 34 | --range=MIN:MAX Set range of values (default: 0:1000) |
@@ -44,13 +44,13 @@ Other options: | |||
44 | --version, -v Display the version | 44 | --version, -v Display the version |
45 | 45 | ||
46 | Examples: | 46 | Examples: |
47 | tickwatch --ping=6/euxane.net | 47 | tickwatch ping 6/euxane.net |
48 | 48 | ||
49 | tickwatch --range=0:100000 \ | 49 | tickwatch --range=0:100000 \ |
50 | --change=/sys/class/net/eth0/statistics/rx_packets | 50 | change /sys/class/net/eth0/statistics/rx_packets |
51 | 51 | ||
52 | tickwatch --scale=linear --range=0:50000 \ | 52 | tickwatch --scale=linear --range=0:50000 \ |
53 | --value=/sys/class/thermal/thermal_zone0/temp | 53 | value /sys/class/thermal/thermal_zone0/temp |
54 | ``` | 54 | ``` |
55 | 55 | ||
56 | 56 | ||