2 # zed.rc – ZEDLET configuration.
4 # shellcheck disable=SC2034
7 # Absolute path to the debug output file.
9 #ZED_DEBUG_LOG="/tmp/zed.debug.log"
12 # Email address of the zpool administrator for receipt of notifications;
13 # multiple addresses can be specified if they are delimited by whitespace.
14 # Email will only be sent if ZED_EMAIL_ADDR is defined.
15 # Enabled by default; comment to disable.
20 # Name or path of executable responsible for sending notifications via email;
21 # the mail program must be capable of reading a message body from stdin.
22 # Email will only be sent if ZED_EMAIL_ADDR is defined.
24 #ZED_EMAIL_PROG="mail"
27 # Command-line options for ZED_EMAIL_PROG.
28 # The string @ADDRESS@ will be replaced with the recipient email address(es).
29 # The string @SUBJECT@ will be replaced with the notification subject;
30 # this should be protected with quotes to prevent word-splitting.
31 # Email will only be sent if ZED_EMAIL_ADDR is defined.
32 # If @SUBJECT@ was omited here, a "Subject: ..." header will be added to notification
34 #ZED_EMAIL_OPTS="-s '@SUBJECT@' @ADDRESS@"
37 # Default directory for zed lock files.
39 #ZED_LOCKDIR="/var/lock"
42 # Minimum number of seconds between notifications for a similar event.
44 #ZED_NOTIFY_INTERVAL_SECS=3600
47 # Notification verbosity.
48 # If set to 0, suppress notification if the pool is healthy.
49 # If set to 1, send notification regardless of pool health.
54 # Send notifications for 'ereport.fs.zfs.data' events.
55 # Disabled by default, any non-empty value will enable the feature.
60 # Pushbullet access token.
61 # This grants full access to your account -- protect it accordingly!
62 # <https://www.pushbullet.com/get-started>
63 # <https://www.pushbullet.com/account>
64 # Disabled by default; uncomment to enable.
66 #ZED_PUSHBULLET_ACCESS_TOKEN=""
69 # Pushbullet channel tag for push notification feeds that can be subscribed to.
70 # <https://www.pushbullet.com/my-channel>
71 # If not defined, push notifications will instead be sent to all devices
72 # associated with the account specified by the access token.
73 # Disabled by default; uncomment to enable.
75 #ZED_PUSHBULLET_CHANNEL_TAG=""
79 # This allows posting to the given channel and includes an access token.
80 # <https://api.slack.com/incoming-webhooks>
81 # Disabled by default; uncomment to enable.
83 #ZED_SLACK_WEBHOOK_URL=""
87 # This defines the application from which the notification will be sent.
88 # <https://pushover.net/api#registration>
89 # Disabled by default; uncomment to enable.
90 # ZED_PUSHOVER_USER, below, must also be configured.
92 #ZED_PUSHOVER_TOKEN=""
96 # This defines which user or group will receive Pushover notifications.
97 # <https://pushover.net/api#identifiers>
98 # Disabled by default; uncomment to enable.
99 # ZED_PUSHOVER_TOKEN, above, must also be configured.
100 #ZED_PUSHOVER_USER=""
103 # Default directory for zed state files.
105 #ZED_RUNDIR="/var/run"
108 # Turn on/off enclosure LEDs when drives get DEGRADED/FAULTED. This works for
109 # device mapper and multipath devices as well. This works with JBOD enclosures
110 # and NVMe PCI drives (assuming they're supported by Linux in sysfs).
112 ZED_USE_ENCLOSURE_LEDS=1
115 # Run a scrub after every resilver
116 # Disabled by default, 1 to enable and 0 to disable.
117 #ZED_SCRUB_AFTER_RESILVER=0
120 # The syslog priority (e.g., specified as a "facility.level" pair).
122 #ZED_SYSLOG_PRIORITY="daemon.notice"
125 # The syslog tag for marking zed events.
127 #ZED_SYSLOG_TAG="zed"
130 # Which set of event subclasses to log
131 # By default, events from all subclasses are logged.
132 # If ZED_SYSLOG_SUBCLASS_INCLUDE is set, only subclasses
133 # matching the pattern are logged. Use the pipe symbol (|)
134 # or shell wildcards (*, ?) to match multiple subclasses.
135 # Otherwise, if ZED_SYSLOG_SUBCLASS_EXCLUDE is set, the
136 # matching subclasses are excluded from logging.
137 #ZED_SYSLOG_SUBCLASS_INCLUDE="checksum|scrub_*|vdev.*"
138 ZED_SYSLOG_SUBCLASS_EXCLUDE="history_event"
141 # Use GUIDs instead of names when logging pool and vdevs
142 # Disabled by default, 1 to enable and 0 to disable.
143 #ZED_SYSLOG_DISPLAY_GUIDS=1
146 # Power off the drive's slot in the enclosure if it becomes FAULTED. This can
147 # help silence misbehaving drives. This assumes your drive enclosure fully
148 # supports slot power control via sysfs.
149 #ZED_POWER_OFF_ENCLOSURE_SLOT_ON_FAULT=1
152 # Power off the drive's slot in the enclosure if there is a hung I/O which
153 # exceeds the deadman timeout. This can help prevent a single misbehaving
154 # drive from rendering a redundant pool unavailable. This assumes your drive
155 # enclosure fully supports slot power control via sysfs.
156 #ZED_POWER_OFF_ENCLOSURE_SLOT_ON_DEADMAN=1
160 # This defines which topic will receive the ntfy notification.
161 # <https://docs.ntfy.sh/publish/>
162 # Disabled by default; uncomment to enable.
166 # Ntfy access token (optional for public topics)
167 # This defines an access token which can be used
168 # to allow you to authenticate when sending to topics
169 # <https://docs.ntfy.sh/publish/#access-tokens>
170 # Disabled by default; uncomment to enable.
171 #ZED_NTFY_ACCESS_TOKEN=""
175 # This defines which service the ntfy call will be directed toward
176 # <https://docs.ntfy.sh/install/>
177 # https://ntfy.sh by default; uncomment to enable an alternative service url.
178 #ZED_NTFY_URL="https://ntfy.sh"
182 # This defines a URL that the Gotify call will be directed toward.
183 # <https://gotify.net/docs/index>
184 # Disabled by default; uncomment to enable.
188 # Gotify application token
189 # This defines a Gotify application token which a message is associated with.
190 # This token is generated when an application is created on the Gotify server.
191 # Disabled by default; uncomment to enable.
192 #ZED_GOTIFY_APPTOKEN=""
195 # Gotify priority (optional)
196 # If defined, this overrides the default priority of the
197 # Gotify application associated with ZED_GOTIFY_APPTOKEN.
198 # Value is an integer 0 and up.
199 #ZED_GOTIFY_PRIORITY=""