Ana içeriğe geç

🔎 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.


🎯 Ne Yapar

  • 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)

⚙️ Yapilandirma

Same as the HTTP monitor, plus:

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

📖 Kullanim Ornekleri

Example 1: Verify page content is correct

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

Example 2: Detect error pages

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

Example 3: Check API response

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

💡 İpuclari

  • 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