4b6817381b
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled
146 lines
4.7 KiB
Python
146 lines
4.7 KiB
Python
# ======== from tools/splunk_search_tool/ ========
|
|
|
|
"""Splunk log search tool for RCA investigation."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from core.tool_framework.base import BaseTool
|
|
from integrations.splunk._client import make_client, unavailable
|
|
from platform.common.evidence_compaction import compact_logs, summarize_counts
|
|
|
|
_ERROR_KEYWORDS = (
|
|
"error",
|
|
"fail",
|
|
"exception",
|
|
"traceback",
|
|
"critical",
|
|
"killed",
|
|
"crash",
|
|
"panic",
|
|
"timeout",
|
|
)
|
|
|
|
|
|
class SplunkSearchTool(BaseTool):
|
|
"""Search Splunk logs using SPL for errors, exceptions, and application events."""
|
|
|
|
name = "query_splunk_logs"
|
|
source = "splunk"
|
|
description = (
|
|
"Search Splunk using SPL (Search Processing Language) for application errors, "
|
|
"exceptions, and operational events. Returns time-bounded log evidence."
|
|
)
|
|
use_cases = [
|
|
"Investigating application errors stored in Splunk",
|
|
"Searching Splunk indexes for error patterns during incident window",
|
|
"Fetching recent error logs for a service identified in an alert",
|
|
"Correlating trace IDs with Splunk log entries",
|
|
]
|
|
surfaces = ("investigation", "chat")
|
|
requires = [] # connection_verified check is in is_available()
|
|
outputs = {
|
|
"splunk_logs": "All log events returned from Splunk search",
|
|
"splunk_error_logs": "Subset of logs matching error/exception keywords",
|
|
}
|
|
input_schema = {
|
|
"type": "object",
|
|
"properties": {
|
|
"query": {
|
|
"type": "string",
|
|
"description": (
|
|
"SPL search string (e.g. 'index=main error | head 50'). "
|
|
"Do not include the leading 'search' keyword."
|
|
),
|
|
},
|
|
"time_range_minutes": {
|
|
"type": "integer",
|
|
"default": 60,
|
|
"description": "Look-back window in minutes from now.",
|
|
},
|
|
"limit": {
|
|
"type": "integer",
|
|
"default": 50,
|
|
"description": "Maximum number of events to return.",
|
|
},
|
|
"index": {
|
|
"type": "string",
|
|
"description": "Splunk index to search (overrides integration default).",
|
|
},
|
|
},
|
|
"required": ["query"],
|
|
}
|
|
|
|
def is_available(self, sources: dict) -> bool:
|
|
return bool(sources.get("splunk", {}).get("connection_verified"))
|
|
|
|
def extract_params(self, sources: dict) -> dict:
|
|
splunk = sources.get("splunk", {})
|
|
return {
|
|
"query": splunk.get("default_query", f"index={splunk.get('index', 'main')} | head 50"),
|
|
"time_range_minutes": splunk.get("time_range_minutes", 60),
|
|
"limit": 50,
|
|
"index": splunk.get("index", "main"),
|
|
"base_url": splunk.get("base_url"),
|
|
"token": splunk.get("token"),
|
|
"verify_ssl": splunk.get("verify_ssl", True),
|
|
"ca_bundle": splunk.get("ca_bundle", ""),
|
|
}
|
|
|
|
def run(
|
|
self,
|
|
query: str,
|
|
time_range_minutes: int = 60,
|
|
limit: int = 50,
|
|
index: str = "main",
|
|
base_url: str | None = None,
|
|
token: str | None = None,
|
|
verify_ssl: bool = True,
|
|
ca_bundle: str = "",
|
|
**_kwargs: Any,
|
|
) -> dict:
|
|
client = make_client(base_url, token, index, verify_ssl, ca_bundle)
|
|
if client is None:
|
|
return unavailable(
|
|
"splunk_logs",
|
|
"logs",
|
|
"Splunk integration not configured (missing base_url or token)",
|
|
)
|
|
|
|
result = client.search_logs(
|
|
query=query,
|
|
time_range_minutes=time_range_minutes,
|
|
limit=limit,
|
|
)
|
|
|
|
if not result.get("success"):
|
|
return unavailable("splunk_logs", "logs", result.get("error", "Unknown error"))
|
|
|
|
logs = result.get("logs", [])
|
|
error_logs = [
|
|
log
|
|
for log in logs
|
|
if any(kw in log.get("message", "").lower() for kw in _ERROR_KEYWORDS)
|
|
]
|
|
|
|
compacted_logs = compact_logs(logs, limit=limit)
|
|
compacted_error_logs = compact_logs(error_logs, limit=limit)
|
|
|
|
result_data: dict[str, Any] = {
|
|
"source": "splunk_logs",
|
|
"available": True,
|
|
"logs": compacted_logs,
|
|
"error_logs": compacted_error_logs,
|
|
"total": result.get("total", 0),
|
|
"query": query,
|
|
}
|
|
summary = summarize_counts(result.get("total", 0), len(compacted_logs), "logs")
|
|
if summary:
|
|
result_data["truncation_note"] = summary
|
|
return result_data
|
|
|
|
|
|
# Module-level alias for direct invocation
|
|
query_splunk_logs = SplunkSearchTool()
|