Is there a way to get how many Users are accessing a space per day?
So not how many views but how many single users.
Hi Dominik,
There isn't a built-in way to do that, but it appears these add-ons might be able to help you with that:
Let us know if you have any questions about that.
Regards,
Shannon
For Confluence Server or Data Center, one can also enable access logging. I prefer to pipe those logs to a log aggregator like the commercial Splunk or free Elastic Stack. However, one can also use command-line tools to count users in logs. If you follow the instructions for logging to a separate file, then you can do the following on Linux:
cat atlassian-confluence-access.* | awk '$7!="-"{print $7}' | uniq | wc -l
The one thing that might throw off the count a little is the first time access logging is enabled, Confluence produces a message to explain the log format. This means the above command will think one of your users is "AccessLogFilter" (because that's the 7th word in the message). So, you might want to check the actual names:
cat atlassian-confluence-access.* | awk '$7!="-"{print $7}' | uniq | sort
Hope that option helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.