Skip to main content

Python SDK for sending LLM traces, generations, and observations to the Darkhunt platform for persistence and security data enrichment. Built on OpenTelemetry primitives, with built-in client-side data masking.

Project description

Darkhunt telemetry for Python

PyPI version Supported Python versions CI Quality Gate Status Reliability Rating Security Rating Ruff Checked with mypy License

Python SDK for sending LLM traces, generations, and observations to the Darkhunt platform for persistence and security data enrichment. Built on OpenTelemetry primitives (TracerProvider, BatchSpanProcessor, OTLP/protobuf), with built-in client-side data masking that redacts 66 secret/PII patterns before anything leaves your process.

This is the Python analog of @darkhunt-security/telemetry (the TypeScript SDK) — same wire contract, same routing semantics, same masking ruleset, adapted to Python idioms (keyword arguments, with context managers).

  • DarkhuntTelemetry — the client. One per process.
  • Trace — a single user-facing interaction. Carries routing fields.
  • Generation — one LLM round-trip under a trace (model, messages, usage, cost).
  • Span — anything else (tool calls, retrievals, guardrails, sub-agents).

Requires Python 3.9+.

Let Claude Code wire it up for you. Install the plugin:

/plugin marketplace add darkhunt-security/darkhunt-telemetry-python
/plugin install darkhunt-telemetry-py@darkhunt-py

Then tell Claude "add Darkhunt telemetry to this service" and the darkhunt-telemetry-python-integration skill auto-invokes and does the steps below for you.


Get started

1. Install

pip install darkhunt-telemetry
# optional Temporal handoff interceptors:
pip install "darkhunt-telemetry[temporal]"

2. Create a singleton client

Construct one client for the lifetime of the process — it spins up a TracerProvider + batch processor, so a per-request client leaks resources.

from darkhunt_telemetry import DarkhuntTelemetry

# api_key is read from DARKHUNT_API_KEY if omitted.
dh = DarkhuntTelemetry(
    tenant_id="t1",
    workspace_id="ws-1",
    application_id="app-1",
    service_name="my-service",          # OTel service.name — one per process/agent
)

In-cluster service-to-service callers post to the permitAll /internal/... path and need no key:

dh = DarkhuntTelemetry(internal=True, tenant_id="t1", workspace_id="ws-1", application_id="app-1")

3. Wrap your LLM calls

The ergonomic form — start_active_generation times the span automatically and makes it the active OTel span (so provider auto-instrumentation nests under it):

trace = dh.trace("chat", session_id=session_id, user_id=user_id)

with trace.start_active_generation("answer", model="claude-sonnet-5") as gen:
    gen.update(input_messages=[{"role": "user", "content": prompt}])
    reply = call_llm(prompt)                       # span is ACTIVE here — timing is real
    gen.end(
        model="claude-sonnet-5",
        output_messages=[{"role": "assistant", "content": reply.text}],
        usage={"input_tokens": reply.input_tokens, "output_tokens": reply.output_tokens},
    )

trace.end()

The manual form still exists for streaming or when you hold a span open across calls. If you open the generation after the work started, backdate it with start_time (epoch seconds, e.g. time.time() captured before the call):

import time
start = time.time()
reply = call_llm(prompt)                           # work happens first
gen = trace.generation("answer", model="claude-sonnet-5", start_time=start)
gen.update(input_messages=[{"role": "user", "content": prompt}])
gen.end(output_messages=[{"role": "assistant", "content": reply.text}], usage=...)

update() is for fields known at start; end() for fields known at finish.

4. Drain the buffer on shutdown

Spans batch in the background. The SDK flushes at process exit (via atexit), but signal-driven shutdown must be wired explicitly:

import signal

def _shutdown(*_):
    dh.shutdown()

signal.signal(signal.SIGTERM, _shutdown)
signal.signal(signal.SIGINT, _shutdown)

For one-shot scripts, dh.flush() before returning is enough.

5. Verify it worked

A clean flush() is not proof of ingestion — the batch processor swallows export errors. Probe the exact ingest endpoint the exporter uses (a 400 on an empty body = auth + routing OK; 401 = wrong/absent key; 404 = missing /trace-hub in the base URL):

curl -s -o /dev/null -w '%{http_code}\n' -X POST \
  -H "Authorization: Bearer $DARKHUNT_API_KEY" \
  -H 'Content-Type: application/x-protobuf' \
  -H "X-Workspace-Id: $DARKHUNT_WORKSPACE_ID" \
  -H "X-Application-Id: $DARKHUNT_APPLICATION_ID" \
  --data-binary '' \
  "$DARKHUNT_BASE_URL/otlp/t/$DARKHUNT_TENANT_ID/v1/traces"

Then open the Darkhunt dashboard and confirm the trace, its generation bubbles, routing attributes, and token/cost.

Span types

Work API
LLM round-trip trace.generation(name, model=...)
External tool / function call trace.span(name, observation_type="tool", tool_name=...)
Vector search / retrieval trace.span(name, observation_type="retriever")
Sub-agent step trace.span(name, observation_type="agent")
Input/output guardrail trace.span(name, observation_type="guardrail")
Embedding trace.span(name, observation_type="embedding")
Generic work trace.span(name) (default "span")
Fire-and-forget marker trace.event(name)

Spans nest naturally — parent.span(...) / parent.generation(...) makes the child a child in the trace tree. Every factory also has an active-context variant: start_active_span(...) / start_active_generation(...).

session_id and user_id — set them every time

Routing fields are required; session_id and user_id are technically optional but every integration should set them. They unlock conversation visualization (traces sharing a session_id group into one timeline) and per-user guardrails / anomaly detection. Set them late with trace.update(user_id=..., session_id=...) if not known at open — all spans created after inherit the values.

Configuration

Every option resolves constructor arg > env var > default.

Option (DarkhuntTelemetry(...)) Env var Default
base_url DARKHUNT_BASE_URL https://api.darkhunt.ai/trace-hub
api_key DARKHUNT_API_KEY — (required on the public endpoint)
service_name DARKHUNT_SERVICE_NAME / OTEL_SERVICE_NAME darkhunt-telemetry
tenant_id DARKHUNT_TENANT_ID — (required)
workspace_id DARKHUNT_WORKSPACE_ID — (required)
application_id DARKHUNT_APPLICATION_ID — (required)
assessment_run_id DARKHUNT_ASSESSMENT_RUN_ID — (optional, Darkhunt-internal)
release DARKHUNT_RELEASE
environment DARKHUNT_ENVIRONMENT
enabled DARKHUNT_ENABLED true
internal DARKHUNT_INTERNAL false
flush_at DARKHUNT_FLUSH_AT 20 spans
flush_interval_ms DARKHUNT_FLUSH_INTERVAL (seconds) 5 s
timeout_ms DARKHUNT_TIMEOUT (seconds) 10 s
register_context_manager DARKHUNT_REGISTER_CONTEXT_MANAGER true
mask MaskingOptions(enabled=True)

Two rules when overriding base_url: use the ingest API host (api…darkhunt.ai), not the dashboard, and keep the /trace-hub path — the exporter posts to {base_url}/otlp/t/{tenant_id}/v1/traces.

Routing fields can be set once on the client (constant per process) or per-trace (multi-tenant): dh.trace(name, tenant_id=req.tenant_id, ...). dh.trace() raises ValueError if tenant/workspace/application is missing after merging.

Note on register_context_manager. Unlike the Node SDK, Python's OpenTelemetry context is contextvars-based and always active, so span nesting works with nothing to register. This option is kept for parity and only ensures a global W3C propagator exists for traceparent inject/extract.

Data masking (default-on)

By default the SDK redacts 66 secret/PII patterns (API keys, tokens, emails, IBANs, credit cards — Luhn/IIN-validated — SSNs, crypto addresses, and more) from all inputs, outputs, messages, system prompts, metadata values, tool arguments, and status messages before they leave the process. Same ruleset (rules.json) as the TypeScript SDK.

Routing identifiers (session_id, user_id, user_email) are not masked — they round-trip verbatim so the dashboard can group and filter by exact match. Hash any PII-bearing identifier caller-side before passing it.

Add site-specific patterns, or disable masking for local dev with synthetic data:

from darkhunt_telemetry import DarkhuntTelemetry, MaskingOptions
from darkhunt_telemetry.masking import CustomPattern

dh = DarkhuntTelemetry(
    tenant_id="t", workspace_id="w", application_id="a",
    mask=MaskingOptions(
        enabled=True,
        custom_patterns=[CustomPattern(regex=r"TICKET-\d+", marker="[TICKET]")],
    ),
)

Multi-agent topology (agent handoffs)

When your service is one agent in a multi-agent system, Darkhunt reconstructs the agent topology — who handed off to whom — from the cross-service span tree. The safest, lowest-friction way to draw the edges is to nest each agent's trace under its caller by passing the caller's handoff token:

# Upstream agent: expose its entry-span token after doing its work.
trace = dh.trace("research-agent", session_id=sid, user_id=uid)
token = trace.handoff_token()          # opaque W3C traceparent string
# ... work ...
trace.end()

# Downstream agent: nest under the upstream (parent = handoff_from[0]).
trace = dh.trace("analyst-agent", handoff_from=[token], session_id=sid, user_id=uid)

handoff_from[0] becomes the parent edge (the topology arrow) and an agent_handoff link; further entries are supplementary links (fan-in). Give each agent its own service_name — that string is the topology node.

Carry the token across a transport in its metadata channel, never the business payload (dependency-free helpers included):

from darkhunt_telemetry.transports import (
    handoff_to_http_headers, handoff_from_http_headers,   # HTTP: W3C traceparent header
    handoff_to_message_meta, handoffs_from_messages,      # Queue: out-of-band message metadata
)

# HTTP producer / consumer
requests.post(url, headers=handoff_to_http_headers(trace.handoff_token(), base_headers))
token = handoff_from_http_headers(request.headers)        # -> dh.trace(handoff_from=[token])

# Queue fan-in
tokens = handoffs_from_messages([m1.headers, m2.headers]) # -> dh.trace(handoff_from=tokens)

Temporal (optional extra): register one interceptor on the worker; each activity reads its upstream via current_handoff().

from temporalio.worker import Worker
from darkhunt_telemetry.temporal import HandoffInterceptor, current_handoff, child_args

worker = Worker(client, task_queue="q", workflows=[...], activities=[...],
                interceptors=[HandoffInterceptor()])

# inside an activity:
trace = dh.trace("recon-agent", handoff_from=current_handoff() or [], session_id=task_id)

The token rides a Temporal Header (out of the business args). A coordinator authors a per-edge override with child_args(input_dict, [upstream_token]); the interceptor relocates it to the header and strips it before the child sees it. Never instrument workflow code (deterministic sandbox) — telemetry lives in activities.

Why the topology may show separate nodes (and that's correct)

Darkhunt draws edges from the cross-service parentSpanId chain. Services that are independent processes with no live agent→agent handoff — a repo of standalone scripts, or a producer/consumer pair coupled only through a datastore or batch boundary (classic RAG ingestanswer) — have no such chain, so they render as separate, unconnected nodes. That's the honest picture, not a misconfiguration. Connecting them is an architecture change (carry a handoff_token() across the boundary), not a telemetry setting.

Development

Uses uv for a fast, reproducible dev environment (pinned by uv.lock); the build backend is hatchling.

uv sync --all-extras          # create .venv from the lockfile (dev + temporal + crypto)
uv run pytest                 # tests
uv run ruff check . && uv run ruff format --check .
uv run mypy
uv run bandit -c pyproject.toml -r darkhunt_telemetry
uv build                      # sdist + wheel

Plain pip works too, if you'd rather not use uv:

python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev,temporal]"
pytest

License

Apache-2.0. See LICENSE and NOTICE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

darkhunt_telemetry-0.5.31.tar.gz (167.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

darkhunt_telemetry-0.5.31-py3-none-any.whl (63.6 kB view details)

Uploaded Python 3

File details

Details for the file darkhunt_telemetry-0.5.31.tar.gz.

File metadata

  • Download URL: darkhunt_telemetry-0.5.31.tar.gz
  • Upload date:
  • Size: 167.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for darkhunt_telemetry-0.5.31.tar.gz
Algorithm Hash digest
SHA256 7a1a6c9c4f42b5f674e10a03cb602b45e403dffd1c5b34791ec6fb42175102be
MD5 58f06221066f841253747a8bb342af8a
BLAKE2b-256 233da70be2809aeb37c24ed0646bf10166382da79d2d1b9ceabdd7be1c6ccd4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for darkhunt_telemetry-0.5.31.tar.gz:

Publisher: ci.yml on darkhunt-security/darkhunt-telemetry-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file darkhunt_telemetry-0.5.31-py3-none-any.whl.

File metadata

File hashes

Hashes for darkhunt_telemetry-0.5.31-py3-none-any.whl
Algorithm Hash digest
SHA256 ae6a97069f04dd33724f3765ae6c935bf468306f880e2dfbbfee6d74c6614255
MD5 82ffb9c5c1f2263c0f0a53bfd5eaed1d
BLAKE2b-256 351a850372f463cc7cb19b5db2f0ecb504f986fdcc6898754c858bef1ee93ed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for darkhunt_telemetry-0.5.31-py3-none-any.whl:

Publisher: ci.yml on darkhunt-security/darkhunt-telemetry-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page