Karma — a dashboard for Prometheus Alertmanager: aggregates alerts from multiple Alertmanager instances, groups and silences them, with a clean UI. Deployed as a single stateless host-networked Nomad service.
Needs nomad-pack on PATH. The script only adds the nomploy registry and runs this pack.
Source ↗ Project ↗ ★ 2.7k ⚑ Report an issue
Save as values.hcl, edit, then run:
# The name of the Nomad job.
job_name = "karma"
# The Nomad namespace to deploy into.
namespace = "default"
# The datacenters to deploy to.
datacenters = ["*"]
# The Karma container image. Pin a tag in production.
image = "ghcr.io/prymitive/karma:latest"
# Host port for the Karma web UI.
port = 8080
# URL of the Alertmanager to display (ALERTMANAGER_URI). On a nomploy node with the alertmanager pack, the default loopback works; otherwise point it at your Alertmanager.
alertmanager_uri = "http://127.0.0.1:9093"
# Placement constraints. 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 | "karma" | The name of the Nomad job. |
| namespace | string | "default" | The Nomad namespace to deploy into. |
| datacenters | list | ["*"] | The datacenters to deploy to. |
| image | string | "ghcr.io/prymitive/karma:latest" | The Karma container image. Pin a tag in production. |
| port | number | 8080 | Host port for the Karma web UI. |
| alertmanager_uri | string | "http://127.0.0.1:9093" | URL of the Alertmanager to display (ALERTMANAGER_URI). On a nomploy node with the alertmanager pack, the default loopback works; otherwise point it at your Alertmanager. |
| constraints | list | [] | Placement constraints. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true". |
| resources | object | {
cpu = 300
memory = 256
} | The task resources. |
No variables match.
Karma — a dashboard for Prometheus Alertmanager. It aggregates alerts from one or many Alertmanager instances, groups and deduplicates them, shows rich labels and annotations, and lets you create and manage silences from a clean, auto-refreshing UI — a much nicer view than Alertmanager's built-in page.
Single stateless host-networked Nomad service (no volume).
nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run karma --registry=nomploy
| Variable | Default | Description |
|---|---|---|
port |
8080 |
Web UI port (PORT). |
alertmanager_uri |
http://127.0.0.1:9093 |
Alertmanager URL to display (ALERTMANAGER_URI). |
image |
ghcr.io/prymitive/karma:latest |
Container image. Pin a tag in production. |
resources |
{ cpu = 300, memory = 256 } |
Task resources. |
Pairs with alertmanager and monitoring. For multiple Alertmanagers or advanced options (auth, label rules), mount a
karma.yamland passCONFIG_FILE. Being stateless, it needs no storage and can run anywhere it can reach your Alertmanager.