Skip to content

Commit

Permalink
added 5s, 15s and 45s buckets to the time spent in queue histogram fo…
Browse files Browse the repository at this point in the history
…r increased granuality
  • Loading branch information
Don Wimodya Athukorala committed Jan 25, 2021
1 parent 1a78e47 commit a2a1287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clj/celery_prometheus_exporter/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
(prometheus/histogram :celery/time-spent-in-queue-millis
{:description "Time from when a task is published and received by a worker per queue (seconds)"
:labels [:instance :queue :name]
:buckets [1000.0 30000.0 60000.0 180000.0 300000.0 600000.0 1800000.0 3600000.0 7200000.0 1.08E7 1.8E7 3.6E7]}))
:buckets [1000.0 5000.0 15000.0 30000.0 45000.0 60000.0 180000.0 300000.0 600000.0 1800000.0 3600000.0 7200000.0 1.08E7 1.8E7 3.6E7]}))


(defn new-registry []
Expand Down

0 comments on commit a2a1287

Please # to comment.