-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from alitto/feature/1.5.0
Metrics, Prometheus example, Upgrade to Go 1.15 and fixes
- Loading branch information
Showing
11 changed files
with
726 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ go: | |
- 1.12.x | ||
- 1.13.x | ||
- 1.14.x | ||
- 1.15.x | ||
|
||
# Enable Go Modules | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
module github.com/alitto/pond/examples/dynamic_size | ||
|
||
go 1.14 | ||
go 1.15 | ||
|
||
require ( | ||
github.com/alitto/pond v1.3.0 | ||
github.com/alitto/pond v1.5.0 | ||
) | ||
|
||
replace github.com/alitto/pond => ../../ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
module github.com/alitto/pond/examples/fixed_size | ||
|
||
go 1.14 | ||
go 1.15 | ||
|
||
require ( | ||
github.com/alitto/pond v1.3.0 | ||
github.com/alitto/pond v1.5.0 | ||
) | ||
|
||
replace github.com/alitto/pond => ../../ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
module github.com/alitto/pond/examples/fixed_size | ||
|
||
go 1.15 | ||
|
||
require ( | ||
github.com/alitto/pond v1.5.0 | ||
github.com/prometheus/client_golang v1.9.0 | ||
) | ||
|
||
replace github.com/alitto/pond => ../../ |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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) | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
module github.com/alitto/pond/examples/task_group | ||
|
||
go 1.14 | ||
go 1.15 | ||
|
||
require ( | ||
github.com/alitto/pond v1.3.0 | ||
github.com/alitto/pond v1.5.0 | ||
) | ||
|
||
replace github.com/alitto/pond => ../../ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module github.com/alitto/pond | ||
|
||
go 1.14 | ||
go 1.15 |
Oops, something went wrong.