forked from alitto/pond
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prometheus.go
100 lines (87 loc) · 2.31 KB
/
prometheus.go
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package main
import (
"fmt"
"net/http"
"time"
"github.com/alitto/pond"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
)
func main() {
// Create a worker pool
pool := pond.New(10, 100)
// Register pool metrics collectors
// Worker pool metrics
prometheus.MustRegister(prometheus.NewGaugeFunc(
prometheus.GaugeOpts{
Name: "pool_workers_running",
Help: "Number of running worker goroutines",
},
func() float64 {
return float64(pool.RunningWorkers())
}))
prometheus.MustRegister(prometheus.NewGaugeFunc(
prometheus.GaugeOpts{
Name: "pool_workers_idle",
Help: "Number of idle worker goroutines",
},
func() float64 {
return float64(pool.IdleWorkers())
}))
// Task metrics
prometheus.MustRegister(prometheus.NewCounterFunc(
prometheus.CounterOpts{
Name: "pool_tasks_submitted_total",
Help: "Number of tasks submitted",
},
func() float64 {
return float64(pool.SubmittedTasks())
}))
prometheus.MustRegister(prometheus.NewGaugeFunc(
prometheus.GaugeOpts{
Name: "pool_tasks_waiting_total",
Help: "Number of tasks waiting in the queue",
},
func() float64 {
return float64(pool.WaitingTasks())
}))
prometheus.MustRegister(prometheus.NewCounterFunc(
prometheus.CounterOpts{
Name: "pool_tasks_successful_total",
Help: "Number of tasks that completed successfully",
},
func() float64 {
return float64(pool.SuccessfulTasks())
}))
prometheus.MustRegister(prometheus.NewCounterFunc(
prometheus.CounterOpts{
Name: "pool_tasks_failed_total",
Help: "Number of tasks that completed with panic",
},
func() float64 {
return float64(pool.FailedTasks())
}))
prometheus.MustRegister(prometheus.NewCounterFunc(
prometheus.CounterOpts{
Name: "pool_tasks_completed_total",
Help: "Number of tasks that completed either successfully or with panic",
},
func() float64 {
return float64(pool.CompletedTasks())
}))
// Expose the registered metrics via HTTP
http.Handle("/metrics", promhttp.Handler())
go submitTasks(pool)
// Start the server
http.ListenAndServe(":8080", nil)
}
func submitTasks(pool *pond.WorkerPool) {
// Submit 1000 tasks
for i := 0; i < 1000; i {
n := i
pool.Submit(func() {
fmt.Printf("Running task #%d\n", n)
time.Sleep(500 * time.Millisecond)
})
}
}