forked from lix-project/hydra
Track the number of steps created
This commit is contained in:
parent
1c12c5882f
commit
59ac96a99c
3 changed files with 10 additions and 0 deletions
|
@ -54,6 +54,13 @@ State::PromMetrics::PromMetrics()
|
||||||
.Register(*registry)
|
.Register(*registry)
|
||||||
.Add({})
|
.Add({})
|
||||||
)
|
)
|
||||||
|
, queue_steps_created(
|
||||||
|
prometheus::BuildCounter()
|
||||||
|
.Name("hydraqueuerunner_queue_steps_created_total")
|
||||||
|
.Help("Number of steps created")
|
||||||
|
.Register(*registry)
|
||||||
|
.Add({})
|
||||||
|
)
|
||||||
, queue_checks_early_exits(
|
, queue_checks_early_exits(
|
||||||
prometheus::BuildCounter()
|
prometheus::BuildCounter()
|
||||||
.Name("hydraqueuerunner_queue_checks_early_exits_total")
|
.Name("hydraqueuerunner_queue_checks_early_exits_total")
|
||||||
|
|
|
@ -448,6 +448,8 @@ Step::ptr State::createStep(ref<Store> destStore,
|
||||||
|
|
||||||
if (!isNew) return step;
|
if (!isNew) return step;
|
||||||
|
|
||||||
|
prom.queue_steps_created.Increment();
|
||||||
|
|
||||||
printMsg(lvlDebug, "considering derivation ‘%1%’", localStore->printStorePath(drvPath));
|
printMsg(lvlDebug, "considering derivation ‘%1%’", localStore->printStorePath(drvPath));
|
||||||
|
|
||||||
/* Initialize the step. Note that the step may be visible in
|
/* Initialize the step. Note that the step may be visible in
|
||||||
|
|
|
@ -444,6 +444,7 @@ private:
|
||||||
|
|
||||||
prometheus::Counter& queue_checks_started;
|
prometheus::Counter& queue_checks_started;
|
||||||
prometheus::Counter& queue_build_loads;
|
prometheus::Counter& queue_build_loads;
|
||||||
|
prometheus::Counter& queue_steps_created;
|
||||||
prometheus::Counter& queue_checks_early_exits;
|
prometheus::Counter& queue_checks_early_exits;
|
||||||
prometheus::Counter& queue_checks_finished;
|
prometheus::Counter& queue_checks_finished;
|
||||||
prometheus::Gauge& queue_max_id;
|
prometheus::Gauge& queue_max_id;
|
||||||
|
|
Loading…
Reference in a new issue