diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2015-03-02 09:41:14 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2015-03-02 09:41:14 +0100 |
commit | 8bcb5fb1e8a0718f88f99cde2f5b5a3bae5c4451 (patch) | |
tree | c4ce5adbef88e2b2b002d42e274773f424aa1f19 /nest/config.Y | |
parent | 4e63974471c4e2f11781cda163e0dc2ac6fb72f9 (diff) |
Implement latency tracking, internal event log and watchdog
Diffstat (limited to 'nest/config.Y')
-rw-r--r-- | nest/config.Y | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nest/config.Y b/nest/config.Y index 8b697292..8e1e9880 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -621,6 +621,8 @@ CF_CLI(DUMP RESOURCES,,, [[Dump all allocated resource]]) { rdump(&root_pool); cli_msg(0, ""); } ; CF_CLI(DUMP SOCKETS,,, [[Dump open sockets]]) { sk_dump_all(); cli_msg(0, ""); } ; +CF_CLI(DUMP EVENTS,,, [[Dump event log]]) +{ io_log_dump(); cli_msg(0, ""); } ; CF_CLI(DUMP INTERFACES,,, [[Dump interface information]]) { if_dump_all(); cli_msg(0, ""); } ; CF_CLI(DUMP NEIGHBORS,,, [[Dump neighbor cache]]) |