Nomploy Nomad Packs

← All packs

statping v0.1.0

Observability

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.

nomad-pack run statping --registry nomploy
1 task http 8104 1 volume image adamboutcher/statping-ng:latest
Variables 10
values.hcl

Save as values.hcl, edit, then run:

nomad-pack run statping -f values.hcl --registry nomploy
# 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
  }
NameTypeDefaultDescription
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.
Readme

statping

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.

Deploy

nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run statping --registry=nomploy

Configure

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.