⚡ Only 300 spots remaining • Closes in 2d 14h 32m
Measure your service reliability. This workflow pings your API every 15 minutes. It records the response time (latency) and HTTP status code. Every 24 hours, it aggregates these metrics into a mean-latency report and appends it to a Google Sheet, helping you visualize uptime trends and SLA compliance.
This workflow is pre-configured and ready for deployment. Simply import the JSON template into your n8n instance and configure your credentials.
This is an exclusive blueprint. Copy the JSON below to use it.
PRO TIP
Always test your workflow in a development environment before pushing to production.
{
"nodes": [
{
"parameters": {
"interval": 15,
"unit": "minutes"
},
"name": "Every 15m",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [250, 300]
},
{
"parameters": {
"url": "https://api.yourdomain.com/v1/health",
"options": {
"fullResponse": true
}
},
"name": "Ping API",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [450, 300]
},
{
"parameters": {
"operation": "append",
"documentId": "YOUR_GSHEET_ID",
"sheetName": "LatencyLog",
"columns": {
"mappingMode": "defineBelow",
"value": [
{
"column": "Timestamp",
"value": "={{$now}}"
},
{
"column": "Latency MS",
"value": "={{$node[\"Ping API\"].json[\"latency\"]}}"
}
]
}
},
"name": "Log to Sheet",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 3,
"position": [650, 300]
}
],
"connections": {
"Every 15m": {
"main": [[{"node": "Ping API", "type": "main", "index": 0}]]
},
"Ping API": {
"main": [[{"node": "Log to Sheet", "type": "main", "index": 0}]]
}
}
}To use this, copy the JSON above and paste it directly onto your n8n canvas.
Join the elite marketers who have offloaded their entire backend to n8n. Get direct support and custom builds in our private forum.