Skip to content

Commit

Permalink
PMM-13362: Follow convention for metric name (#907)
Browse files Browse the repository at this point in the history
* follow convention for metric name

* drop sleep time bump
  • Loading branch information
idoqo committed Sep 16, 2024
1 parent 23502f1 commit 6dcda3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exporter/pbm_collector.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func (p *pbmCollector) pbmBackupsMetrics(ctx context.Context, pbmClient *sdk.Cli
metrics := make([]prometheus.Metric, 0, len(backupsList))

for _, backup := range backupsList {
metrics = append(metrics, createPBMMetric("backup_size",
metrics = append(metrics, createPBMMetric("backup_size_bytes",
"Size of PBM backup",
float64(backup.Size), map[string]string{
"opid": backup.OPID,
Expand Down

0 comments on commit 6dcda3a

Please sign in to comment.