fix: typo in BucketUsageMetrics group registration in v3 metrics (#20090)

```
curl http://localhost:9000/minio/metrics/v3/cluster/usage/buckets
```

Did not work as documented, due to the fact that there was a typo
in the bucket usage metrics registration group. This endpoint is
a cluster endpoint and does not require any `buckets` argument.
This commit is contained in:
Harshavardhana
2024-07-14 11:11:42 -07:00
committed by GitHub
parent 3b602bb532
commit eff0ea43aa
3 changed files with 4 additions and 8 deletions

View File

@@ -163,7 +163,7 @@ func (h *metricsV3Server) handle(path string, isListingRequest bool, buckets []s
http.Error(w, "Metrics Resource Not found", http.StatusNotFound)
})
// Require that metrics path has at least component.
// Require that metrics path has one component at least.
if path == "/" {
return notFoundHandler
}