mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Provide sample entries to handle ZFS problem reports.
It'd be nice to send them via e-mail...
This commit is contained in:
parent
425d75486e
commit
3fcdc8c362
1 changed files with 31 additions and 0 deletions
|
|
@ -208,6 +208,37 @@ notify 10 {
|
|||
action "logger -p kern.emerg 'WARNING: system temperature too high, shutting down soon!'";
|
||||
};
|
||||
|
||||
# Sample ZFS problem reports handling.
|
||||
notify 10 {
|
||||
match "system" "ZFS";
|
||||
match "type" "zpool";
|
||||
action "logger -p kern.err 'ZFS: failed to load zpool $pool'";
|
||||
};
|
||||
|
||||
notify 10 {
|
||||
match "system" "ZFS";
|
||||
match "type" "vdev";
|
||||
action "logger -p kern.err 'ZFS: vdev failure, zpool=$pool'";
|
||||
};
|
||||
|
||||
notify 10 {
|
||||
match "system" "ZFS";
|
||||
match "type" "data";
|
||||
action "logger -p kern.warn 'ZFS: zpool I/O failure, zpool=$pool error=$zio_err'";
|
||||
};
|
||||
|
||||
notify 10 {
|
||||
match "system" "ZFS";
|
||||
match "type" "io";
|
||||
action "logger -p kern.warn 'ZFS: vdev I/O failure, zpool=$pool path=$vdev_path offset=$zio_offset size=$zio_size error=$zio_err'";
|
||||
};
|
||||
|
||||
notify 10 {
|
||||
match "system" "ZFS";
|
||||
match "type" "checksum";
|
||||
action "logger -p kern.warn 'ZFS: checksum mismatch, zpool=$pool path=$vdev_path offset=$zio_offset size=$zio_size'";
|
||||
};
|
||||
|
||||
/* EXAMPLES TO END OF FILE
|
||||
|
||||
# The following might be an example of something that a vendor might
|
||||
|
|
|
|||
Loading…
Reference in a new issue