Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.vijil.ai/llms.txt

Use this file to discover all available pages before exploring further.

These commands surface aggregated trust metrics and the raw observability data (traces, logs, counters) emitted by your Dome-protected Agents.

Trust Dashboard

vijil dashboard show

Display the aggregated Trust Dashboard for the active team. The dashboard shows the latest Trust Scores, evaluation history, and protection status across all Agents.
vijil dashboard show
vijil dashboard show --json

Telemetry

Telemetry commands query the Grafana-backed observability stack. Dome-instrumented Agents emit traces and logs automatically; these commands let you inspect them without leaving the CLI.
CommandDescription
vijil telemetry tracesSearch traces
vijil telemetry trace-getGet a trace by ID
vijil telemetry logsGet logs
vijil telemetry counter-seriesGet a counter metric time series
vijil telemetry metric-totalGet a counter metric total
vijil telemetry latency-metricGet latency percentiles over time

vijil telemetry traces

Search traces emitted by Dome-instrumented Agents.
vijil telemetry traces --time-range 1h
vijil telemetry traces --agent-configuration-id "$AGENT_ID" --limit 50 --json
FlagDescription
--time-rangeWindow to search: 15m, 30m, 1h, 2h, 6h, 1d, 7d, 30d
--agent-configuration-idFilter by Agent ID
--service-nameFilter by root service
--min-duration-msLower bound on trace duration (ms)
--max-duration-msUpper bound on trace duration (ms)
--queryAdvanced TraceQL query
--limitMaximum number of traces
--jsonOutput as JSON

vijil telemetry trace-get

Get a single trace by ID.
vijil telemetry trace-get <trace_id> --json

vijil telemetry logs

Get logs from Dome-instrumented Agents.
vijil telemetry logs --time-range 1h --level error
vijil telemetry logs --evaluation-id "$EVAL_ID" --json
FlagDescription
--time-rangeWindow to pull logs for: 15m, 30m, 1h, 2h, 6h, 1d, 7d, 30d
--agent-configuration-idFilter by Agent ID
--evaluation-idFilter by evaluation ID
--probe-idFilter by Probe ID
--test-idFilter by test ID
--service-nameFilter by service name label
--levelFilter by log level
--searchSubstring search
--logqlAdvanced LogQL expression (overrides generated selector)
--limitMaximum log lines
--directionReturn order (forward or backward)
--jsonOutput as JSON

vijil telemetry counter-series

Get a time series for a counter metric.
vijil telemetry counter-series <metric_name> --time-range 1h --json
FlagDescription
--time-rangeTime range: 15m, 30m, 1h, 2h, 6h, 1d, 7d, 30d
--evaluation-idFilter by evaluation ID
--agent-configuration-idFilter by Agent ID
--jsonOutput as JSON

vijil telemetry metric-total

Get the total value of a counter metric over a time range.
vijil telemetry metric-total <metric_name> --time-range 1d --json
FlagDescription
--time-rangeTime range
--evaluation-idFilter by evaluation ID
--agent-configuration-idFilter by Agent ID
--probe-idFilter by Probe ID
--test-idFilter by test ID
--jsonOutput as JSON

vijil telemetry latency-metric

Get latency percentiles over time for a metric.
vijil telemetry latency-metric <metric_name> \
  --time-range 1h \
  --percentiles "0.5,0.95,0.99" \
  --json
FlagDescription
--time-rangeTime range
--time-windowAggregation window (e.g. 1m, 5m, 15m)
--percentilesComma-separated percentiles (default: 0.5,0.9,0.95,0.99)
--evaluation-idFilter by evaluation ID
--agent-configuration-idFilter by Agent ID
--probe-idFilter by Probe ID
--test-idFilter by test ID
--jsonOutput as JSON
Last modified on May 19, 2026