393548c6e8
Both backends share session/version/first-run helpers in strix/telemetry/_common.py and fire from the same four call sites in strix/interface/main.py and strix/report/state.py. STRIX_TELEMETRY is the single toggle for both. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
132 lines
3.9 KiB
Python
132 lines
3.9 KiB
Python
import json
|
|
import logging
|
|
import urllib.request
|
|
from datetime import datetime
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
from strix.config import load_settings
|
|
from strix.telemetry._common import (
|
|
SESSION_ID,
|
|
base_props,
|
|
is_first_run,
|
|
)
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
from strix.report.state import ReportState
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
_POSTHOG_PUBLIC_API_KEY = "phc_7rO3XRuNT5sgSKAl6HDIrWdSGh1COzxw0vxVIAR6vVZ"
|
|
_POSTHOG_HOST = "https://us.i.posthog.com"
|
|
|
|
|
|
def _is_enabled() -> bool:
|
|
return load_settings().telemetry.enabled
|
|
|
|
|
|
def _send(event: str, properties: dict[str, Any]) -> None:
|
|
if not _is_enabled():
|
|
logger.debug("posthog disabled; skipping event %s", event)
|
|
return
|
|
try:
|
|
payload = {
|
|
"api_key": _POSTHOG_PUBLIC_API_KEY,
|
|
"event": event,
|
|
"distinct_id": SESSION_ID,
|
|
"properties": properties,
|
|
}
|
|
req = urllib.request.Request( # noqa: S310
|
|
f"{_POSTHOG_HOST}/capture/",
|
|
data=json.dumps(payload).encode(),
|
|
headers={"Content-Type": "application/json"},
|
|
)
|
|
with urllib.request.urlopen(req, timeout=10): # noqa: S310 # nosec B310
|
|
pass
|
|
except Exception: # noqa: BLE001
|
|
# Telemetry must never disrupt a scan; log + swallow.
|
|
logger.debug("posthog send failed for event %s", event, exc_info=True)
|
|
else:
|
|
logger.debug("posthog event sent: %s", event)
|
|
|
|
|
|
def start(
|
|
model: str | None,
|
|
scan_mode: str | None,
|
|
is_whitebox: bool,
|
|
interactive: bool,
|
|
has_instructions: bool,
|
|
) -> None:
|
|
_send(
|
|
"scan_started",
|
|
{
|
|
**base_props(),
|
|
"model": model or "unknown",
|
|
"scan_mode": scan_mode or "unknown",
|
|
"scan_type": "whitebox" if is_whitebox else "blackbox",
|
|
"interactive": interactive,
|
|
"has_instructions": has_instructions,
|
|
"first_run": is_first_run(),
|
|
},
|
|
)
|
|
|
|
|
|
def finding(severity: str) -> None:
|
|
_send(
|
|
"finding_reported",
|
|
{
|
|
**base_props(),
|
|
"severity": severity.lower(),
|
|
},
|
|
)
|
|
|
|
|
|
def end(report_state: "ReportState", exit_reason: str = "completed") -> None:
|
|
vulnerabilities_counts = {"critical": 0, "high": 0, "medium": 0, "low": 0, "info": 0}
|
|
for v in report_state.vulnerability_reports:
|
|
sev = v.get("severity", "info").lower()
|
|
if sev in vulnerabilities_counts:
|
|
vulnerabilities_counts[sev] += 1
|
|
|
|
duration = 0.0
|
|
try:
|
|
start = datetime.fromisoformat(report_state.start_time.replace("Z", "+00:00"))
|
|
end_iso = report_state.end_time or datetime.now(start.tzinfo).isoformat()
|
|
duration = (datetime.fromisoformat(end_iso.replace("Z", "+00:00")) - start).total_seconds()
|
|
except (ValueError, TypeError, AttributeError):
|
|
pass
|
|
|
|
llm_props: dict[str, int | float] = {}
|
|
try:
|
|
usage = report_state.get_total_llm_usage()
|
|
if isinstance(usage, dict):
|
|
llm_props = {
|
|
"llm_requests": int(usage.get("requests") or 0),
|
|
"llm_input_tokens": int(usage.get("input_tokens") or 0),
|
|
"llm_output_tokens": int(usage.get("output_tokens") or 0),
|
|
"llm_tokens": int(usage.get("total_tokens") or 0),
|
|
"llm_cost": float(usage.get("cost") or 0.0),
|
|
}
|
|
except (TypeError, ValueError, AttributeError):
|
|
pass
|
|
|
|
_send(
|
|
"scan_ended",
|
|
{
|
|
**base_props(),
|
|
"exit_reason": exit_reason,
|
|
"duration_seconds": round(duration),
|
|
"vulnerabilities_total": len(report_state.vulnerability_reports),
|
|
**{f"vulnerabilities_{k}": v for k, v in vulnerabilities_counts.items()},
|
|
**llm_props,
|
|
},
|
|
)
|
|
|
|
|
|
def error(error_type: str, error_msg: str | None = None) -> None:
|
|
props = {**base_props(), "error_type": error_type}
|
|
if error_msg:
|
|
props["error_msg"] = error_msg
|
|
_send("error", props)
|