|-> mojito
|-> Project Requests
diff --git a/docs/_docs/refs/mojito-file-formats.md b/docs/_docs/refs/mojito-file-formats.md
index 74f85e7a33..c5465dd63b 100644
--- a/docs/_docs/refs/mojito-file-formats.md
+++ b/docs/_docs/refs/mojito-file-formats.md
@@ -72,7 +72,6 @@ Localized Resource File (Spanish): `es.lproj/Localizable.strings`
| 2 | Source |
| 3 | Target |
| 4 | Comment |
-|||
Source Resource File (English): `example.csv`
diff --git a/docs/_docs/refs/mojito-locales.md b/docs/_docs/refs/mojito-locales.md
index db7d0d2465..e21cdc6b83 100644
--- a/docs/_docs/refs/mojito-locales.md
+++ b/docs/_docs/refs/mojito-locales.md
@@ -56,7 +56,7 @@ permalink: /docs/refs/mojito-locales/
| en-US | English (United States) |
| en-ZA | English (South Africa) |
| en-ZW | English (Zimbabwe) |
-| en-419 | Spanish (Latin America) |
+| es-419 | Spanish (Latin America) |
| es-AR | Spanish (Argentina) |
| es-BO | Spanish (Bolivia) |
| es-CL | Spanish (Chile) |
diff --git a/docs/_docs/refs/monitoring.md b/docs/_docs/refs/monitoring.md
new file mode 100644
index 0000000000..061be4e19c
--- /dev/null
+++ b/docs/_docs/refs/monitoring.md
@@ -0,0 +1,39 @@
+---
+layout: doc
+title: "Database Monitoring"
+date: 2025-02-04 10:00:00 -0800
+categories: refs
+permalink: /docs/refs/monitoring/
+---
+
+The Database Latency page lets you measure database response times to diagnose performance issues.
+
+> **Who can use Monitoring:** Admins only. The **Monitoring** link appears in your user menu (top right, under your username) only if you have the Admin role. Translators and Project Managers do not see this option. See [User Roles & Permissions]({{ site.url }}/docs/guides/user-roles-overview/).
+
+## How to access
+
+1. Click your username in the top-right corner.
+2. Click **Monitoring** in the dropdown.
+3. The Database Latency page opens at `/monitoring`.
+
+## What it measures
+
+The page runs database probes and reports latency (response time in milliseconds):
+
+| Probe | Description |
+|-------|-------------|
+| **Direct JDBC (select 1)** | Raw JDBC connection executing a simple query |
+| **Hibernate (select 1)** | Hibernate health check |
+| **Hibernate repositories query** | A typical repositories query as used by the application |
+
+For each probe, you get:
+- **Min**, **Max**, **Average** latency (ms)
+- Per-iteration measurements
+
+## How to use it
+
+1. Set **Iterations** (1–20, default 5). More iterations give a more stable average.
+2. Click **Measure**.
+3. Review the results. High or variable latency may indicate database or network issues.
+
+Use this when troubleshooting slow page loads or when tuning database configuration.
diff --git a/docs/_docs/refs/springboot2migration.md b/docs/_docs/refs/springboot2migration.md
index b3994ae4aa..303d0c07f2 100644
--- a/docs/_docs/refs/springboot2migration.md
+++ b/docs/_docs/refs/springboot2migration.md
@@ -32,8 +32,8 @@ Optional:
Everything that `Spring boot 2.x` brings can potentially be re-used in Mojito. A few things to call-out though:
-* Improved OAuth2 support: multiple registrations, improved login page (see [details](/docs/guides/authentication/#oauth-2))
-* Monitoring with `micrometer` (statds dependency was added)
+* Improved OAuth2 support: multiple registrations, improved login page (see [details]({{ site.url }}/docs/guides/authentication/#oauth-2))
+* Monitoring with `micrometer` (statsd dependency was added)
## Known issue
diff --git a/docs/documentation.md b/docs/documentation.md
index 4355bb93c7..9e456e7a07 100644
--- a/docs/documentation.md
+++ b/docs/documentation.md
@@ -4,6 +4,8 @@ title: Documentation
permalink: /docs/
---
+Using the webapp? Start with User Roles & Permissions to see what you can do based on your role (Translator, Project Manager, Admin, or User).
+
Guides
{% assign docs=site.docs | sort: 'path' %}
{% for my_page in docs %}