hermes-agent/docs/observability/telemetry.md
emozilla ebee077f9f docs(telemetry): align observability docs with the trimmed schema
Match the docs to the code after the dead-schema cut and span layer:
  - List the actual tel_* tables (runs, spans, model_calls, tool_calls,
    error_events) instead of a vague "indexed tel_* tables".
  - Add a "Traces and spans" section: a run = one session, each call is a child
    span under the run root in tel_spans keyed by span_id, reconstructable as a
    connected run -> calls tree. Note subagent cross-run lineage isn't recorded.
  - Fix stale "tool failure rates by category" -> "by tool" (categories were
    removed; insights groups by raw tool name).
  - OTLP: state plainly that events export as per-event spans and the tel_spans
    parent/timing linkage isn't reconstructed into connected SpanContexts yet,
    matching the exporter's own docstring.
  - README: "telemetry plane" -> "telemetry system" (stale rename miss); mention
    spans.

Config reference verified to match DEFAULT_CONFIG exactly (9 keys).
2026-06-27 01:27:21 -04:00

9.7 KiB

Telemetry & Observability

Hermes ships with a built-in, local-first telemetry system. It records what your agent does — workflows, model calls, tool calls, errors — to your own machine, powers /insights, and (when you enable it) exports everything to your own observability stack. It is private by default and never sends your data to Nous unless you explicitly opt in to anonymous aggregate metrics.

This page explains the whole feature: the three telemetry settings, what's captured, the hermes telemetry commands, and how an enterprise streams or exports all of its data to its own infrastructure.

Looking for the plugin hook contract (how to write your own observer plugin)? That's in README.md. This page is about the built-in telemetry system and its CLI.

The three settings

Telemetry has three settings, isolated from each other:

Setting What it holds Default Destination
local Full-fidelity observability — runs, model/tool calls (real model & provider names), durations, errors on your machine only
aggregate Opt-in metadata to Nous (no uploader ships yet) off (opt-in) Nous, only if you enable it
trajectories Full message content / reasoning / raw tool args off (opt-in) your own export destinations only

Local telemetry is the one you'll use day to day — it records the real values that happened (actual model ids, providers, tool names). Aggregate metrics are the only thing that could ever leave for Nous; they are opt-in, default-off, and have no uploader today. Trajectories unlock full-content export to your own destinations — never wired to Nous.

Local telemetry — always-on observability

Local telemetry is implemented as a bundled telemetry plugin that listens to Hermes lifecycle hooks (model calls, tool calls, session start/finalize) and writes events to:

  • an append-only JSONL log at ~/.hermes/telemetry/events.jsonl (the source of truth)
  • indexed tel_* tables in state.db (a rebuildable index for fast queries): tel_runs, tel_spans, tel_model_calls, tel_tool_calls, tel_error_events

Writes are fire-and-forget on a background thread: telemetry can never block, slow, or fail a model call or tool call. If local telemetry is disabled (telemetry.local: false) the plugin does not load at all.

Traces and spans

A run is one session (from on_session_start to on_session_finalize). Each run gets a root span in tel_spans, and every model and tool call within it is recorded as a child span (timing + parent_span_id = the run's root) keyed by the same span_id as its detail row in tel_model_calls / tel_tool_calls. So a run reconstructs as a connected run -> calls tree, ordered by start_ns and joinable to the per-call detail — the shape a trace viewer or any OpenTelemetry backend can render.

Call spans are timed from the measured latency/duration the hooks report; cross-run subagent lineage (linking a delegated child run to its parent) is not yet recorded.

Seeing your local data

hermes insights            # usage report — now includes an "Observability" section
hermes telemetry status    # settings, consent, export posture, local data volume

The insights Observability section shows workflow counts and success rate, duration p50/p95, tool failure rates by tool, provider/model mix, and cache hit rate — all computed locally with exact values.

hermes telemetry commands

hermes telemetry status      Show settings, consent state, export posture, local volume
hermes telemetry preview     Show the aggregate events that would be produced (local)
hermes telemetry export      Export local telemetry to a file/stream or OTLP endpoint

Consent and the install id are plain config, not separate verbs — set them with hermes config set (or a managed-scope pin):

hermes config set telemetry.consent_state aggregate   # opt in to aggregate metrics
hermes config set telemetry.consent_state local       # opt out (local telemetry stays on)
hermes config set telemetry.install_id ""             # reset the install id (mints a new one)

Aggregate metrics (opt-in)

Aggregate metrics are off by default and have no uploader today — nothing is sent to Nous. Consent lives in telemetry.consent_state (unknown / local / aggregate); setting it to aggregate records the opt-in for if/when an uploader ships. If one is built, it would summarize at that egress boundary.

hermes telemetry preview shows your recent runs as they'd be summarized — computed and shown locally only, with the real model and tool names from your own telemetry. It's a local inspection surface, not an upload.

Enterprise: getting all of your data

Everything below sends data to your own destination — a file, your SIEM, or your own OpenTelemetry Collector. None of it goes to Nous.

Bulk export to a file

# Structural telemetry only (default — no message content)
hermes telemetry export --out telemetry.ndjson

# JSON instead of NDJSON, last 7 days only
hermes telemetry export --out dump.json --format json --since 7

By default the export is structural — runs, model/tool-call metadata, session shells with message counts but no message bodies.

Including content (trajectories)

To export full message content, enable trajectories. This is a deliberate, separate consent — it's how an enterprise opts into exporting work-product content to its own store:

# config.yaml
telemetry:
  trajectories:
    enabled: true          # unlocks content export to YOUR destination
  content_redaction: pii   # "none" | "pii"
hermes telemetry export --out full.ndjson --include-content

--include-content is a no-op unless trajectories are enabled — the config setting governs, not the flag.

Live streaming to your OpenTelemetry Collector / SIEM (OTLP)

Hermes can stream telemetry to your own OTLP endpoint. This requires the optional otlp extra:

pip install 'hermes-agent[otlp]'
# config.yaml
telemetry:
  export:
    otlp:
      enabled: true
      endpoint: "https://collector.your-corp.internal:4318/v1/traces"
      headers_env:                 # secrets by reference — env var NAMES, not values
        Authorization: MY_OTLP_TOKEN_ENVVAR

Set the referenced environment variable, then run the export:

hermes telemetry export --otlp     # drain current telemetry to your collector

The token value lives only in the environment variable named by headers_env. The config holds the name of an environment variable rather than the secret itself; the value is read at export time and is never written to config or logged.

Each telemetry event is exported as an OTel span carrying its recorded attributes (provider, model, tokens, duration, etc.). The tel_spans timing/parent linkage is not yet reconstructed into connected OTel SpanContexts, so spans currently arrive as independent records rather than a connected trace tree; that projection is planned.

Redaction

Two independent controls govern what content looks like on export:

Control Values Effect
Secret redaction always on API keys, tokens, auth headers, connection strings are always stripped on every export path. Cannot be disabled.
content_redaction none | pii When content is exported, pii additionally redacts emails, phone numbers, and id-shaped strings.

Secret redaction is always on — even at full content fidelity — because a SIEM or warehouse full of live credentials is a bigger attack target than the data it holds. It fails closed: if the redactor can't run, the raw string is not emitted.

Configuration reference

telemetry:
  local: true                 # local telemetry (default on)
  allow_aggregate: true       # hard gate; pin false to forbid aggregate metrics entirely
  consent_state: unknown      # aggregate opt-in: unknown | local | aggregate
  install_id: ""              # stable anon id; "" mints one; clear to rotate
  retention_days: 90          # local event-log retention
  redact_secrets: true        # always-on secret redaction (kept on by design)
  content_redaction: none     # none | pii
  trajectories:
    enabled: false            # unlocks full-content export to your destination
  export:
    otlp:
      enabled: false
      endpoint: null
      headers_env: {}          # {HeaderName: ENV_VAR_NAME}

Enterprise policy via managed scope

Any telemetry.* key can be pinned by an administrator through Hermes' managed-scope layer (/etc/hermes/config.yaml), which wins over the user's value on a per-key basis. There is no telemetry-specific policy block — to lock down a fleet, pin the keys you care about. Common examples:

  • telemetry.allow_aggregate: false — aggregate metrics stay off even if consent_state is set to aggregate.
  • telemetry.export.otlp.endpoint — point every install at the corporate collector.
  • telemetry.trajectories.enabled — centrally decide whether content export is allowed.

When a key is managed, attempts to change it are rejected by managed scope with a message naming the source. hermes telemetry status shows the current export posture (endpoint host, whether the auth env var is set, content gate, redaction modes) — it never prints secret values.

Privacy summary

  • Local telemetry never leaves your machine.
  • Aggregate metrics (the only thing that could go to Nous) are opt-in, default-off, and have no uploader today — nothing is sent.
  • All export surfaces (file, OTLP) point at your destinations.
  • Secrets are always redacted on export; content export is off until you enable trajectories; PII redaction is a knob.