aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLizzy Fleckenstein <lizzy@vlhl.dev>2026-04-01 22:18:41 +0200
committerLizzy Fleckenstein <lizzy@vlhl.dev>2026-04-01 22:18:41 +0200
commit102ded275951f107447434c933d1e3d98ac82bfa (patch)
treeb22b482bd8ddacf88e4e461df068e95ad730978f /README.md
parentfc93ed97cd02e7c737a3fdcd93faa6c866ab2d7a (diff)
downloadburstdog-102ded275951f107447434c933d1e3d98ac82bfa.tar.xz
rename to burstdog
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index 1b527a5..005e299 100644
--- a/README.md
+++ b/README.md
@@ -1,27 +1,27 @@
-# watchdog
+# burstdog
Monitor CPU usage by process and report bursts to a logfile.
## Invocation
```sh
-watchdog [logfile]
+burstdog [logfile]
```
-Default logfile is `watchdog.log` in the current directory.
+Default logfile is `burstdog.log` in the current directory.
## Build
-Compile using `make` or `cc watchdog.c -O3 -o watchdog`.
+Compile using `make` or `cc burstdog.c -O3 -o burstdog`.
-See [watchdog.c](watchdog.c) for configuration options.
+See [burstdog.c](burstdog.c) for configuration options.
Install to PREFIX using `make install`.
-## Test watchdog
+## Test burstdog
```sh
-$ watchdog &
-$ tail -f watchdog.log
+$ burstdog &
+$ tail -f burstdog.log
$ cat < /dev/random > /dev/null # in a different shell
```