-
Notifications
You must be signed in to change notification settings - Fork 352
/
Copy pathbeanstalk.conf
52 lines (50 loc) · 1.06 KB
/
beanstalk.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
modules {
module {
name = "beanstalk"
language = "python"
}
}
collection_group {
collect_every = 20
time_threshold = 90
metric {
name = "current-connections"
title = "Number of Current Connections to Beanstalkd"
value_threshold = 0
}
metric {
name = "total-jobs"
title = "Number of Beanstalkd Jobs"
value_threshold = 0
}
metric {
name = "current-jobs-ready"
title = "Number of Beanstalkd Jobs 'ready'"
value_threshold = 0
}
metric {
name = "current-jobs-buried"
title = "Number of Beanstalkd Jobs 'buried'"
value_threshold = 0
}
metric {
name = "current-jobs-delayed"
title = "Number of Beanstalkd Jobs 'delayed'"
value_threshold = 0
}
metric {
name = "current-waiting"
title = "Number of Beanstalkd Jobs 'waiting'"
value_threshold = 0
}
metric {
name = "job-timeouts"
title = "Number of Beanstalkd Jobs Timeouts"
value_threshold = 0
}
metric {
name = "cmd-bury"
title = "Number of Beanstalkd Burries"
value_threshold = 0
}
}