mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-11 13:23:09 +01:00
Introduce two new Prometheus metrics sourced from the Barman Cloud plugin: - `barman_cloud_cloudnative_pg_io_first_recoverability_point` - `barman_cloud_cloudnative_pg_io_last_available_backup_timestamp` These metrics supersede the following deprecated CNPG metrics: - `cnpg_collector_first_recoverability_point` - `cnpg_collector_last_available_backup_timestamp` Depends on: https://github.com/cloudnative-pg/cloudnative-pg/pull/8033 Relates to: #380 Signed-off-by: Armando Ruocco <armando.ruocco@enterprisedb.com> Signed-off-by: Leonardo Cecchi <leonardo.cecchi@enterprisedb.com> Co-authored-by: Leonardo Cecchi <leonardo.cecchi@enterprisedb.com>
58 lines
1.4 KiB
Go
58 lines
1.4 KiB
Go
package instance
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/cloudnative-pg/cnpg-i-machinery/pkg/pluginhelper/http"
|
|
"github.com/cloudnative-pg/cnpg-i/pkg/backup"
|
|
"github.com/cloudnative-pg/cnpg-i/pkg/metrics"
|
|
"github.com/cloudnative-pg/cnpg-i/pkg/wal"
|
|
"google.golang.org/grpc"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
|
|
"github.com/cloudnative-pg/plugin-barman-cloud/internal/cnpgi/common"
|
|
)
|
|
|
|
// CNPGI is the implementation of the PostgreSQL sidecar
|
|
type CNPGI struct {
|
|
Client client.Client
|
|
PGDataPath string
|
|
PGWALPath string
|
|
SpoolDirectory string
|
|
// mutually exclusive with serverAddress
|
|
PluginPath string
|
|
InstanceName string
|
|
}
|
|
|
|
// Start starts the GRPC service
|
|
func (c *CNPGI) Start(ctx context.Context) error {
|
|
enrich := func(server *grpc.Server) error {
|
|
wal.RegisterWALServer(server, common.WALServiceImplementation{
|
|
InstanceName: c.InstanceName,
|
|
Client: c.Client,
|
|
SpoolDirectory: c.SpoolDirectory,
|
|
PGDataPath: c.PGDataPath,
|
|
PGWALPath: c.PGWALPath,
|
|
})
|
|
backup.RegisterBackupServer(server, BackupServiceImplementation{
|
|
Client: c.Client,
|
|
InstanceName: c.InstanceName,
|
|
})
|
|
metrics.RegisterMetricsServer(server, &metricsImpl{
|
|
Client: c.Client,
|
|
})
|
|
common.AddHealthCheck(server)
|
|
return nil
|
|
}
|
|
|
|
srv := http.Server{
|
|
IdentityImpl: IdentityImplementation{
|
|
Client: c.Client,
|
|
},
|
|
Enrichers: []http.ServerEnricher{enrich},
|
|
PluginPath: c.PluginPath,
|
|
}
|
|
|
|
return srv.Start(ctx)
|
|
}
|