Where can I see an amount of users on my Chatmail relay

I have a chatmail relay (https://deltachat.kz). I want to know how many users are registered on my chatmail relay. Following ChatGPT instructions, I tried sudo journalctl -u dovecot --no-pager -n 50, but it shows only last actions on the relay. Is there a way to know an exact amount of registered users?

1 Like

https://deltachat.kz/metrics

But apparently this is going to get removed soon, and the new way is http://{{mtail_address}}:3903/metrics with mtail_address = 127.0.0.1 in chatmail.ini:

Related topics:

I wrote a simple bash script to display the total users and their disk usage using ‘du’ and ‘nl’ commands.

It will output something like this:

Disk usage by user account: 

 1.  1.6M       1@domain
 2.  5.7M       2@domain
 3.  8.0K       3@domain
 4.  8.0K       4@domain
 5.  8.0K       5@domain
1 Like