elapsedTime, initiatedAt, and completedAt log metrics

Problem statement

We have a few questions about the time attributes in the log.

  • How much time does a user spend waiting for Universal Login to load and execute (excluding user-related delays like the time a user takes to input his email and password, etc.)?
  • Where is that time consumed exactly? Auth0 rules? Redirects? anything else?
  • What is the value elapsedTime a measurement of?
  • Does the value represent the time our system processes/loads/etc? Or does it include the time a user does things like filling in the login page, thinking about what to click on next, etc?

Solution

The completedAt and initiatedAt fields in tenant logs are recorded in UNIX.

The elapsedTime is the difference between those two, in milliseconds. It will encompass the processing time of rules, actions, and custom database scripts, along with the time the user spent on the login screen.

The time it takes for rules to run is recorded in the log entry under "timers ", but custom database script time is not recorded.

The time it takes for Actions to run is recorded in a separate tab called “Action details”, under "stats ".

The values for a specific prompt (under “details”: { “prompts”: [… ) include both the time waiting for the user to type the credentials and also any server-side processing in the pipeline.

Note: The elapsedTime for the login prompt (Universal Login) includes the time spent in the other prompts as well.