In the Administration Console, under System Information, there's a section called "Usage Statistics". That table lists a count for "Content (all versions)" and "Content (current versions)".
What is the definition of "content"? I assume it includes pages and blogs. Also attachments? Anything else?
Does anyone know? Thanks in advance!
Hello!
The "content" field means the total number of rows in the CONTENT table in Confluence database - this includes all versions of pages, blogs, status updates, comments, user information, drafts, etc.
The "current content" field, in the other hand, means all of the above except it only counts the latest version of each entitiy.
If you have access to the source code, you can find this information from the com.atlassian.confluence.status.service.systeminfo.UsageInfo class.
Thank you @Azwandi Mohd Aris
In database:
Content (All Versions): select count(*) from CONTENT;
Content (Current Versions): select count(*) from CONTENT where PREVVER is null;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Any idea of how to get a count of all documents (all and current version)?
Thanks,
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.