mirror of
https://github.com/prometheus-community/postgres_exporter
synced 2025-04-04 23:29:30 +00:00
Update linting
* Move errcheck exclude list to config file. * Enable revive linter * Fix up revive linting issues. Signed-off-by: SuperQ <superq@gmail.com>
This commit is contained in:
parent
6e671f2d82
commit
fab8e625a8
@ -1,4 +1,8 @@
|
|||||||
---
|
---
|
||||||
|
linters:
|
||||||
|
enable:
|
||||||
|
- revive
|
||||||
|
|
||||||
issues:
|
issues:
|
||||||
exclude-rules:
|
exclude-rules:
|
||||||
- path: _test.go
|
- path: _test.go
|
||||||
@ -7,4 +11,6 @@ issues:
|
|||||||
|
|
||||||
linters-settings:
|
linters-settings:
|
||||||
errcheck:
|
errcheck:
|
||||||
exclude: scripts/errcheck_excludes.txt
|
exclude-functions:
|
||||||
|
# Never check for logger errors.
|
||||||
|
- (github.com/go-kit/log.Logger).Log
|
||||||
|
@ -34,7 +34,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
c = config.ConfigHandler{
|
c = config.Handler{
|
||||||
Config: &config.Config{},
|
Config: &config.Config{},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -66,27 +66,27 @@ func (PGReplicationSlotCollector) Update(ctx context.Context, db *sql.DB, ch cha
|
|||||||
defer rows.Close()
|
defer rows.Close()
|
||||||
|
|
||||||
for rows.Next() {
|
for rows.Next() {
|
||||||
var slot_name string
|
var slotName string
|
||||||
var wal_lsn int64
|
var walLSN int64
|
||||||
var flush_lsn int64
|
var flusLSN int64
|
||||||
var is_active bool
|
var isActive bool
|
||||||
if err := rows.Scan(&slot_name, &wal_lsn, &flush_lsn, &is_active); err != nil {
|
if err := rows.Scan(&slotName, &walLSN, &flusLSN, &isActive); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
ch <- prometheus.MustNewConstMetric(
|
ch <- prometheus.MustNewConstMetric(
|
||||||
pgReplicationSlotCurrentWalDesc,
|
pgReplicationSlotCurrentWalDesc,
|
||||||
prometheus.GaugeValue, float64(wal_lsn), slot_name,
|
prometheus.GaugeValue, float64(walLSN), slotName,
|
||||||
)
|
)
|
||||||
if is_active {
|
if isActive {
|
||||||
ch <- prometheus.MustNewConstMetric(
|
ch <- prometheus.MustNewConstMetric(
|
||||||
pgReplicationSlotCurrentFlushDesc,
|
pgReplicationSlotCurrentFlushDesc,
|
||||||
prometheus.GaugeValue, float64(flush_lsn), slot_name,
|
prometheus.GaugeValue, float64(flusLSN), slotName,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
ch <- prometheus.MustNewConstMetric(
|
ch <- prometheus.MustNewConstMetric(
|
||||||
pgReplicationSlotIsActiveDesc,
|
pgReplicationSlotIsActiveDesc,
|
||||||
prometheus.GaugeValue, float64(flush_lsn), slot_name,
|
prometheus.GaugeValue, float64(flusLSN), slotName,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
if err := rows.Err(); err != nil {
|
if err := rows.Err(); err != nil {
|
||||||
|
@ -54,18 +54,18 @@ type UserPass struct {
|
|||||||
Password string `yaml:"password"`
|
Password string `yaml:"password"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type ConfigHandler struct {
|
type Handler struct {
|
||||||
sync.RWMutex
|
sync.RWMutex
|
||||||
Config *Config
|
Config *Config
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ch *ConfigHandler) GetConfig() *Config {
|
func (ch *Handler) GetConfig() *Config {
|
||||||
ch.RLock()
|
ch.RLock()
|
||||||
defer ch.RUnlock()
|
defer ch.RUnlock()
|
||||||
return ch.Config
|
return ch.Config
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ch *ConfigHandler) ReloadConfig(f string, logger log.Logger) error {
|
func (ch *Handler) ReloadConfig(f string, logger log.Logger) error {
|
||||||
config := &Config{}
|
config := &Config{}
|
||||||
var err error
|
var err error
|
||||||
defer func() {
|
defer func() {
|
||||||
|
@ -18,7 +18,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func TestLoadConfig(t *testing.T) {
|
func TestLoadConfig(t *testing.T) {
|
||||||
ch := &ConfigHandler{
|
ch := &Handler{
|
||||||
Config: &Config{},
|
Config: &Config{},
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -29,7 +29,7 @@ func TestLoadConfig(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestLoadBadConfigs(t *testing.T) {
|
func TestLoadBadConfigs(t *testing.T) {
|
||||||
ch := &ConfigHandler{
|
ch := &Handler{
|
||||||
Config: &Config{},
|
Config: &Config{},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
// Never check for logger errors.
|
|
||||||
(github.com/go-kit/log.Logger).Log
|
|
Loading…
Reference in New Issue
Block a user