Skip to content

Commit

Permalink
Add temporary filter to non-critical SNMP warning. (#13800)
Browse files Browse the repository at this point in the history
A fix for this is available in the SNMP tip, but not in any Debian version.
This filter will be removed when Debian provides a version with the fix.
  • Loading branch information
mgrimesix authored May 24, 2024
1 parent 467e3f4 commit c52e2c1
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ filter f_scst {
program("kernel") and match("dlm:" value("MESSAGE"));
};

# Temporary SNMP filter: NAS-129124
filter f_snmp {
program("snmpd") and match("unexpected header length" value("MESSAGE"));
};

filter f_truenas_exclude {
% if not nfs_conf['mountd_log']:
not filter(f_nfs_mountd) and
Expand All @@ -69,7 +74,9 @@ filter f_truenas_exclude {
not filter(f_containerd) and
not filter(f_kube_router) and
not filter(f_app_mounts) and
not filter(f_scst)
not filter(f_scst) and
# Temporary SNMP filter: NAS-129124
not filter(f_snmp)
};

#####################
Expand Down

0 comments on commit c52e2c1

Please sign in to comment.