Documentation Index
Fetch the complete documentation index at: https://docs.zentien.io/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Infrastructure monitoring lets you track the health of any external service your Salesforce org depends on — REST APIs, databases, payment gateways, internal services, or anything else reachable over the network. When a service goes down, Zentien records the outage and surfaces it on the Correlation page alongside any Salesforce error spikes that occurred at the same time.Check types
HTTP
Makes an HTTP GET request to a URL and expects a2xx response. Any non-2xx response or a timeout counts as a failure.
Use for: REST APIs, health endpoints, web services.
TCP
Opens a TCP connection to a host and port. If the connection is refused or times out, the check fails. Use for: databases (PostgreSQL, MySQL, Redis, MSSQL), SFTP servers, custom TCP services.Heartbeat
A passive check — your system pings Zentien instead of Zentien polling yours. If no heartbeat arrives within the configured interval, the check is marked DOWN. Use for: scheduled jobs, nightly batch processes, cron tasks. Add aPOST to the heartbeat URL at the end of your job.
Creating a check
- Go to Infrastructure → New Check
- Select the check type
- Enter a name and target (URL or host:port)
- Set the polling interval (how often to check)
- Set the timeout (how long to wait before marking it DOWN)
- Optionally select a Notification Channel to be alerted when the check goes DOWN or recovers
- Save
Heartbeat URL
When you create a heartbeat check, you receive a unique URL:checkId is the secret.
Example (cURL):
Reading the dashboard
The Infrastructure page shows all your checks with:- Status badge — UP (green), DOWN (red), or UNKNOWN (grey, before first result)
- Uptime bar — last 60 check results as coloured segments, oldest to newest left to right
- Response time — last recorded response time in milliseconds (HTTP and TCP)
- Last checked — time of the most recent check
Alerts
Select a Notification Channel on a check to receive a notification when it goes DOWN and when it recovers. The same Slack, email, and webhook destinations used for error alerts are supported.Next step
Correlation
See how infrastructure outages relate to Salesforce error spikes.