Track sessions

This article helps you:

  • Understand how Amplitude defines and tracks user sessions

  • Learn how to best incorporate sessions into your analyses

In Amplitude, sessions are a useful metric for understanding the frequency and duration of your users' engagement with your product. The most direct way to build a session-based analysis is with the User Sessions chart

Note

You may also find this video on User Sessions helpful.

How Amplitude defines "sessions"

Generally, a session is the period of time a user has your app in the foreground or has your website open. The specifics differ slightly between mobile and web applications:

  • For mobile, a session begins when the app is brought into the foreground; it ends when the app goes into the background and no events are fired for at least five minutes. All events sent within five minutes of each other are counted towards the current session. Note that you can define your own session expiration time by calling setMinTimeBetweenSessionsMillis(timeout), where the timeout input is in milliseconds.
  • On a browser, a session begins when the website is opened and the SDK is initialized; it ends when the last event is triggered. Web sessions time out after 30 minutes by default. All events fired within 30 minutes of each other are counted as part of the same session. This timeout window can be customized via the Browser SDK configuration options.

Amplitude automatically generates a session ID for each new session; that ID is the session's start time in milliseconds since epoch (also known as the Unix timestamp). All events within the same session share the same session ID. If you are using Amplitude's SDKs, this happens automatically. However, if you are sending data to Amplitude using the HTTP API, you will have to explicitly set the session ID field in order to track sessions.

How Amplitude tracks your sessions

By default, the setting in Amplitude for the session property is session ID. All events with the same session ID and the same user ID will be grouped into the same session. The session ID does not have to be unique across multiple users. You can also change the property you use to group sessions.

As noted above, session IDs for events sent via the Amplitude SDKs are automatically generated and managed. However, for events sent via the HTTP API, Amplitude defaults to a session ID of -1. This means the event is excluded from all session metrics.

Note

This commonly occurs when sending data to Amplitude from Segment via a cloud-mode connection. As with sending data via HTTP API, you will have to explicitly set a session ID to track sessions.

SessionId.png

Events included in the same session will be connected with a blue line, as shown above.

Start Session and End Session events

By default, Amplitude tracks Start Session and End Session events using the beginning and ending times of each session by session ID. Amplitude also uses session ID to calculate session lengths. If you use session IDs, Amplitude will not add additional events to your monthly event volume limit.

That said, if trackingStart Session andEnd Session events is critical to your analysis outside of session lengths, you can easily turn on tracking for these events by adding this line of code before initializing the SDK:

For Android:

1Amplitude amplitude = new Amplitude(new Configuration( apiKey = AMPLITUDE\_API\_KEY, context = applicationContext, trackingSessionEvents = true, ));

For iOS:

1[Amplitude instance].trackingSessionEvents = YES;

For Browser:

1amplitude.init(API\_KEY, OPTIONAL\_USER\_ID, { defaultTracking: { sessions: true, }, });

Important Notes:

  • This only applies to Amplitude's Android,iOS, and Browser SDKs. Refer to Amplitude's Developer Center for all SDK documentation.
  • Start/End Session events count towards your monthly event volume limit.
  • The End Session event will be sent at the start of the user's next session.
  • You will not be able to add additional event properties to these Start Session and End Session events. If you would like to send event properties for session start/end events, try implementing your own custom Open App and Close App events.

Out-of-session events

You can also log events as out-of-session by setting the session ID to -1. Out-of-session events are not considered part of the current session. Because they do not extend the current session, they can be useful if you're logging events triggered by push notifications.

Out-of-session events are normally server-side events received by Amplitude (see our HTTP API documentation for more details). These events will appear in a user's event stream as disconnected green squares.

SessionId

Custom session property

By default, Amplitude sorts events into sessions according to session ID. You can also define a session without instrumentation, simply by setting a constant property, custom timeout window, or beginning and ending events to group sessions.

You will need Admin or Manager privileges to edit session definitions.

Note

Custom session definitions are only available in the User Sessions and Pathfinder charts, as well as user timelines. Sessions only include active events.

To set a custom session definition, follow these steps:

  1. From the left sidebar, navigate to Settings > Projects.
  2. Click on the project you want to work with.
  3. Click Session Definitions. The Session Definitions modal will appear.
  4. Click Custom Session Definition.
  5. Next, choose the specifications for any of three conditions that will define the custom session:
    • Session property: Click Select property... to choose the event or user property you want to use for grouping sessions.
    • Starting Event and Ending Event: Click on Starting Event or Ending Event to choose the events that will signify the beginning and end of a session. The triggering of the ending event will end a session if it occurs before the timeout interval has elapsed.
    • Session timeout: Enter the default timeout interval in minutes. Amplitude will count all events from the same user prior to the interval you specify as being part of a single session. We recommend a default of 30 minutes.

You can define one condition or multiple conditions, but be aware that all conditions you specify must be met in order for Amplitude to count a session. If you do not define any of these conditions, Amplitude will use session ID as the session-defining property.

  1. Finally, enter the confirmation phrase and click Save.

customSessionDefinition.png

Note

Changing the session definition will apply to all User Session, Funnel Analysis, Journeys charts, as well as the session metric, in your project. Be sure you understand what the impacts might be before setting or changing a custom session definition.

Be aware that Amplitude will treat combinations of conditions as and logic, meaning all conditions must be met for the session to be counted. For example, if you want to guarantee that all events in sessions are from the same source, you can accomplish this by using session property and timeout window in tandem:

  • Session property = device ID
  • Session timeout = 30 min

Alternatively, to define sessions based on in-app usage, you can use starting event and timeout window:

  • Start event = app open
  • Session timeout = 5 min
Was this page helpful?

Thanks for your feedback!

June 11th, 2024

Need help? Contact Support

Visit Amplitude.com

Have a look at the Amplitude Blog

Learn more at Amplitude Academy

© 2024 Amplitude, Inc. All rights reserved. Amplitude is a registered trademark of Amplitude, Inc.