Monitor the Nomad events

and send all Nomad events to Influxdb.
This commit is contained in:
Maximilian Paß
2023-05-06 21:18:21 +01:00
parent bc479fcf1e
commit 42efebc194
3 changed files with 15 additions and 0 deletions

View File

@ -23,6 +23,7 @@ const (
// measurementPrefix allows easier filtering in influxdb.
measurementPrefix = "poseidon_"
measurementPoolSize = measurementPrefix + "poolsize"
MeasurementNomadEvents = measurementPrefix + "nomad_events"
MeasurementNomadAllocations = measurementPrefix + "nomad_allocations"
MeasurementIdleRunnerNomad = measurementPrefix + "nomad_idle_runners"
MeasurementExecutionsAWS = measurementPrefix + "aws_executions"