Skip to content

Audit Trail

The Audit Trail is the immutable, hash-chained log of every governance decision made by TheWARDN. It provides a tamper-evident, complete record of all governed actions.

Overview

Every action that passes through the governance pipeline -- whether cleared, held, or blocked -- is recorded in the audit trail. Each record is linked to the previous record via a cryptographic hash chain, making it impossible to alter or remove entries without detection.

Browsing the Audit Log

The audit trail displays a chronological list of all governed actions. Each entry shows:

  • Timestamp
  • Agent name
  • Action type
  • Verdict (CLEARED / HELD / BLOCKED)
  • Tier assignment

Filtering

Use the filter controls to narrow the audit trail:

FilterOptions
Date RangeStart and end date/time
AgentSelect a specific registered agent
VerdictCLEARED, HELD, or BLOCKED
TierA (autonomous), B (supervised), C (controlled), X (prohibited)

Full Record Detail

Click any audit entry to view the complete governance record:

FieldDescription
seqSequence number -- monotonically increasing identifier
hashSHA-256 hash of the current record
prev_hashSHA-256 hash of the preceding record (forms the hash chain)
verdictThe governance decision: CLEARED, HELD, or BLOCKED
tierThe governance tier assigned to the action
action_typeWhat the agent attempted to do
target_serviceThe downstream service the action targets
confidenceThe confidence score submitted with the action
policies_firedList of CHAM policies that evaluated and triggered
reasoningHuman-readable explanation of the governance decision

Hash Chain Verification

The audit trail uses a SHA-256 hash chain to guarantee integrity. Each record's hash is computed from the record's contents combined with the prev_hash of the preceding record. This creates an unbroken chain from the first record to the most recent.

How Verification Works

  1. Start from any record in the chain
  2. Recompute the hash from the record's contents and its prev_hash
  3. Compare the computed hash against the stored hash
  4. If they match, the record has not been tampered with
  5. Repeat for each record in the chain

The console provides a Verify Chain button that runs this verification automatically and reports any integrity violations.

TIP

Run hash chain verification periodically, especially before compliance audits. A passing verification confirms that no audit records have been altered since creation.

WARNING

The hash chain is append-only. Records cannot be edited or deleted. This is by design -- an immutable audit trail is a requirement for regulatory compliance frameworks including SOC 2, HIPAA, and the EU AI Act.

Exporting

Export the audit trail in two formats:

  • PDF -- Formatted report suitable for compliance submissions and executive review
  • CSV -- Raw data export for analysis in spreadsheets or data tools

Exports respect active filters, so you can generate targeted reports (e.g., all BLOCKED actions for a specific agent in the last 30 days).

  • Live Monitor -- Real-time view of governance events as they happen
  • Violation Log -- Violations reference audit trail records
  • Reports -- Generate formatted reports from audit data
  • Governance Replay -- Replay historical decisions against current policies

AI Governance for Every Organization