App Info Actions
App Info actions enable you to monitor application health and get system information. This is essential for monitoring and debugging your 8kit instance.
Available Operations
App Actions
- Get app information - Retrieve version and system information
- Check app health - Monitor application health and status
Check app health
Monitor application health and status.
Check App Health Configuration
No parameters required.
Check App Health Example
{}
Check App Health Response
{
"success": true,
"data": {
"status": "healthy",
"timestamp": "2024-01-01T10:00:00.000Z",
"version": "1.0.0",
"uptime": "72h30m15s",
"database": {
"status": "connected",
"responseTime": "2ms"
},
"memory": {
"used": "128MB",
"total": "512MB",
"percentage": 25
}
}
}
Get app information
Retrieve version and system information.
Get App Information Configuration
| Parameter | Type | Required | Description |
|---|---|---|---|
| Time Range | String | No | Time range for statistics (1h, 24h, 7d) |
Get App Information Example
{
"timeRange": "24h"
}
Get App Information Response
{
"success": true,
"data": {
"name": "8kit",
"version": "0.1.0",
"environment": "development",
"timestamp": "2024-01-01T12:00:00.000Z",
"endpoints": {
"v1": {
"apps": "/api/v1/apps",
"auth": "/api/v1/auth",
"locks": "/api/v1/locks",
"lastUpdated": "/api/v1/last-updated",
"lookups": "/api/v1/lookups",
"uniqs": "/api/v1/uniqs",
"settingViolations": "/api/v1/setting-violations"
}
},
"documentation": "/api/docs",
"health": "/health"
}
}
Next Steps
Now that you understand all 8kit Node actions:
- Explore 8kit Patterns - Learn proven patterns
- Try Getting Started - Start using 8kit
- Check Admin Dashboard - Monitor your instance