---
title: "App Starts"
description: "Learn how to monitor your mobile application's performance by using App Starts to identify slow or regressed screens."
url: https://docs.sentry.io/product/dashboards/sentry-dashboards/mobile/mobile-vitals/app-starts/
---

# App Starts

The **App Starts** dashboard in [Sentry Dashboards](https://sentry.io/orgredirect/organizations/:orgslug/dashboards/) shows an overview of the amount of time it takes for your application to complete cold and warm starts. It helps you identify slow or regressed screens and gives additional information so you can better understand the factors contributing to the slowness of your application start times.

### [Minimum SDK Requirements:](https://docs.sentry.io/product/dashboards/sentry-dashboards/mobile/mobile-vitals/app-starts.md#minimum-sdk-requirements)

**For Android:**

* `>=7.4.0` for automatic instrumentation of app start spans and app start profiling
* [Performance-V2](https://docs.sentry.io/platforms/android/performance/instrumentation/perf-v2.md) feature flag (`<8.0.0`) and [App Start Profiling](https://docs.sentry.io/platforms/android/profiling.md#app-start-profiling) must also be enabled in the SDK, e.g.:

`MyApplication.java`

```java
import io.sentry.android.core.SentryAndroid;

SentryAndroid.init(this, options -> {
  options.setEnablePerformanceV2(true);
  options.setEnableAppStartProfiling(true);
});
```

**For iOS:**

* `>=7.2.0` for automatic instrumentation of [app start spans](https://docs.sentry.io/platforms/apple/guides/ios/tracing/instrumentation/automatic-instrumentation.md#app-start-tracing)
* `>=8.21.0` for app start profiling

**For React Native:**

* `>=5.24.0` for automatic instrumentation of [app start spans](https://docs.sentry.io/platforms/react-native/tracing/instrumentation/automatic-instrumentation.md#app-start-instrumentation)

By default, the **App Starts** dashboard displays metrics for the two releases with the highest screen counts for the time range you've selected. To choose a different set of releases to compare, use the "release selector" at the top of the dashboard. To change the app start type (cold or warm), use the "App Start" selector at the top of the dashboard.

The charts display the following metrics (using cold starts as an example):

* Average Cold Start
  * The overall time it takes your application to start, compared by release.
* Cold Start Device Distribution
  * The average cold start time grouped by [device class](https://docs.sentry.io/concepts/search/searchable-properties.md#device-classification) (high, medium, low, or unknown).

**Reasons Why You Might Not Be Seeing Any Data:**

* You don't have any transactions with op `ui.load`
* Your SDKs don't meet the minimum SDK requirements

The table at the bottom shows spans that have changed from one release to the next and allows you to filter for specific span operations and device classes. Being able to narrow down to specific event samples helps debug slow starts.

Clicking the "By Event" toggle in the top right corner of this table will show you events split by release and you'll be able to see overall changes in start times between the two releases you've selected.

The following table describes the span operations that are surfaced in the spans table:

| Platform                                                                                                                        | Span Operations                                                               |
| ------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
| Common                                                                                                                          | * file.write
* ui.load
* http.client
* db
* db.sql.query
* db.sql.transaction |
| [iOS](https://docs.sentry.io/platforms/apple/guides/ios/tracing/instrumentation/automatic-instrumentation.md#app-start-tracing) | - app.start.cold
- app.start.warm                                             |
| Android                                                                                                                         | * activity.load
* application.load
* contentprovider.load
* process.load      |

## [Span Detail View](https://docs.sentry.io/product/dashboards/sentry-dashboards/mobile/mobile-vitals/app-starts.md#span-detail-view)

Clicking on a span description opens up the Traces page, where you can see sampled spans.

In the table, you'll see a list of sampled spans. Click into one to get a waterfall view of the span.
