원클릭으로
splunk
Splunk log analytics integration for searching logs, discovering indexes, and querying sourcetypes via SPL during RCA investigations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Splunk log analytics integration for searching logs, discovering indexes, and querying sourcetypes via SPL during RCA investigations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
GitHub code repository integration for investigating code changes, deployments, commits, PRs, and suggesting fixes during RCA
CloudBees CI integration for investigating builds, deployments, pipeline stages, and test results during RCA
CloudBees Operations Center integration for cross-controller deployment visibility and feature flag correlation during RCA
Bitbucket code repository integration for managing repos, branches, PRs, issues, and CI/CD pipelines
On-prem Kubernetes cluster integration for running kubectl commands via Aurora agent relay or uploaded kubeconfig
Fly.io integration for application monitoring, machine lifecycle management, metrics, logs, and incident remediation
| name | splunk |
| id | splunk |
| description | Splunk log analytics integration for searching logs, discovering indexes, and querying sourcetypes via SPL during RCA investigations |
| category | observability |
| connection_check | {"method":"is_connected_function","module":"chat.backend.agent.tools.splunk_tool","function":"is_splunk_connected"} |
| tools | ["search_splunk","list_splunk_indexes","list_splunk_sourcetypes"] |
| index | Log analytics -- discover indexes, list sourcetypes, search logs via SPL |
| rca_priority | 3 |
| allowed-tools | search_splunk, list_splunk_indexes, list_splunk_sourcetypes |
| metadata | {"author":"aurora","version":"1.0"} |
Splunk integration for querying log data during Root Cause Analysis. Splunk is a REMOTE service -- do NOT search the local filesystem for Splunk files. Use ONLY the Splunk API tools listed below.
list_splunk_indexes() -- Discover available indexes. Always call first to understand what data is available.list_splunk_sourcetypes(index='X') -- Find log types within a specific index.search_splunk(query='SPL query', earliest_time='-1h') -- Execute SPL queries to search logs.search_splunk(query='index=X error | stats count by host', earliest_time='-1h')search_splunk(query='index=X status>=500 | head 50', earliest_time='-30m')search_splunk(query='index=X | stats count by source', earliest_time='-1h')search_splunk(query='index=X error | timechart count', earliest_time='-6h')| head N to limit results.| stats count by FIELD to aggregate.| timechart to see trends over time.search if it does not start with search or |.max_count defaults to 100 results; increase for broader searches.Step 1 -- Discover data:
list_splunk_indexes() -- find which indexes contain relevant logs.
Step 2 -- Identify log types:
list_splunk_sourcetypes(index='main') -- understand what sourcetypes exist in the target index.
Step 3 -- Search for errors:
search_splunk(query='index=main error OR exception | stats count by host sourcetype', earliest_time='-1h')
Step 4 -- Narrow to specific timeframe:
Use earliest_time and latest_time to focus on the alert window. Example: earliest_time='-30m'.
Step 5 -- Correlate with infrastructure: After Splunk analysis, correlate findings with cloud resources if cloud providers are connected.
list_splunk_indexes to discover available data before searching.| head N or more specific queries to stay within limits.