How do I pull up a list of all blogs on my Confluence instance?

Jim November 26, 2013

We have approximately 80 spaces in our Confluence instance, many of which have blogs associated with them. Some of those blogs have never had any blogposts published on them.

How do I pull a list of all the blogs (not blogposts) that exist in my Confluence? The list under Organize Spaces & Categories is not complete (it has to be updated manually).

1 answer

1 vote
Davin Studer
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 26, 2013

If you have access to running a SQL query this should get you what you want.

select S.SPACENAME
from dbo.CONTENT C
inner join SPACES S on C.SPACEID = S.SPACEID
where C.CONTENTTYPE = 'BLOGPOST' and C.SPACEID is not null
group by S.SPACENAME

Noumenon72 December 29, 2019

For people Googling how to see all blog posts, not all blogs -- Search has a filter for "Type: Blog Post".

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events