2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-04-18 19:01:42 -04:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2020-03-25 01:40:45 -04:00
|
|
|
"time"
|
2018-04-18 19:01:42 -04:00
|
|
|
|
2023-02-06 12:27:29 -05:00
|
|
|
"github.com/minio/minio/internal/auth"
|
2021-06-01 17:59:40 -04:00
|
|
|
"github.com/minio/minio/internal/logger"
|
2022-12-06 12:27:26 -05:00
|
|
|
"github.com/minio/minio/internal/mcontext"
|
2024-05-24 19:05:23 -04:00
|
|
|
"github.com/minio/pkg/v3/policy"
|
2018-04-18 19:01:42 -04:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2022-07-01 16:18:39 -04:00
|
|
|
"github.com/prometheus/common/expfmt"
|
2018-04-18 19:01:42 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
httpRequestsDuration = prometheus.NewHistogramVec(
|
|
|
|
prometheus.HistogramOpts{
|
2019-10-23 00:01:14 -04:00
|
|
|
Name: "s3_ttfb_seconds",
|
2019-04-09 14:39:42 -04:00
|
|
|
Help: "Time taken by requests served by current MinIO server instance",
|
2019-10-23 00:01:14 -04:00
|
|
|
Buckets: []float64{.05, .1, .25, .5, 1, 2.5, 5, 10},
|
2018-04-18 19:01:42 -04:00
|
|
|
},
|
2019-10-23 00:01:14 -04:00
|
|
|
[]string{"api"},
|
2018-04-18 19:01:42 -04:00
|
|
|
)
|
2023-07-19 01:25:12 -04:00
|
|
|
bucketHTTPRequestsDuration = prometheus.NewHistogramVec(
|
|
|
|
prometheus.HistogramOpts{
|
|
|
|
Name: "s3_ttfb_seconds",
|
|
|
|
Help: "Time taken by requests served by current MinIO server instance per bucket",
|
|
|
|
Buckets: []float64{.05, .1, .25, .5, 1, 2.5, 5, 10},
|
|
|
|
},
|
|
|
|
[]string{"api", "bucket"},
|
|
|
|
)
|
2019-06-26 13:36:54 -04:00
|
|
|
minioVersionInfo = prometheus.NewGaugeVec(
|
|
|
|
prometheus.GaugeOpts{
|
|
|
|
Namespace: "minio",
|
|
|
|
Name: "version_info",
|
|
|
|
Help: "Version of current MinIO server instance",
|
|
|
|
},
|
|
|
|
[]string{
|
|
|
|
// current version
|
|
|
|
"version",
|
|
|
|
// commit-id of the current version
|
|
|
|
"commit",
|
|
|
|
},
|
|
|
|
)
|
2018-04-18 19:01:42 -04:00
|
|
|
)
|
|
|
|
|
2021-01-18 23:35:38 -05:00
|
|
|
const (
|
|
|
|
healMetricsNamespace = "self_heal"
|
|
|
|
cacheNamespace = "cache"
|
|
|
|
s3Namespace = "s3"
|
|
|
|
bucketNamespace = "bucket"
|
|
|
|
minioNamespace = "minio"
|
|
|
|
diskNamespace = "disk"
|
|
|
|
interNodeNamespace = "internode"
|
|
|
|
)
|
|
|
|
|
2018-04-18 19:01:42 -04:00
|
|
|
func init() {
|
|
|
|
prometheus.MustRegister(httpRequestsDuration)
|
2018-05-08 23:10:55 -04:00
|
|
|
prometheus.MustRegister(newMinioCollector())
|
2019-06-26 13:36:54 -04:00
|
|
|
prometheus.MustRegister(minioVersionInfo)
|
2018-04-18 19:01:42 -04:00
|
|
|
}
|
|
|
|
|
2018-05-08 23:10:55 -04:00
|
|
|
// newMinioCollector describes the collector
|
|
|
|
// and returns reference of minioCollector
|
|
|
|
// It creates the Prometheus Description which is used
|
|
|
|
// to define metric and help string
|
|
|
|
func newMinioCollector() *minioCollector {
|
|
|
|
return &minioCollector{
|
2019-04-09 14:39:42 -04:00
|
|
|
desc: prometheus.NewDesc("minio_stats", "Statistics exposed by MinIO server", nil, nil),
|
2018-05-08 23:10:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// minioCollector is the Custom Collector
|
|
|
|
type minioCollector struct {
|
|
|
|
desc *prometheus.Desc
|
|
|
|
}
|
|
|
|
|
|
|
|
// Describe sends the super-set of all possible descriptors of metrics
|
|
|
|
func (c *minioCollector) Describe(ch chan<- *prometheus.Desc) {
|
|
|
|
ch <- c.desc
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collect is called by the Prometheus registry when collecting metrics.
|
|
|
|
func (c *minioCollector) Collect(ch chan<- prometheus.Metric) {
|
2019-06-26 13:36:54 -04:00
|
|
|
// Expose MinIO's version information
|
2021-01-18 23:35:38 -05:00
|
|
|
minioVersionInfo.WithLabelValues(Version, CommitID).Set(1.0)
|
2019-06-26 13:36:54 -04:00
|
|
|
|
2020-03-25 01:40:45 -04:00
|
|
|
storageMetricsPrometheus(ch)
|
2021-01-18 23:35:38 -05:00
|
|
|
nodeHealthMetricsPrometheus(ch)
|
2020-05-27 09:45:43 -04:00
|
|
|
bucketUsageMetricsPrometheus(ch)
|
2020-03-25 01:40:45 -04:00
|
|
|
networkMetricsPrometheus(ch)
|
|
|
|
httpMetricsPrometheus(ch)
|
|
|
|
healingMetricsPrometheus(ch)
|
|
|
|
}
|
|
|
|
|
2021-01-18 23:35:38 -05:00
|
|
|
func nodeHealthMetricsPrometheus(ch chan<- prometheus.Metric) {
|
2022-06-08 05:43:13 -04:00
|
|
|
nodesUp, nodesDown := globalNotificationSys.GetPeerOnlineCount()
|
2021-01-18 23:35:38 -05:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(minioNamespace, "nodes", "online"),
|
|
|
|
"Total number of MinIO nodes online",
|
|
|
|
nil, nil),
|
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(nodesUp),
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(minioNamespace, "nodes", "offline"),
|
|
|
|
"Total number of MinIO nodes offline",
|
|
|
|
nil, nil),
|
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(nodesDown),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-03-25 01:40:45 -04:00
|
|
|
// collects healing specific metrics for MinIO instance in Prometheus specific format
|
|
|
|
// and sends to given channel
|
|
|
|
func healingMetricsPrometheus(ch chan<- prometheus.Metric) {
|
|
|
|
bgSeq, exists := globalBackgroundHealState.getHealSequenceByToken(bgHealingUUID)
|
|
|
|
if !exists {
|
|
|
|
return
|
|
|
|
}
|
2018-05-08 23:10:55 -04:00
|
|
|
|
2020-08-24 15:11:20 -04:00
|
|
|
var dur time.Duration
|
2020-03-25 01:40:45 -04:00
|
|
|
if !bgSeq.lastHealActivity.IsZero() {
|
|
|
|
dur = time.Since(bgSeq.lastHealActivity)
|
|
|
|
}
|
2019-10-23 00:01:14 -04:00
|
|
|
|
2020-02-19 22:51:33 -05:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2020-03-25 01:40:45 -04:00
|
|
|
prometheus.BuildFQName(healMetricsNamespace, "time", "since_last_activity"),
|
|
|
|
"Time elapsed (in nano seconds) since last self healing activity. This is set to -1 until initial self heal activity",
|
2020-02-19 22:51:33 -05:00
|
|
|
nil, nil),
|
|
|
|
prometheus.GaugeValue,
|
2020-03-25 01:40:45 -04:00
|
|
|
float64(dur),
|
2020-02-19 22:51:33 -05:00
|
|
|
)
|
2020-03-25 01:40:45 -04:00
|
|
|
for k, v := range bgSeq.getScannedItemsMap() {
|
2019-10-23 00:01:14 -04:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2020-03-25 01:40:45 -04:00
|
|
|
prometheus.BuildFQName(healMetricsNamespace, "objects", "scanned"),
|
2024-05-09 14:04:41 -04:00
|
|
|
"Objects scanned since uptime",
|
2020-03-25 01:40:45 -04:00
|
|
|
[]string{"type"}, nil),
|
2024-05-09 14:04:41 -04:00
|
|
|
prometheus.CounterValue,
|
2020-03-25 01:40:45 -04:00
|
|
|
float64(v), string(k),
|
2019-10-23 00:01:14 -04:00
|
|
|
)
|
2020-03-25 01:40:45 -04:00
|
|
|
}
|
|
|
|
for k, v := range bgSeq.getHealedItemsMap() {
|
2019-10-23 00:01:14 -04:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2020-03-25 01:40:45 -04:00
|
|
|
prometheus.BuildFQName(healMetricsNamespace, "objects", "healed"),
|
2024-05-09 14:04:41 -04:00
|
|
|
"Objects healed since uptime",
|
2020-03-25 01:40:45 -04:00
|
|
|
[]string{"type"}, nil),
|
2024-05-09 14:04:41 -04:00
|
|
|
prometheus.CounterValue,
|
2020-03-25 01:40:45 -04:00
|
|
|
float64(v), string(k),
|
2019-10-23 00:01:14 -04:00
|
|
|
)
|
2020-03-25 01:40:45 -04:00
|
|
|
}
|
2024-04-02 02:48:36 -04:00
|
|
|
for k, v := range bgSeq.getHealFailedItemsMap() {
|
2019-10-23 00:01:14 -04:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2020-03-25 01:40:45 -04:00
|
|
|
prometheus.BuildFQName(healMetricsNamespace, "objects", "heal_failed"),
|
2024-05-09 14:04:41 -04:00
|
|
|
"Objects for which healing failed since uptime",
|
|
|
|
[]string{"type"}, nil),
|
|
|
|
prometheus.CounterValue,
|
|
|
|
float64(v), string(k),
|
2019-10-23 00:01:14 -04:00
|
|
|
)
|
2018-05-30 00:43:46 -04:00
|
|
|
}
|
2020-03-25 01:40:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// collects http metrics for MinIO server in Prometheus specific format
|
|
|
|
// and sends to given channel
|
|
|
|
func httpMetricsPrometheus(ch chan<- prometheus.Metric) {
|
2024-03-04 13:05:56 -05:00
|
|
|
httpStats := globalHTTPStats.toServerHTTPStats(true)
|
2019-12-06 02:16:06 -05:00
|
|
|
|
2019-10-23 00:01:14 -04:00
|
|
|
for api, value := range httpStats.CurrentS3Requests.APIStats {
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2021-01-18 23:35:38 -05:00
|
|
|
prometheus.BuildFQName(s3Namespace, "requests", "current"),
|
2019-10-23 00:01:14 -04:00
|
|
|
"Total number of running s3 requests in current MinIO server instance",
|
|
|
|
[]string{"api"}, nil),
|
|
|
|
prometheus.CounterValue,
|
|
|
|
float64(value),
|
|
|
|
api,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
for api, value := range httpStats.TotalS3Requests.APIStats {
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2021-01-18 23:35:38 -05:00
|
|
|
prometheus.BuildFQName(s3Namespace, "requests", "total"),
|
2019-10-23 00:01:14 -04:00
|
|
|
"Total number of s3 requests in current MinIO server instance",
|
|
|
|
[]string{"api"}, nil),
|
|
|
|
prometheus.CounterValue,
|
|
|
|
float64(value),
|
|
|
|
api,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
for api, value := range httpStats.TotalS3Errors.APIStats {
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2021-01-18 23:35:38 -05:00
|
|
|
prometheus.BuildFQName(s3Namespace, "errors", "total"),
|
2019-10-23 00:01:14 -04:00
|
|
|
"Total number of s3 errors in current MinIO server instance",
|
|
|
|
[]string{"api"}, nil),
|
|
|
|
prometheus.CounterValue,
|
|
|
|
float64(value),
|
|
|
|
api,
|
|
|
|
)
|
|
|
|
}
|
2021-03-24 13:25:27 -04:00
|
|
|
|
|
|
|
for api, value := range httpStats.TotalS3Canceled.APIStats {
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(s3Namespace, "canceled", "total"),
|
|
|
|
"Total number of client canceled s3 request in current MinIO server instance",
|
|
|
|
[]string{"api"}, nil),
|
|
|
|
prometheus.CounterValue,
|
|
|
|
float64(value),
|
|
|
|
api,
|
|
|
|
)
|
|
|
|
}
|
2020-03-25 01:40:45 -04:00
|
|
|
}
|
2019-10-23 00:01:14 -04:00
|
|
|
|
2020-03-25 01:40:45 -04:00
|
|
|
// collects network metrics for MinIO server in Prometheus specific format
|
|
|
|
// and sends to given channel
|
|
|
|
func networkMetricsPrometheus(ch chan<- prometheus.Metric) {
|
|
|
|
connStats := globalConnStats.toServerConnStats()
|
|
|
|
|
|
|
|
// Network Sent/Received Bytes (internode)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2021-01-18 23:35:38 -05:00
|
|
|
prometheus.BuildFQName(interNodeNamespace, "tx", "bytes_total"),
|
2020-03-25 01:40:45 -04:00
|
|
|
"Total number of bytes sent to the other peer nodes by current MinIO server instance",
|
|
|
|
nil, nil),
|
|
|
|
prometheus.CounterValue,
|
2023-07-08 10:35:11 -04:00
|
|
|
float64(connStats.internodeOutputBytes),
|
2020-03-25 01:40:45 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2021-01-18 23:35:38 -05:00
|
|
|
prometheus.BuildFQName(interNodeNamespace, "rx", "bytes_total"),
|
2020-03-25 01:40:45 -04:00
|
|
|
"Total number of internode bytes received by current MinIO server instance",
|
|
|
|
nil, nil),
|
|
|
|
prometheus.CounterValue,
|
2023-07-08 10:35:11 -04:00
|
|
|
float64(connStats.internodeInputBytes),
|
2020-03-25 01:40:45 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// Network Sent/Received Bytes (Outbound)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2021-01-18 23:35:38 -05:00
|
|
|
prometheus.BuildFQName(s3Namespace, "tx", "bytes_total"),
|
2020-03-25 01:40:45 -04:00
|
|
|
"Total number of s3 bytes sent by current MinIO server instance",
|
|
|
|
nil, nil),
|
|
|
|
prometheus.CounterValue,
|
2023-07-08 10:35:11 -04:00
|
|
|
float64(connStats.s3OutputBytes),
|
2020-03-25 01:40:45 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2021-01-18 23:35:38 -05:00
|
|
|
prometheus.BuildFQName(s3Namespace, "rx", "bytes_total"),
|
2020-03-25 01:40:45 -04:00
|
|
|
"Total number of s3 bytes received by current MinIO server instance",
|
|
|
|
nil, nil),
|
|
|
|
prometheus.CounterValue,
|
2023-07-08 10:35:11 -04:00
|
|
|
float64(connStats.s3InputBytes),
|
2020-03-25 01:40:45 -04:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-05-27 09:45:43 -04:00
|
|
|
// Populates prometheus with bucket usage metrics, this metrics
|
2021-02-17 15:04:11 -05:00
|
|
|
// is only enabled if scanner is enabled.
|
2020-05-27 09:45:43 -04:00
|
|
|
func bucketUsageMetricsPrometheus(ch chan<- prometheus.Metric) {
|
2020-10-09 12:59:52 -04:00
|
|
|
objLayer := newObjectLayerFn()
|
2020-05-27 09:45:43 -04:00
|
|
|
// Service not initialized yet
|
|
|
|
if objLayer == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
dataUsageInfo, err := loadDataUsageFromBackend(GlobalContext, objLayer)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// data usage has not captured any data yet.
|
|
|
|
if dataUsageInfo.LastUpdate.IsZero() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for bucket, usageInfo := range dataUsageInfo.BucketsUsage {
|
2024-08-15 08:04:40 -04:00
|
|
|
stat := globalReplicationStats.Load().getLatestReplicationStats(bucket)
|
2020-05-27 09:45:43 -04:00
|
|
|
// Total space used by bucket
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2021-01-18 23:35:38 -05:00
|
|
|
prometheus.BuildFQName(bucketNamespace, "usage", "size"),
|
2020-05-27 09:45:43 -04:00
|
|
|
"Total bucket size",
|
|
|
|
[]string{"bucket"}, nil),
|
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(usageInfo.Size),
|
|
|
|
bucket,
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2021-01-18 23:35:38 -05:00
|
|
|
prometheus.BuildFQName(bucketNamespace, "objects", "count"),
|
2020-05-27 09:45:43 -04:00
|
|
|
"Total number of objects in a bucket",
|
|
|
|
[]string{"bucket"}, nil),
|
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(usageInfo.ObjectsCount),
|
|
|
|
bucket,
|
|
|
|
)
|
2020-12-07 16:47:48 -05:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName("bucket", "replication", "successful_size"),
|
|
|
|
"Total capacity replicated to destination",
|
|
|
|
[]string{"bucket"}, nil),
|
|
|
|
prometheus.GaugeValue,
|
2023-08-30 04:00:59 -04:00
|
|
|
float64(stat.ReplicationStats.ReplicatedSize),
|
2020-12-07 16:47:48 -05:00
|
|
|
bucket,
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName("bucket", "replication", "received_size"),
|
|
|
|
"Total capacity replicated to this instance",
|
|
|
|
[]string{"bucket"}, nil),
|
|
|
|
prometheus.GaugeValue,
|
2023-08-30 04:00:59 -04:00
|
|
|
float64(stat.ReplicationStats.ReplicaSize),
|
2020-12-07 16:47:48 -05:00
|
|
|
bucket,
|
|
|
|
)
|
2023-08-30 04:00:59 -04:00
|
|
|
|
2020-05-27 09:45:43 -04:00
|
|
|
for k, v := range usageInfo.ObjectSizesHistogram {
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2021-01-18 23:35:38 -05:00
|
|
|
prometheus.BuildFQName(bucketNamespace, "objects", "histogram"),
|
2020-05-27 09:45:43 -04:00
|
|
|
"Total number of objects of different sizes in a bucket",
|
|
|
|
[]string{"bucket", "object_size"}, nil),
|
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(v),
|
|
|
|
bucket,
|
|
|
|
k,
|
|
|
|
)
|
|
|
|
}
|
2023-03-10 11:53:59 -05:00
|
|
|
for k, v := range usageInfo.ObjectVersionsHistogram {
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(bucketNamespace, "objects", "histogram"),
|
|
|
|
"Total number of versions of objects in a bucket",
|
|
|
|
[]string{"bucket", "object_versions"}, nil),
|
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(v),
|
|
|
|
bucket,
|
|
|
|
k,
|
|
|
|
)
|
|
|
|
}
|
2020-05-27 09:45:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-25 01:40:45 -04:00
|
|
|
// collects storage metrics for MinIO server in Prometheus specific format
|
|
|
|
// and sends to given channel
|
|
|
|
func storageMetricsPrometheus(ch chan<- prometheus.Metric) {
|
2020-10-09 12:59:52 -04:00
|
|
|
objLayer := newObjectLayerFn()
|
2020-03-25 01:40:45 -04:00
|
|
|
// Service not initialized yet
|
|
|
|
if objLayer == nil {
|
|
|
|
return
|
2021-03-02 20:28:04 -05:00
|
|
|
}
|
|
|
|
|
2021-01-04 12:42:09 -05:00
|
|
|
server := getLocalServerProperty(globalEndpoints, &http.Request{
|
2021-03-26 14:37:58 -04:00
|
|
|
Host: globalLocalNodeName,
|
2024-02-08 22:28:46 -05:00
|
|
|
}, true)
|
2020-03-25 01:40:45 -04:00
|
|
|
|
2021-01-04 12:42:09 -05:00
|
|
|
onlineDisks, offlineDisks := getOnlineOfflineDisksStats(server.Disks)
|
2020-03-25 01:40:45 -04:00
|
|
|
totalDisks := offlineDisks.Merge(onlineDisks)
|
|
|
|
|
2021-01-18 23:35:38 -05:00
|
|
|
// Report total capacity
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(minioNamespace, "capacity_raw", "total"),
|
|
|
|
"Total capacity online in the cluster",
|
|
|
|
nil, nil),
|
|
|
|
prometheus.GaugeValue,
|
2021-02-04 15:26:58 -05:00
|
|
|
float64(GetTotalCapacity(server.Disks)),
|
2021-01-18 23:35:38 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// Report total capacity free
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(minioNamespace, "capacity_raw_free", "total"),
|
|
|
|
"Total free capacity online in the cluster",
|
|
|
|
nil, nil),
|
|
|
|
prometheus.GaugeValue,
|
2021-02-04 15:26:58 -05:00
|
|
|
float64(GetTotalCapacityFree(server.Disks)),
|
2021-01-18 23:35:38 -05:00
|
|
|
)
|
|
|
|
|
2023-12-21 19:56:43 -05:00
|
|
|
sinfo := objLayer.StorageInfo(GlobalContext, true)
|
2022-12-01 17:31:35 -05:00
|
|
|
|
2021-01-18 23:35:38 -05:00
|
|
|
// Report total usable capacity
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(minioNamespace, "capacity_usable", "total"),
|
|
|
|
"Total usable capacity online in the cluster",
|
|
|
|
nil, nil),
|
|
|
|
prometheus.GaugeValue,
|
2022-12-01 17:31:35 -05:00
|
|
|
float64(GetTotalUsableCapacity(server.Disks, sinfo)),
|
2021-01-18 23:35:38 -05:00
|
|
|
)
|
2022-12-01 17:31:35 -05:00
|
|
|
|
2021-01-18 23:35:38 -05:00
|
|
|
// Report total usable capacity free
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(minioNamespace, "capacity_usable_free", "total"),
|
|
|
|
"Total free usable capacity online in the cluster",
|
|
|
|
nil, nil),
|
|
|
|
prometheus.GaugeValue,
|
2022-12-01 17:31:35 -05:00
|
|
|
float64(GetTotalUsableCapacityFree(server.Disks, sinfo)),
|
2021-01-18 23:35:38 -05:00
|
|
|
)
|
|
|
|
|
2020-03-25 01:40:45 -04:00
|
|
|
// MinIO Offline Disks per node
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2021-01-18 23:35:38 -05:00
|
|
|
prometheus.BuildFQName(minioNamespace, "disks", "offline"),
|
2022-08-04 19:10:08 -04:00
|
|
|
"Total number of offline drives in current MinIO server instance",
|
2020-03-25 01:40:45 -04:00
|
|
|
nil, nil),
|
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(offlineDisks.Sum()),
|
|
|
|
)
|
|
|
|
|
|
|
|
// MinIO Total Disks per node
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2022-08-04 19:10:08 -04:00
|
|
|
prometheus.BuildFQName(minioNamespace, "drives", "total"),
|
|
|
|
"Total number of drives for current MinIO server instance",
|
2020-03-25 01:40:45 -04:00
|
|
|
nil, nil),
|
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(totalDisks.Sum()),
|
|
|
|
)
|
|
|
|
|
2021-01-04 12:42:09 -05:00
|
|
|
for _, disk := range server.Disks {
|
2020-03-25 01:40:45 -04:00
|
|
|
// Total disk usage by the disk
|
2019-12-06 02:16:06 -05:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2021-01-18 23:35:38 -05:00
|
|
|
prometheus.BuildFQName(diskNamespace, "storage", "used"),
|
2022-08-04 19:10:08 -04:00
|
|
|
"Total disk storage used on the drive",
|
2020-03-25 01:40:45 -04:00
|
|
|
[]string{"disk"}, nil),
|
|
|
|
prometheus.GaugeValue,
|
2020-07-13 12:51:07 -04:00
|
|
|
float64(disk.UsedSpace),
|
|
|
|
disk.DrivePath,
|
2019-12-06 02:16:06 -05:00
|
|
|
)
|
2020-03-25 01:40:45 -04:00
|
|
|
|
|
|
|
// Total available space in the disk
|
2019-12-07 00:51:52 -05:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2021-01-18 23:35:38 -05:00
|
|
|
prometheus.BuildFQName(diskNamespace, "storage", "available"),
|
2022-08-04 19:10:08 -04:00
|
|
|
"Total available space left on the drive",
|
2020-03-25 01:40:45 -04:00
|
|
|
[]string{"disk"}, nil),
|
|
|
|
prometheus.GaugeValue,
|
2020-07-13 12:51:07 -04:00
|
|
|
float64(disk.AvailableSpace),
|
|
|
|
disk.DrivePath,
|
2019-12-07 00:51:52 -05:00
|
|
|
)
|
2020-03-25 01:40:45 -04:00
|
|
|
|
|
|
|
// Total storage space of the disk
|
2019-12-07 00:51:52 -05:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2021-01-18 23:35:38 -05:00
|
|
|
prometheus.BuildFQName(diskNamespace, "storage", "total"),
|
2022-08-04 19:10:08 -04:00
|
|
|
"Total space on the drive",
|
2020-03-25 01:40:45 -04:00
|
|
|
[]string{"disk"}, nil),
|
|
|
|
prometheus.GaugeValue,
|
2020-07-13 12:51:07 -04:00
|
|
|
float64(disk.TotalSpace),
|
|
|
|
disk.DrivePath,
|
2019-12-07 00:51:52 -05:00
|
|
|
)
|
2019-12-06 02:16:06 -05:00
|
|
|
}
|
2018-04-18 19:01:42 -04:00
|
|
|
}
|
|
|
|
|
2018-05-08 23:10:55 -04:00
|
|
|
func metricsHandler() http.Handler {
|
|
|
|
registry := prometheus.NewRegistry()
|
|
|
|
|
2022-07-01 16:18:39 -04:00
|
|
|
logger.CriticalIf(GlobalContext, registry.Register(minioVersionInfo))
|
2019-06-26 13:36:54 -04:00
|
|
|
|
2022-07-01 16:18:39 -04:00
|
|
|
logger.CriticalIf(GlobalContext, registry.Register(newMinioCollector()))
|
2018-05-08 23:10:55 -04:00
|
|
|
|
|
|
|
gatherers := prometheus.Gatherers{
|
|
|
|
prometheus.DefaultGatherer,
|
|
|
|
registry,
|
|
|
|
}
|
2022-07-01 16:18:39 -04:00
|
|
|
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2022-12-06 12:27:26 -05:00
|
|
|
tc, ok := r.Context().Value(mcontext.ContextTraceKey).(*mcontext.TraceCtxt)
|
2022-07-01 16:18:39 -04:00
|
|
|
if ok {
|
2022-12-06 12:27:26 -05:00
|
|
|
tc.FuncName = "handler.MetricsLegacy"
|
|
|
|
tc.ResponseRecorder.LogErrBody = true
|
2022-07-01 16:18:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
mfs, err := gatherers.Gather()
|
|
|
|
if err != nil {
|
|
|
|
if len(mfs) == 0 {
|
|
|
|
writeErrorResponseJSON(r.Context(), w, toAdminAPIErr(r.Context(), err), r.URL)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contentType := expfmt.Negotiate(r.Header)
|
|
|
|
w.Header().Set("Content-Type", string(contentType))
|
|
|
|
|
|
|
|
enc := expfmt.NewEncoder(w, contentType)
|
|
|
|
for _, mf := range mfs {
|
|
|
|
if err := enc.Encode(mf); err != nil {
|
2022-12-15 11:25:05 -05:00
|
|
|
// client may disconnect for any reasons
|
|
|
|
// we do not have to log this.
|
2022-07-01 16:18:39 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if closer, ok := enc.(expfmt.Closer); ok {
|
|
|
|
closer.Close()
|
|
|
|
}
|
|
|
|
})
|
2019-09-22 10:57:12 -04:00
|
|
|
}
|
|
|
|
|
2023-07-19 01:25:12 -04:00
|
|
|
// NoAuthMiddleware no auth middle ware.
|
|
|
|
func NoAuthMiddleware(h http.Handler) http.Handler {
|
|
|
|
return h
|
|
|
|
}
|
|
|
|
|
2019-09-22 10:57:12 -04:00
|
|
|
// AuthMiddleware checks if the bearer token is valid and authorized.
|
|
|
|
func AuthMiddleware(h http.Handler) http.Handler {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2022-12-06 12:27:26 -05:00
|
|
|
tc, ok := r.Context().Value(mcontext.ContextTraceKey).(*mcontext.TraceCtxt)
|
2022-07-01 16:18:39 -04:00
|
|
|
|
2022-03-14 12:09:22 -04:00
|
|
|
claims, groups, owner, authErr := metricsRequestAuthenticate(r)
|
2023-09-20 18:49:55 -04:00
|
|
|
if authErr != nil || (claims != nil && !claims.VerifyIssuer("prometheus", true)) {
|
2022-07-01 16:18:39 -04:00
|
|
|
if ok {
|
2022-12-06 12:27:26 -05:00
|
|
|
tc.FuncName = "handler.MetricsAuth"
|
|
|
|
tc.ResponseRecorder.LogErrBody = true
|
2022-07-01 16:18:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
writeErrorResponseJSON(r.Context(), w, toAdminAPIErr(r.Context(), errAuthentication), r.URL)
|
2019-09-22 10:57:12 -04:00
|
|
|
return
|
|
|
|
}
|
2023-02-06 12:27:29 -05:00
|
|
|
|
|
|
|
cred := auth.Credentials{
|
|
|
|
AccessKey: claims.AccessKey,
|
|
|
|
Claims: claims.Map(),
|
|
|
|
Groups: groups,
|
|
|
|
}
|
|
|
|
|
2021-04-22 21:55:30 -04:00
|
|
|
// For authenticated users apply IAM policy.
|
2023-09-14 17:50:16 -04:00
|
|
|
if !globalIAMSys.IsAllowed(policy.Args{
|
2023-02-06 12:27:29 -05:00
|
|
|
AccountName: cred.AccessKey,
|
|
|
|
Groups: cred.Groups,
|
2023-09-14 17:50:16 -04:00
|
|
|
Action: policy.PrometheusAdminAction,
|
2023-02-06 12:27:29 -05:00
|
|
|
ConditionValues: getConditionValues(r, "", cred),
|
2021-04-22 21:55:30 -04:00
|
|
|
IsOwner: owner,
|
2023-02-06 12:27:29 -05:00
|
|
|
Claims: cred.Claims,
|
2021-04-22 21:55:30 -04:00
|
|
|
}) {
|
2022-07-01 16:18:39 -04:00
|
|
|
if ok {
|
2022-12-06 12:27:26 -05:00
|
|
|
tc.FuncName = "handler.MetricsAuth"
|
|
|
|
tc.ResponseRecorder.LogErrBody = true
|
2022-07-01 16:18:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
writeErrorResponseJSON(r.Context(), w, toAdminAPIErr(r.Context(), errAuthentication), r.URL)
|
2021-04-22 21:55:30 -04:00
|
|
|
return
|
|
|
|
}
|
2019-09-22 10:57:12 -04:00
|
|
|
h.ServeHTTP(w, r)
|
|
|
|
})
|
2018-04-18 19:01:42 -04:00
|
|
|
}
|