Skip to content

Commit

Permalink
Can't keep track anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
JarcauCristian committed Dec 31, 2023
1 parent bcdd768 commit f70e9a3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions helper_functions.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,10 +226,9 @@ func getTotalBytes(alias []string, token string, fileSize float64) (float64, err
startIndex := strings.Index(stringBody, "minio_cluster_capacity_raw_free_bytes{server=\"127.0.0.1:9000\"}")
pattern := "[^0-9+e\\-\\.$]"

fmt.Printf("Start index: %d\nstringBody: %s\n", startIndex, stringBody[startIndex+63:startIndex+63+16])

re := regexp.MustCompile(pattern)
processedInput := re.ReplaceAllString(stringBody[startIndex+63:startIndex+63+16], " ")
fmt.Println(processedInput)
processedInput = strings.Replace(processedInput, " ", "", -1)

total, err := strconv.ParseFloat(processedInput, 64)
Expand Down

0 comments on commit f70e9a3

Please sign in to comment.