summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2016-06-23 16:26:36 +0200
committerMarkus Armbruster <armbru@redhat.com>2017-01-16 09:19:49 +0100
commit9ba5cec9dd68ac1b38fbb7ab45f389e5e05b89f1 (patch)
treedd3de6d3a5e1a9ee5885fe2354bd30a87942ff54 /docs
parent73c41bfd314fe3319e35325162a7e9ded310fc4f (diff)
downloadqemu-9ba5cec9dd68ac1b38fbb7ab45f389e5e05b89f1.tar.gz
qmp-events: move 'WATCHDOG' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/qmp-events.txt21
1 files changed, 0 insertions, 21 deletions
diff --git a/docs/qmp-events.txt b/docs/qmp-events.txt
index 35760649aa..fbcf4f83f1 100644
--- a/docs/qmp-events.txt
+++ b/docs/qmp-events.txt
@@ -401,24 +401,3 @@ Example:
"timestamp": { "seconds": 1401385907, "microseconds": 422329 } }
Note: this event is rate-limited separately for each "id".
-
-WATCHDOG
---------
-
-Emitted when the watchdog device's timer is expired.
-
-Data:
-
-- "action": Action that has been taken, it's one of the following (json-string):
- "reset", "shutdown", "poweroff", "pause", "debug", or "none"
-
-Example:
-
-{ "event": "WATCHDOG",
- "data": { "action": "reset" },
- "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
-
-Note: If action is "reset", "shutdown", or "pause" the WATCHDOG event is
-followed respectively by the RESET, SHUTDOWN, or STOP events.
-
-Note: this event is rate-limited.