See whether the process is alive
Use /ping and runtime statistics for basic
monitoring and operational inspection.
Daptin
Run Daptin →
Deployment and operations
Deploy one application server with database pooling, caching, traffic controls, health and statistics endpoints, logs, and record history already present.
Operational from the start
Run the latest binary or container with SQLite, MySQL, or PostgreSQL. Configure the infrastructure to fit the stage of the product instead of rewriting the application layer as it grows.
Use /ping and runtime statistics for basic
monitoring and operational inspection.
Connection-pool settings control open and idle connections rather than allowing unbounded database use.
IP-and-path rate limits and concurrent-request bounds protect shared resources before application handlers do work.
Olric can provide distributed cache, PubSub, and shared rate counters across Daptin instances.
Logs, runtime counters, pool information, and record-level change history give operators evidence to work from.
Response caching, validators, and invalidation paths reduce repeated work while keeping changed data visible.
Deployment choices
Use the latest native artifact or container with SQLite when simple operation matters more than horizontal scale.
Move durable relational state to MySQL or PostgreSQL while keeping the same application model.
Configure shared durable storage and distributed coordination before placing instances behind a load balancer.
Adapt the maintained Compose and Kubernetes examples to your network, secret, persistence, and observability standards.
Operational truth
/ping is the lightweight process-liveness signal. The
/health path serves an administrative application and
should not be described as a readiness probe. Runtime statistics
help inspection, but deployment-level readiness must reflect the
dependencies your product actually requires.
Daptin does not set every HTTP header, body, read, write, or idle limits in the latest release. Enforce those at a trusted reverse proxy, then size Daptin concurrency, rate, pool, and cache settings for real traffic. Repository examples are not production guarantees for every environment.