Saltar al contenido principal

🔎 Keyword Monitor

The Keyword monitor checks if specific text is present (or absent) in a web page's response body. It's essentially an HTTP monitor with a mandatory keyword check.


🎯 Que Hace

  • Fetches a web page via HTTP
  • Searches the response body for a specific keyword or phrase
  • Alerts if the keyword is missing (or present, if you want to detect errors)

⚙️ Configuracion

Same as the HTTP monitor, plus:

ConfiguracionDescripcion
KeywordThe text to search for in the response
Keyword Should Exist✅ = must be present, ❌ = must be absent

📖 Ejemplos de Uso

Example 1: Verify page content is correct

ConfiguracionValor
URLhttps://example.com
KeywordWelcome to our website
Should Exist✅ Yes

Example 2: Detect error pages

ConfiguracionValor
URLhttps://example.com
Keyword500 Internal Server Error
Should Exist❌ No

Example 3: Check API response

ConfiguracionValor
URLhttps://api.example.com/health
Keyword"healthy":true
Should Exist✅ Yes

💡 Consejos

  • Keyword search is case-sensitive
  • The keyword is searched in the raw HTML/response body, not the rendered page
  • For JSON APIs, search for a key-value pair like "status":"ok" to verify the response structure, not just the status code