ワンクリックで
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.