Statping-ng — a status page for monitoring your websites and services, with uptime history, response-time graphs, incident tracking, and notifications. Deployed as a single host-networked Nomad service on SQLite with a persistent data volume.
Save as values.hcl, edit, then run:
# The name of the Nomad job.
job_name = "statping"
# The Nomad namespace to deploy into.
namespace = "default"
# The datacenters to deploy to.
datacenters = ["*"]
# The Statping-ng container image. Pin a tag in production.
image = "adamboutcher/statping-ng:latest"
# Host port for the Statping-ng web UI (PORT).
port = 8104
# Initial admin username (ADMIN_USER).
admin_user = "admin"
# Initial admin password (ADMIN_PASSWORD). CHANGE THIS.
admin_password = "changeme-please"
# Named volume for config, SQLite database, and assets (/app).
data_volume = "statping_data"
# Placement constraints. Pin to the node holding the volume. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
constraints = []
# The task resources.
resources = {
cpu = 300
memory = 256
}
| Name | Type | Default | Description |
|---|---|---|---|
| job_name | string | "statping" | The name of the Nomad job. |
| namespace | string | "default" | The Nomad namespace to deploy into. |
| datacenters | list | ["*"] | The datacenters to deploy to. |
| image | string | "adamboutcher/statping-ng:latest" | The Statping-ng container image. Pin a tag in production. |
| port | number | 8104 | Host port for the Statping-ng web UI (PORT). |
| admin_user | string | "admin" | Initial admin username (ADMIN_USER). |
| admin_password set me | string | "changeme-please" | Initial admin password (ADMIN_PASSWORD). CHANGE THIS. |
| data_volume | string | "statping_data" | Named volume for config, SQLite database, and assets (/app). |
| constraints | list | [] | Placement constraints. Pin to the node holding the volume. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true". |
| resources | object | {
cpu = 300
memory = 256
} | The task resources. |
No variables match.
Statping-ng — a status page for monitoring your websites and services, with uptime history, response-time graphs, incident tracking, and notifications (a maintained drop-in for the original Statping).
Single host-networked Nomad service on SQLite with a persistent data volume. See also the uptime-kuma and gatus packs.
nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run statping --registry=nomploy
| Variable | Default | Description |
|---|---|---|
port |
8104 |
Web UI port (PORT). |
admin_user / admin_password |
admin / changeme-please |
Initial admin. Change the password. |
data_volume |
statping_data |
/app — config, SQLite database, assets. |
image |
adamboutcher/statping-ng:latest |
Container image. Pin a tag in production. |
resources |
{ cpu = 300, memory = 256 } |
Task resources. |
Add the services you want to monitor from the dashboard. Pin the job to the node holding the
volume with constraints.