Nomploy Nomad Packs

← All packs

dashdot v0.1.0

Observability

dash. (dashdot) — a simple, modern server dashboard that shows live CPU, memory, storage, network, and OS info at a glance, ideal for small private servers. Deployed as a host-networked Nomad service that reads the host filesystem read-only.

nomad-pack run dashdot --registry nomploy
…or one line (add registry + run)
curl -fsSL https://packs.nomploy.com/install.sh | sh -s -- dashdot

Needs nomad-pack on PATH. The script only adds the nomploy registry and runs this pack.

1 task http 3001 image mauricenino/dashdot:latest tracks :latest image bumped today
Variables 7
values.hcl

Save as values.hcl, edit, then run:

nomad-pack run dashdot -f values.hcl --registry nomploy
# The name of the Nomad job.
job_name = "dashdot"

# The Nomad namespace to deploy into.
namespace = "default"

# The datacenters to deploy to.
datacenters = ["*"]

# The dashdot container image. Pin a tag in production.
image = "mauricenino/dashdot:latest"

# Host port for the dashboard. The container listens on 3001.
port = 3001

# Placement constraints. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
constraints = []

# Resources for the dashdot task.
resources = {
    cpu    = 300
    memory = 256
  }
NameTypeDefaultDescription
job_name string
"dashdot"
The name of the Nomad job.
namespace string
"default"
The Nomad namespace to deploy into.
datacenters list
["*"]
The datacenters to deploy to.
image string
"mauricenino/dashdot:latest"
The dashdot container image. Pin a tag in production.
port number
3001
Host port for the dashboard. The container listens on 3001.
constraints list
[]
Placement constraints. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
resources object
{
    cpu    = 300
    memory = 256
  }
Resources for the dashdot task.
Readme

dashdot

dash. (dashdot) — a simple, modern server dashboard. See live CPU, memory, storage, network throughput, and OS details at a glance — perfect for a homelab or a small private server.

Single host-networked Nomad service that reads the host filesystem read-only.

Deploy

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

Configure

Variable Default Description
port 3001 Dashboard port (PORT). The container listens on 3001.
image mauricenino/dashdot:latest Container image. Pin a tag in production.
resources { cpu = 300, memory = 256 } Task resources.

The job binds the host root at /mnt/host (read-only) so storage widgets reflect the real disks, and uses host networking for accurate network stats. A few extras (disk temperatures, some SMART data) require a privileged container — not requested here; add it yourself if your cluster allows it. Run one instance per node you want to monitor. It's an unauthenticated dashboard — keep it on an internal network or behind a reverse proxy.