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
207 lines
6.6 KiB
Python
207 lines
6.6 KiB
Python
"""VictoriaLogs HTTP API client.
|
|
|
|
Wraps the LogsQL query endpoint used for log-evidence enrichment during
|
|
investigations. Credentials come from the user's VictoriaLogs integration
|
|
stored locally or via env vars (``VICTORIA_LOGS_URL``).
|
|
|
|
Auth: VictoriaLogs is typically deployed without auth on internal networks.
|
|
For multi-tenant deployments the ``AccountID`` header is sent only when
|
|
``tenant_id`` is explicitly configured — we never send ``AccountID: 0``
|
|
implicitly, since that targets the default tenant on every request.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
import logging
|
|
from typing import Any
|
|
|
|
import httpx
|
|
from pydantic import field_validator
|
|
|
|
from config.strict_config import StrictConfigModel
|
|
from integrations.probes import ProbeResult
|
|
from platform.observability.errors.service import capture_service_error
|
|
from platform.observability.streaming import StreamingParseStats
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
_DEFAULT_TIMEOUT = 30
|
|
_QUERY_PATH = "/select/logsql/query"
|
|
|
|
|
|
class VictoriaLogsConfig(StrictConfigModel):
|
|
"""Normalized VictoriaLogs connection settings."""
|
|
|
|
base_url: str
|
|
tenant_id: str | None = None
|
|
integration_id: str = ""
|
|
|
|
@field_validator("base_url", mode="before")
|
|
@classmethod
|
|
def _normalize_base_url(cls, value: object) -> str:
|
|
return str(value or "").strip().rstrip("/")
|
|
|
|
@field_validator("tenant_id", mode="before")
|
|
@classmethod
|
|
def _normalize_tenant_id(cls, value: object) -> str | None:
|
|
if value is None:
|
|
return None
|
|
text = str(value).strip()
|
|
return text or None
|
|
|
|
@property
|
|
def headers(self) -> dict[str, str]:
|
|
headers: dict[str, str] = {"Accept": "application/stream+json"}
|
|
if self.tenant_id:
|
|
headers["AccountID"] = self.tenant_id
|
|
return headers
|
|
|
|
|
|
class VictoriaLogsClient:
|
|
"""Synchronous client for querying the VictoriaLogs LogsQL API."""
|
|
|
|
def __init__(self, config: VictoriaLogsConfig) -> None:
|
|
self.config = config
|
|
self._client: httpx.Client | None = None
|
|
|
|
def _get_client(self) -> httpx.Client:
|
|
if self._client is None:
|
|
self._client = httpx.Client(
|
|
base_url=self.config.base_url,
|
|
headers=self.config.headers,
|
|
timeout=_DEFAULT_TIMEOUT,
|
|
)
|
|
return self._client
|
|
|
|
@property
|
|
def is_configured(self) -> bool:
|
|
return bool(self.config.base_url)
|
|
|
|
def close(self) -> None:
|
|
if self._client is not None:
|
|
self._client.close()
|
|
self._client = None
|
|
|
|
def __enter__(self) -> VictoriaLogsClient:
|
|
return self
|
|
|
|
def __exit__(self, *_: object) -> None:
|
|
self.close()
|
|
|
|
def probe_access(self) -> ProbeResult:
|
|
"""Validate connectivity by running a trivial wildcard query.
|
|
|
|
VictoriaLogs has no dedicated ``/health`` endpoint, so the lightest
|
|
valid probe is a wildcard query with ``limit=1`` — it confirms the
|
|
endpoint exists, accepts LogsQL, and the auth/tenant headers (if any)
|
|
work, all in one round trip.
|
|
"""
|
|
if not self.is_configured:
|
|
return ProbeResult.missing("Missing base_url.")
|
|
|
|
result = self.query_logs("*", limit=1)
|
|
if not result.get("success"):
|
|
return ProbeResult.failed(
|
|
f"Query probe failed: {result.get('error', 'unknown error')}",
|
|
)
|
|
return ProbeResult.passed(
|
|
f"Connected to VictoriaLogs at {self.config.base_url}.",
|
|
)
|
|
|
|
def query_logs(
|
|
self,
|
|
query: str,
|
|
limit: int = 50,
|
|
start: str = "-1h",
|
|
) -> dict[str, Any]:
|
|
"""Run a LogsQL query and return parsed log entries.
|
|
|
|
Args:
|
|
query: LogsQL query string (e.g. ``_stream_id:* AND error``).
|
|
limit: Maximum number of log entries to return.
|
|
start: Time range expression accepted by VictoriaLogs (e.g. ``-1h``).
|
|
"""
|
|
if not self.config.base_url:
|
|
return {
|
|
"success": False,
|
|
"error": "VictoriaLogs base_url is not configured.",
|
|
}
|
|
|
|
params: dict[str, Any] = {
|
|
"query": query,
|
|
"limit": limit,
|
|
"start": start,
|
|
}
|
|
|
|
try:
|
|
resp = self._get_client().get(_QUERY_PATH, params=params)
|
|
resp.raise_for_status()
|
|
rows = _parse_ndjson(resp.text, limit=limit)
|
|
return {"success": True, "rows": rows, "total": len(rows)}
|
|
except httpx.HTTPStatusError as exc:
|
|
capture_service_error(
|
|
exc,
|
|
logger=logger,
|
|
integration="victoria_logs",
|
|
method="query_logs",
|
|
extras={"query": query},
|
|
)
|
|
return {
|
|
"success": False,
|
|
"error": f"HTTP {exc.response.status_code}: {exc.response.text[:200]}",
|
|
}
|
|
except Exception as exc:
|
|
capture_service_error(
|
|
exc,
|
|
logger=logger,
|
|
integration="victoria_logs",
|
|
method="query_logs",
|
|
extras={"query": query},
|
|
)
|
|
return {"success": False, "error": str(exc)}
|
|
|
|
|
|
def _parse_ndjson(text: str, *, limit: int) -> list[dict[str, Any]]:
|
|
"""Parse VictoriaLogs newline-delimited JSON into a list of dicts.
|
|
|
|
A trickle of broken lines is expected (vendor flake, trailing newline).
|
|
The ``StreamingParseStats`` pass reports to Sentry only when the skip
|
|
ratio crosses the threshold, so we still surface real schema/content-type
|
|
drift without one event per dropped line.
|
|
"""
|
|
rows: list[dict[str, Any]] = []
|
|
stats = StreamingParseStats()
|
|
for line in text.splitlines():
|
|
stripped = line.strip()
|
|
if not stripped:
|
|
continue
|
|
try:
|
|
obj = json.loads(stripped)
|
|
except json.JSONDecodeError as exc:
|
|
stats.record_error(exc)
|
|
continue
|
|
stats.record_parsed()
|
|
if isinstance(obj, dict):
|
|
rows.append(obj)
|
|
if len(rows) >= limit:
|
|
break
|
|
stats.report_if_unhealthy(
|
|
logger=logger, integration="victoria_logs", source="select/logsql/query"
|
|
)
|
|
return rows
|
|
|
|
|
|
def make_victoria_logs_client(
|
|
base_url: str | None,
|
|
tenant_id: str | None = None,
|
|
) -> VictoriaLogsClient | None:
|
|
"""Create a ``VictoriaLogsClient`` if a valid base_url is provided."""
|
|
url = (base_url or "").strip().rstrip("/")
|
|
if not url:
|
|
return None
|
|
try:
|
|
return VictoriaLogsClient(VictoriaLogsConfig(base_url=url, tenant_id=tenant_id))
|
|
except Exception:
|
|
return None
|