> ## Documentation Index
> Fetch the complete documentation index at: https://docs.go.gbgplc.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Audit log

> Track user actions and system events in GBG GO with timestamped audit log entries showing who performed what and when.

export const VersionWarningBanner = () => {
  const [latestUrl, setLatestUrl] = useState(null);
  useEffect(() => {
    if (typeof window === "undefined") return;
    const {pathname, hash, search} = window.location;
    if (!pathname.includes("/go-v1/")) return;
    setLatestUrl(`${pathname.replace("/go-v1/", "/go-v2/")}${search}${hash}`);
  }, []);
  if (!latestUrl) return null;
  return <div className="not-prose my-6 rounded-xl border border-amber-500/30 bg-amber-500/10 px-4 py-3 text-sm text-gray-800 dark:text-gray-100">
      ⚠️ You are viewing the <strong>GBG GO v1</strong> documentation.
      <a href={latestUrl} className="ml-2 font-medium underline text-amber-700 dark:text-amber-400 hover:text-amber-800 dark:hover:text-amber-300">
        View the latest version (v2) →
      </a>
    </div>;
};

<VersionWarningBanner />

The GBG GO Audit Log feature provides a comprehensive tracking system that records user actions and system events within the platform.

<Frame>
  <img src="https://mintcdn.com/gbg-loqate/wtQrQDGWEOTCei9M/images/audit-log2.png?fit=max&auto=format&n=wtQrQDGWEOTCei9M&q=85&s=3c64015f014f8447e76e5caa85834eeb" alt="Audit Log2 Pn" width="1537" height="289" data-path="images/audit-log2.png" />
</Frame>

This feature displays timestamped entries that show information, such as:

* **Time** - When the action occurred (timestamp)
* **User** - Who performed the action (user email)
* **Journey name** - Name given to the journey during journey creation
* **Action** - What action was taken
* **Data** - Additional context about the changes (data description)

<Info>
  Click "**Time 🡫**" to change the order of the entries.
</Info>
