加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
dovecot_auth 852 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env bash
# Dovecot v2.1+ supports gathering statistics to Munin
. ${MUNIN_LIBDIR}/plugins/plugin.sh
DOVEADM=${DOVEADM:-'/opt/local/bin/doveadm'}
case ${1} in
autoconf)
echo 'yes'
exit 0
;;
config)
cat <<-EOF
graph_title Dovecot Authentications
graph_category mail
graph_scale no
graph_args --base 1000
graph_vlabel authentications per \${graph_period}
auth_ok.label Successful
auth_ok.type DERIVE
auth_ok.min 0
auth_user_unknown.label User Unknown
auth_user_unknown.type DERIVE
auth_user_unknown.min 0
auth_password_mismatch.label Password Mismatch
auth_password_mismatch.type DERIVE
auth_password_mismatch.min 0
EOF
exit 0
;;
esac
${DOVEADM} -f tab stats dump -f count | awk 'NR>1 { print $1".value "$3 }'
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化