* feat(metrics): grand update * feat(metrics): fixed missing part in ee tracer * feat(assets): added missing arg * feat(metrics): fixed naming problems
33 lines
1.6 KiB
Go
33 lines
1.6 KiB
Go
package database
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
type Database interface {
|
|
RecordBatchElements(number float64)
|
|
RecordBatchInsertDuration(durMillis float64)
|
|
RecordBulkSize(size float64, db, table string)
|
|
RecordBulkElements(size float64, db, table string)
|
|
RecordBulkInsertDuration(durMillis float64, db, table string)
|
|
RecordRequestDuration(durMillis float64, method, table string)
|
|
IncreaseTotalRequests(method, table string)
|
|
IncreaseRedisRequests(method, table string)
|
|
RecordRedisRequestDuration(durMillis float64, method, table string)
|
|
List() []prometheus.Collector
|
|
}
|
|
|
|
type databaseImpl struct{}
|
|
|
|
func New(serviceName string) Database { return &databaseImpl{} }
|
|
|
|
func (d *databaseImpl) List() []prometheus.Collector { return []prometheus.Collector{} }
|
|
func (d *databaseImpl) RecordBatchElements(number float64) {}
|
|
func (d *databaseImpl) RecordBatchInsertDuration(durMillis float64) {}
|
|
func (d *databaseImpl) RecordBulkSize(size float64, db, table string) {}
|
|
func (d *databaseImpl) RecordBulkElements(size float64, db, table string) {}
|
|
func (d *databaseImpl) RecordBulkInsertDuration(durMillis float64, db, table string) {}
|
|
func (d *databaseImpl) RecordRequestDuration(durMillis float64, method, table string) {}
|
|
func (d *databaseImpl) IncreaseTotalRequests(method, table string) {}
|
|
func (d *databaseImpl) IncreaseRedisRequests(method, table string) {}
|
|
func (d *databaseImpl) RecordRedisRequestDuration(durMillis float64, method, table string) {}
|