As a side note, to search your manuals, you can do:
man -k watchdog
and any manual which uses the word at least in the name or title/description will show up in your console. If you expect many options, you may want to use it with less as in:
man -k watchdog | less
In our case here, though, you probably won't get much more than 2 or 3 entries.
That shows a utility which is named wdctl, allowing you to see the current status/setup of the watchdog. Here is an example on one of the Jetson boards I'm working with:
$ wdctl Device: /dev/watchdog Identity: Tegra WDT [version 1] Timeout: 120 seconds Pre-timeout: 0 seconds FLAG DESCRIPTION STATUS BOOT-STATUS KEEPALIVEPING Keep alive ping reply 0 0 MAGICCLOSE Supports magic close char 0 0 SETTIMEOUT Set timeout (in seconds) 0 0
We can see the Timeout entry which tells you how long the watchdog will wait before forcing an auto-reboot.
In newer versions of Linux, this is controlled through systemd. Look at /etc/systemd/system.conf where you can find a couple of parameters (usually commented out by default):
[Manager] ... #RuntimeWatchdogSec=0 #ShutdownWatchdogSec=10min ...
Note: If easier for you, you could also use the apropos command line tool instead of man -k. It does the same thing, although the -k is not required in this case.
apropos watchdog
Also the keyword (watchdog in this example) can be a regular expression by default.