> ## Documentation Index
> Fetch the complete documentation index at: https://docs-staging-quickstart-revamp.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Learn how to identify and monitor passkey events in your tenant logs.

# Monitor Passkey Events in Tenant Logs

You can monitor passkey flows associated with your database connections through [tenant logs](/docs/deploy-monitor/logs).

You can view log events in the <Tooltip tip="Auth0 Dashboard: Auth0's main product to configure your services." cta="View Glossary" href="/docs/glossary?term=Auth0+Dashboard">Auth0 Dashboard</Tooltip> ([Monitoring > Logs](https://manage.auth0.com/#/logs)) or retrieve logs using the [Management API](https://auth0.com/docs/api/management/v2/logs/get-logs).

<table class="table">
  <thead>
    <tr>
      <th><strong>Event code</strong></th>
      <th><strong>Scenario</strong></th>
      <th><strong>Notes</strong></th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td><code>ss</code></td>
      <td>During signup, a user registered a passkey as their primary authentication method.</td>
      <td>This log event contains the <code>details.authentication\_methods</code> array field with the entry value <code>passkey</code>.<br /><br />If a user registered with a password, this array field contains the entry value <code>pwd</code>.</td>
    </tr>

    <tr>
      <td><code>s</code></td>
      <td>During login, a user authenticated with a passkey.</td>
      <td>This log event contains the <code>details.prompts</code> array which lists the set of prompts a user navigated through during login.<br /><br />If a user authenticated using a passkey, the array contains an element with the following field: <code>"performed\_amr": \["phr"]</code>.</td>
    </tr>

    <tr>
      <td><code>gd\_enrollment\_complete</code></td>
      <td>A progressive or local enrollment flow was successfully completed.</td>
      <td>This log event contains the <code>details.authenticator.type</code> field with the value <code>passkey</code> if a user enrolled a passkey.</td>
    </tr>

    <tr>
      <td><code>gd\_webauthn\_enrollment\_failed</code></td>
      <td>An error occurred during a progressive or local enrollment flow.</td>
      <td>This log event contains the <code>details.authentication\_methods array</code> field with the entry value <code>passkey</code> if a user tried to enroll a passkey.</td>
    </tr>
  </tbody>
</table>
