Skip to main content
The indexing performance section of the monitoring dashboard shows how quickly Meilisearch processes indexing tasks. It is labeled Beta in the Cloud UI. You can filter all charts by index using the All indexes dropdown, set a date range, or enable real-time mode. Timestamps are displayed in UTC.

Indexing latency (TTS)

The indexing latency chart tracks time-to-search (TTS): the time from when an indexing task is enqueued to when the indexed documents become searchable. Latency is shown at four percentiles, measured in milliseconds: p75, p90, p95, and p99.
Indexing latency TTS chart showing p75, p90, p95, and p99 times in milliseconds over time
TTS is the metric that matters most for use cases where freshness is important, such as e-commerce catalog updates or live content indexing.

Batches

The Batches tab gives you a per-batch view of every indexing operation, along with a detailed trace of where time was spent. Use it when the TTS chart shows high latency and you need to identify the bottleneck.
Batches tab showing a list of processed batches with their status, index, batch ID, duration, and start time
Each row shows:
  • Status: succeeded, failed, or in progress
  • Index id: which index was written to
  • Batch id: unique identifier for the batch
  • Duration: total wall-clock time for the batch
  • Started date: when the batch began processing
Click a batch to open its details page.

Progress trace

The details page includes a progressTrace section with timing for every internal step of the indexing pipeline:
Batch detail JSON panel showing progressTrace with per-step timing, internalDatabaseSizes, embedderRequests, and writeChannelCongestion
Key steps visible in the trace:

Internal database sizes

The Internal DB table shows the current on-disk size of each internal data structure, along with the delta from this batch: The delta (shown as +N KiB or +N MiB) tells you how much space each batch adds. A vectorStore growing much faster than documents indicates a high-dimensional embedding model.

Other fields

Expert support for Enterprise customers

In most cases, the simplest way to improve indexing performance is to upgrade to a larger resource tier. More RAM and CPU directly reduce indexing time and TTS. You can change your resource tier at any time from the project settings. If upgrading does not resolve the issue, the Meilisearch team can help. Enterprise customers have direct access to experts who can analyze your batch traces, database sizes, and index configuration to optimize for your specific workload. Contact sales@meilisearch.com to learn more.

Common issues and fixes