Confluence integration for searching runbooks, past incidents, postmortems, and operational procedures during RCA
Confluence integration for searching runbooks, past incidents, and operational procedures during Root Cause Analysis. Confluence is a mandatory first step in any RCA investigation -- search here BEFORE infrastructure or CI/CD tools.
A runbook may give you the exact diagnostic steps. A past postmortem may reveal this is a recurring issue with a known fix.
You MUST call Confluence tools BEFORE any infrastructure or CI/CD investigation. Search Confluence for runbooks and prior postmortems BEFORE deep-diving into infrastructure.
confluence_search_similar(keywords=['error keywords'], service_name='SERVICE') -- Search Confluence for pages related to an incident (postmortems, RCA docs). Pass keywords, optional and . Returns matching pages with excerpts.service_nameerror_messageconfluence_search_runbooks(service_name='SERVICE') -- Search Confluence for runbooks / playbooks / SOPs for a given service. Pass service_name and optional operation (e.g. 'restart', 'failover').confluence_fetch_page(page_id='12345') -- Fetch a Confluence page by ID and return its content as markdown. Use after search to read full page details.confluence_runbook_parse(page_url='https://...') -- Fetch and parse a Confluence runbook into markdown and steps for LLM use.confluence_search_similar(keywords=['error keywords'], service_name='SERVICE') -- Find postmortems / past incidents
confluence_search_runbooks(service_name='SERVICE') -- Find runbooks / SOPs / playbooks
confluence_fetch_page(page_id='ID') -- Read full page content as markdown
confluence_runbook_parse(page_url='URL') -- Parse a runbook into structured steps
Search first, then fetch promising pages for detailed procedures. Cross-reference Confluence findings with live infrastructure state.
Search Confluence BEFORE deep-diving into infrastructure:
confluence_search_similar(keywords=['error keywords'], service_name='{service_name}') -- Past incidentsconfluence_search_runbooks(service_name='{service_name}') -- Runbooks/SOPsconfluence_fetch_page(page_id='ID') -- Full page contentA runbook may give exact diagnostic steps. A past postmortem may reveal a recurring issue.