2023-01-25 16:15:24 +00:00
|
|
|
// Copyright 2023 The Prometheus Authors
|
2023-01-24 19:45:31 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
|
|
|
|
"github.com/go-kit/log"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
registerCollector("replication_slot", defaultEnabled, NewPGReplicationSlotCollector)
|
|
|
|
}
|
|
|
|
|
|
|
|
type PGReplicationSlotCollector struct {
|
|
|
|
log log.Logger
|
|
|
|
}
|
|
|
|
|
2022-10-17 23:23:51 +00:00
|
|
|
func NewPGReplicationSlotCollector(config collectorConfig) (Collector, error) {
|
|
|
|
return &PGReplicationSlotCollector{log: config.logger}, nil
|
2023-01-24 19:45:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var pgReplicationSlot = map[string]*prometheus.Desc{
|
2023-01-25 16:15:24 +00:00
|
|
|
"current_wal_lsn": prometheus.NewDesc(
|
|
|
|
"pg_replication_slot_current_wal_lsn",
|
|
|
|
"current wal lsn value",
|
|
|
|
[]string{"slot_name"}, nil,
|
|
|
|
),
|
|
|
|
"confirmed_flush_lsn": prometheus.NewDesc(
|
|
|
|
"pg_replication_slot_confirmed_flush_lsn",
|
|
|
|
"last lsn confirmed flushed to the replication slot",
|
2023-01-24 19:45:31 +00:00
|
|
|
[]string{"slot_name"}, nil,
|
|
|
|
),
|
2023-01-28 22:05:45 +00:00
|
|
|
"is_active": prometheus.NewDesc(
|
|
|
|
"pg_replication_slot_is_active",
|
|
|
|
"last lsn confirmed flushed to the replication slot",
|
|
|
|
[]string{"slot_name"}, nil,
|
|
|
|
),
|
2023-01-24 19:45:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (PGReplicationSlotCollector) Update(ctx context.Context, db *sql.DB, ch chan<- prometheus.Metric) error {
|
|
|
|
rows, err := db.QueryContext(ctx,
|
|
|
|
`SELECT
|
|
|
|
slot_name,
|
2023-01-28 22:05:45 +00:00
|
|
|
pg_current_wal_lsn() - '0/0' AS current_wal_lsn,
|
|
|
|
coalesce(confirmed_flush_lsn, '0/0') - '0/0',
|
|
|
|
active
|
|
|
|
FROM
|
|
|
|
pg_replication_slots;`)
|
2023-01-24 19:45:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
|
|
|
|
for rows.Next() {
|
|
|
|
var slot_name string
|
2023-01-25 16:15:24 +00:00
|
|
|
var wal_lsn int64
|
|
|
|
var flush_lsn int64
|
2023-03-23 00:54:00 +00:00
|
|
|
var is_active bool
|
2023-01-28 22:05:45 +00:00
|
|
|
if err := rows.Scan(&slot_name, &wal_lsn, &flush_lsn, &is_active); err != nil {
|
2023-01-24 19:45:31 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
2023-01-25 16:15:24 +00:00
|
|
|
pgReplicationSlot["current_wal_lsn"],
|
|
|
|
prometheus.GaugeValue, float64(wal_lsn), slot_name,
|
|
|
|
)
|
2023-03-23 00:54:00 +00:00
|
|
|
if is_active {
|
2023-01-28 22:05:45 +00:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
pgReplicationSlot["confirmed_flush_lsn"],
|
|
|
|
prometheus.GaugeValue, float64(flush_lsn), slot_name,
|
|
|
|
)
|
|
|
|
}
|
2023-01-25 16:15:24 +00:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
2023-01-28 22:05:45 +00:00
|
|
|
pgReplicationSlot["is_active"],
|
2023-01-28 22:40:46 +00:00
|
|
|
prometheus.GaugeValue, float64(flush_lsn), slot_name,
|
2023-01-24 19:45:31 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
if err := rows.Err(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|