Skip to content

Instantly share code, notes, and snippets.

@omerkaya1
omerkaya1 / metrics.go
Last active August 5, 2024 13:41
Golang PostgreSQL connection pool example Go ^1.18
package db
import (
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promauto"
)
var queryTime = promauto.NewHistogramVec(
prometheus.HistogramOpts{
Name: "db_client_query_execution_time",
@dedunumax
dedunumax / .gitignore Java
Last active September 16, 2024 20:49
A complete .gitignore file for Java.
##############################
## Java
##############################
.mtj.tmp/
*.class
*.jar
*.war
*.ear
*.nar
hs_err_pid*