open-nomad/e2e/metrics/input/cpustress.nomad
Tim Gross e439e927ed
e2e: run client/allocs metrics tests nightly (#6842)
Refactor the metrics end-to-end tests so they can be run with our e2e
test framework. Runs fabio/prometheus and a collection of jobs that
will cause metrics to be measured. We then query Prometheus to ensure
we're publishing those allocation metrics and some metrics from the
clients as well.

Includes adding a placeholder for running the same tests on Windows.
2019-12-12 12:45:16 -05:00

34 lines
482 B
HCL

job "cpustress" {
datacenters = ["dc1", "dc2"]
type = "batch"
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
group "cpustress" {
count = 1
task "cpustress" {
driver = "docker"
config {
image = "progrium/stress"
args = [
"--cpu",
"2",
"--timeout",
"600",
]
}
resources {
cpu = 2056
memory = 256
}
}
}
}