]> git.proxmox.com Git - mirror_frr.git/blob - watchfrr/watchfrr_errors.c
Merge pull request #12798 from donaldsharp/rib_match_multicast
[mirror_frr.git] / watchfrr / watchfrr_errors.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Watchfrr-specific error messages.
4 * Copyright (C) 2018 Cumulus Networks, Inc.
5 * Donald Sharp
6 */
7
8 #include <zebra.h>
9
10 #include "lib/ferr.h"
11 #include "watchfrr_errors.h"
12
13 /* clang-format off */
14 static struct log_ref ferr_watchfrr_err[] = {
15 {
16 .code = EC_WATCHFRR_CONNECTION,
17 .title = "WATCHFRR Connection Error",
18 .description = "WATCHFRR has detected a connectivity issue with one of the FRR daemons",
19 .suggestion = "Ensure that FRR is still running and if not please open an Issue"
20 },
21 {
22 .code = EC_WATCHFRR_UNEXPECTED_DAEMONS,
23 .title = "WATCHFRR wrong daemons to watch",
24 .description = "As part of WATCHFRR startup you must specify 1 or more daemons to monitor",
25 .suggestion = "Update your startup scripts to include zebra and any other daemon you would like to monitor",
26 },
27 {
28 .code = END_FERR,
29 }
30 };
31 /* clang-format on */
32
33 void watchfrr_error_init(void)
34 {
35 log_ref_add(ferr_watchfrr_err);
36 }