Dear all,
Would it be possible to count how many likes and comment by people and space ? Our confluence is version 4.2.1 . Thank you.
Hi Hsu,
I believe that you can retrieve the number of likes from the users in the table "Likes". This is an example query that will count all likes in the entire confluence for all users:
select count(*), l.username from likes l group by l.username;
You can modify the query for your needs.
I hope this helps!
Cheers,
Rodrigo
Hi,
Unfortunately there's not a method on Confluence to count this information. However, for comments, you can check through the database, using the below query:
SELECT * FROM content WHERE contenttype LIKE 'COMMENT'
Regards,
LM
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Spend the day sharpening your skills in Atlassian Cloud Organization Admin or Jira Administration, then take the exam onsite. Already ready? Take one - or more - of 12 different certification exams while you’re in Anaheim at Team' 25.
Learn more
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.