-
Notifications
You must be signed in to change notification settings - Fork 62
/
metrics.go
84 lines (70 loc) · 2.16 KB
/
metrics.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
// SPDX-License-Identifier: AGPL-3.0-only
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
// by the Free Software Foundation, version 3.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>
package dal
import (
"context"
"database/sql"
"time"
"github.com/prometheus/client_golang/prometheus"
"github.com/uber-go/tally/v4"
"gorm.io/gorm"
gormLogger "gorm.io/gorm/logger"
"github.com/bangumi/server/internal/errgo"
"github.com/bangumi/server/internal/metrics"
)
func newMetricsLog(log gormLogger.Interface, scope tally.Scope) gormLogger.Interface {
return metricsLog{
Interface: log,
h: scope.Histogram("sql_time", metrics.SQLTimeBucket()),
}
}
type metricsLog struct {
gormLogger.Interface
h tally.Histogram
}
func (l metricsLog) Trace(
ctx context.Context,
begin time.Time,
fc func() (sql string, rowsAffected int64), err error,
) {
fc()
l.h.RecordDuration(time.Since(begin))
}
func setupMetrics(db *gorm.DB, conn *sql.DB, scope tally.Scope, register prometheus.Registerer) error {
db.Logger = newMetricsLog(db.Logger, scope)
var DatabaseQuery = prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "chii_db_execute_total",
Help: "Number of executing sql.",
},
[]string{"table"},
)
// uber/tally doesn't like dynamic tag value.
err := db.Callback().Query().Before("gorm:select").Register("metrics:select", func(db *gorm.DB) {
DatabaseQuery.WithLabelValues(db.Statement.Table).Inc()
})
if err != nil {
return errgo.Wrap(err, "gorm callback")
}
register.MustRegister(DatabaseQuery)
dbConnCount := scope.Gauge("db_open_connections_total")
go func() {
for {
s := conn.Stats()
dbConnCount.Update(float64(s.OpenConnections))
time.Sleep(time.Second * 15)
}
}()
return nil
}