Skip to content

Commit

Permalink
fix: Prefix constant name (#43)
Browse files Browse the repository at this point in the history
Signed-off-by: sarabala1979 <[email protected]>
  • Loading branch information
sarabala1979 authored Aug 6, 2024
1 parent 0e8e3a2 commit 65af787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prometheus-pusher/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func main() {
skipFailedStr := os.Getenv(SKIP_VALIDATION_FAILED)
labels := parseStringToMap(os.Getenv(METRICS_LABELS))
excludeLabels := parseStringToSlice(os.Getenv(EXCLUDE_METRIC_LABELS))
opexMetricsPrefix := os.Getenv(os.Getenv(OPEX_METRIC_PREFIX))
opexMetricsPrefix := os.Getenv(OPEX_METRIC_PREFIX)
metricName := os.Getenv(METRICS_NAME)
if metricName == "" {
metricName = "namespace_app_rollouts_unified_anomaly"
Expand Down

0 comments on commit 65af787

Please sign in to comment.