Dovecot 2.3 deprecated the old stats plugin as `oldstats`

- https://doc.dovecot.org/installation_guide/upgrading/from-2.2-to-2.3/
This commit is contained in:
Christian Nicolai 2022-02-18 17:30:50 +01:00 committed by GitHub
parent b921dd0e93
commit 9fe21566cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ def echo_connections()
puts "nimap.info Number of imap connections currently open."
puts "nimap.type GAUGE"
else
output = `doveadm stats dump session connected`
output = `doveadm oldstats dump session connected`
csv_data = CSV.parse(output, {:col_sep => "\t"})
exit 1 if csv_data.empty?
puts "nimap.value #{csv_data.select { |x| x[3] == 'imap'}.size}"