---
metadata:
  - name: generator
    content: Diplodoc Platform v5.52.0
alternate:
  - https://yandex.ru/dev/games/doc/en/concepts/performance.md
  - https://yandex.ru/dev/games/doc/ru/concepts/performance.md
  - https://yandex.ru/dev/games/doc/tr/concepts/performance.md
  - https://yandex.ru/dev/games/doc/zh/concepts/performance.md
  - href: ru/concepts/performance.md
    type: text/markdown
    title: Markdown version
  - href: ../llms.txt
    type: text/markdown
    title: llms.txt
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.ru/dev/games/doc/ru/llms.txt

# Performance в DevTools

<!-- source: ru/_includes/script-common.md -->
<!-- source: ru/_includes/script/index-js.md -->

<!-- endsource: ru/_includes/script/index-js.md -->

<!-- source: ru/_includes/script/requirements-js.md -->

<!-- endsource: ru/_includes/script/requirements-js.md -->

<!-- source: ru/_includes/script/image-modal-js.md -->

<!-- endsource: ru/_includes/script/image-modal-js.md -->


<!-- source: ru/_includes/script/neuroexpert-widget.md -->



<!-- endsource: ru/_includes/script/neuroexpert-widget.md -->
<!-- endsource: ru/_includes/script-common.md -->

Платформа Яндекс Игры дает возможность отслеживать [технические метрики](https://yandex.ru/dev/games/doc/ru/concepts/metric.md#tech) **Game Ready** и **Time To Interactive** (TTI) во вкладке [Performance](https://developer.chrome.com/docs/devtools/performance/overview?hl=ru){.external} в DevTools. Вы можете посмотреть, в какой момент срабатывают метрики, какие задачи выполняются перед ними, и на основе этой информации оптимизировать и ускорить процессы.

## Как отправляются метки {#send-marks}

- Метка **Game Ready** срабатывает, когда вызывается метод [ysdk.features.LoadingAPI.ready()](https://yandex.ru/dev/games/doc/ru/sdk/sdk-game-events.md#gameready).
- Метка [Time To Interactive](https://developer.chrome.com/docs/lighthouse/performance/interactive?hl=ru){.external} срабатывает автоматически по определенным условиям.

## Как посмотреть метки {#check-marks}

1. Запустите игру любым удобным способом.
2. Откройте DevTools:
    - Windows: **F12**, **Ctrl** + **Shift** + **I**
    - macOS: **Cmd** + **Opt** + **I**
3. Перейдите на вкладку **Performance**.
4. В левом верхнем углу нажмите **Record and reload** ![SVG](../_images/performance-devtools/reload.svg) и дождитесь сборки профиля. В строке **Timings** отобразятся желтые метки с названиями [Game Ready](*gr) и [Time To Interactive](*tti).

    {% cut "Пример собранного профиля" %}

    ![Скриншот игры с открытой панелью DevTools на вкладке Performance.](../_images/performance-devtools/profile-ready.webp)

    {% endcut %}

[*gr]: ![На шкале Timings отметка Game Ready.](../_images/performance-devtools/game-ready-mark.webp)

[*tti]: ![На шкале Timings отметка Time To Interactive.](../_images/performance-devtools/tti-mark.webp)