We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0419432 commit 1a75587Copy full SHA for 1a75587
1 file changed
ansible/roles/munin-node/templates/plugins/lovelace/dovecot_maildirs.sh.j2
@@ -47,7 +47,11 @@ fi
47
48
echo "multigraph dovecot_maildir_sizes"
49
du --bytes --summarize -- * \
50
- | awk '{ print $2 ".value " $1 }'
+ | awk '{
51
+ sanitized = $2
52
+ gsub(/\./, "_", sanitized)
53
+ print sanitized ".value " $1 }
54
+ '
55
56
echo "multigraph dovecot_maildir_mails"
57
find . \
0 commit comments