Skip to content

Commit

Permalink
Fix metrics description to match telemetry request
Browse files Browse the repository at this point in the history
Signed-off-by: Bella Khizgiyaev <[email protected]>
  • Loading branch information
bkhizgiy authored and ahadas committed Aug 4, 2024
1 parent dbf22d8 commit 5010fb4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/monitoring/metrics/forklift-controller/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var (
// 'target' - [Local, Remote]
migrationStatusCounter = promauto.NewCounterVec(prometheus.CounterOpts{
Name: "mtv_migrations_status_total",
Help: "VM Migrations sorted by status, provider, mode and destination",
Help: "VM Migrations sorted by status, provider, mode and target",
},
[]string{
"status",
Expand All @@ -44,7 +44,7 @@ var (
// 'target' - [Local, Remote]
planStatusGauge = promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "mtv_plans_status",
Help: "VM migration Plans sorted by status, provider, mode and destination",
Help: "VM migration Plans sorted by status, provider, mode and target",
},
[]string{
"status",
Expand Down Expand Up @@ -89,7 +89,7 @@ var (
// 'plan' - [Id]
migrationPlanCorrelationStatusCounter = promauto.NewCounterVec(prometheus.CounterOpts{
Name: "mtv_workload_migrations_status_total",
Help: "VM Migrations status by provider, mode, destination and plan",
Help: "VM Migrations status by provider, mode, target and plan",
},
[]string{
"status",
Expand Down

0 comments on commit 5010fb4

Please sign in to comment.