Index: plugins/node.d.openbsd/if_pps_.in
--- plugins/node.d.openbsd/if_pps_.in.orig
+++ plugins/node.d.openbsd/if_pps_.in
@@ -31,6 +31,8 @@ if [ "$1" = "autoconf" ]; then
 	fi
 fi
 
+DESCR=$(/sbin/ifconfig ${INTERFACE} | /usr/bin/awk -F ': ' '/description:(.*)$/ {print substr($2, 1, 12);}')
+
 if [ "$1" = "suggest" ]; then
 	if [ -x /usr/bin/netstat ]; then
 		netstat -i -n | sed -n -e '/^faith/d' -e '/^lo[0-9]/d' -e '/^pflog/d' -e '/<Link>/s/\** .*//p'
@@ -42,7 +44,11 @@ fi
 
 if [ "$1" = "config" ]; then
 	echo "graph_order rpkt opkt"
-	echo "graph_title $INTERFACE packets"
+	if [ "X${DESCR}" != 'X' ]; then
+		echo "graph_title $INTERFACE (${DESCR}) packets"
+	else
+		echo "graph_title $INTERFACE packets"
+	fi
 	echo 'graph_args --base 1000'
 	echo 'graph_vlabel packets/${graph_period} in (-) out (+)'
 	echo 'graph_category network'
