Skip to content

Commit

Permalink
fix ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
sstarcher committed Jan 25, 2019
1 parent 1e8e073 commit 10924fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package main

import (
"fmt"
"time"
"flag"
"strconv"
"fmt"
"net/http"
"strconv"
"time"

"k8s.io/helm/pkg/helm"

Expand Down Expand Up @@ -105,7 +105,7 @@ func helmStats() {
if status == release.Status_FAILED {
status = -1
}
stats.WithLabelValues(chart, releaseName, updated, version, namespace).Set(float64(status))
stats.WithLabelValues(chart, releaseName, version, updated, namespace).Set(float64(status))
}
}
}
Expand Down

0 comments on commit 10924fd

Please sign in to comment.