blob: ee6c57cc5798d315f246420bdab370dc9844e2c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Blocklist last update time.
# Default update interval is a week.
template: pihole_blocklist_last_update
on: pihole.blocklist_last_update
class: Errors
type: Ad Filtering
component: Pi-hole
every: 10s
units: seconds
calc: $ago
warn: $this > 60 * 60 * 24 * 8
crit: $this > 60 * 60 * 24 * 8 * 2
info: gravity.list (blocklist) file last update time
to: sysadmin
# Pi-hole's ability to block unwanted domains.
# Should be enabled. The whole point of Pi-hole!
template: pihole_status
on: pihole.unwanted_domains_blocking_status
class: Errors
type: Ad Filtering
component: Pi-hole
every: 10s
units: status
calc: $disabled
warn: $this != nan AND $this == 1
delay: up 2m down 5m
info: unwanted domains blocking is disabled
to: sysadmin
|