add bucket label to s3 prometheus metrics

This commit is contained in:
zzq09494
2022-06-16 13:21:25 +08:00
parent 097a12dfb4
commit 62f74f5e3c
2 changed files with 7 additions and 4 deletions

View File

@@ -173,7 +173,8 @@ var (
Subsystem: "s3",
Name: "request_total",
Help: "Counter of s3 requests.",
}, []string{"type", "code"})
}, []string{"type", "code", "bucket"})
S3RequestHistogram = prometheus.NewHistogramVec(
prometheus.HistogramOpts{
Namespace: "SeaweedFS",
@@ -181,7 +182,7 @@ var (
Name: "request_seconds",
Help: "Bucketed histogram of s3 request processing time.",
Buckets: prometheus.ExponentialBuckets(0.0001, 2, 24),
}, []string{"type"})
}, []string{"type", "bucket"})
)
func init() {