Skip to content

Commit f4c073f

Browse files
create analytics migration guide
1 parent b10266b commit f4c073f

File tree

3 files changed

+26
-33
lines changed

3 files changed

+26
-33
lines changed

docs.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@
209209
"learn/analytics/configure_analytics",
210210
"learn/analytics/configure_monitoring",
211211
"learn/analytics/bind_events_user",
212-
"learn/analytics/deactivate_analytics_monitoring",
212+
"learn/analytics/migrate_analytics_monitoring",
213213
"learn/analytics/events_endpoint"
214214
]
215215
},
@@ -1006,6 +1006,10 @@
10061006
{
10071007
"source": "/guides/back_end/laravel_scout",
10081008
"destination": "/guides/laravel_scout"
1009+
},
1010+
{
1011+
"source": "/learn/analytics/deactivate_analytics_monitoring",
1012+
"destination": "/learn/analytics/migrate_analytics_monitoring"
10091013
}
10101014
]
10111015
}

learn/analytics/deactivate_analytics_monitoring.mdx

Lines changed: 0 additions & 32 deletions
This file was deleted.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: Migrate to the November 2025 Meilisearch Cloud analytics
3+
description: Follow this guide to ensure your Meilisearch Cloud analytics configuration is up to date after the November 2025 release.
4+
---
5+
6+
## Analytics and monitoring are always active
7+
8+
Analytics and monitoring are now active in all Meilisearch Cloud projects. Basic functionality requires no extra configuration. Tracking user conversion, clickthrough, and clicked result position must instead be explicitly configured.
9+
10+
## Update URLs in your application
11+
12+
Meilisearch no longer requires `edge.meilisearch.com` to track search analytics. Update your application so all API requests, including click and conversion events, point to your project URL:
13+
14+
```sh
15+
curl \
16+
-X POST 'https://PROJECT_URL/indexes/products/search' \
17+
-H 'Content-Type: application/json' \
18+
--data-binary '{ "q": "green socks" }'
19+
```
20+
21+
`edge.meilisearch.com` remains functional, but no longer provides any benefit and will be discontinued in the future. If you created any custom API keys using the previous URL, you will also need to replace them.

0 commit comments

Comments
 (0)