| 
									
										
										
										
											2021-04-19 03:41:13 +08: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/>.
 | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 	"strings" | 
					
						
							|  |  |  | 	"sync" | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	"sync/atomic" | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 05:59:40 +08:00
										 |  |  | 	"github.com/minio/minio/internal/logger" | 
					
						
							| 
									
										
										
										
											2018-04-19 07:01:42 +08:00
										 |  |  | 	"github.com/prometheus/client_golang/prometheus" | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ConnStats - Network statistics
 | 
					
						
							|  |  |  | // Count total input/output transferred bytes during
 | 
					
						
							|  |  |  | // the server's life.
 | 
					
						
							|  |  |  | type ConnStats struct { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	totalInputBytes  uint64 | 
					
						
							|  |  |  | 	totalOutputBytes uint64 | 
					
						
							|  |  |  | 	s3InputBytes     uint64 | 
					
						
							|  |  |  | 	s3OutputBytes    uint64 | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Increase total input bytes
 | 
					
						
							| 
									
										
										
										
											2021-08-13 22:30:03 +08:00
										 |  |  | func (s *ConnStats) incInputBytes(n int64) { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	atomic.AddUint64(&s.totalInputBytes, uint64(n)) | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Increase total output bytes
 | 
					
						
							| 
									
										
										
										
											2021-08-13 22:30:03 +08:00
										 |  |  | func (s *ConnStats) incOutputBytes(n int64) { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	atomic.AddUint64(&s.totalOutputBytes, uint64(n)) | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Return total input bytes
 | 
					
						
							|  |  |  | func (s *ConnStats) getTotalInputBytes() uint64 { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	return atomic.LoadUint64(&s.totalInputBytes) | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Return total output bytes
 | 
					
						
							|  |  |  | func (s *ConnStats) getTotalOutputBytes() uint64 { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	return atomic.LoadUint64(&s.totalOutputBytes) | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | // Increase outbound input bytes
 | 
					
						
							| 
									
										
										
										
											2021-08-13 22:30:03 +08:00
										 |  |  | func (s *ConnStats) incS3InputBytes(n int64) { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	atomic.AddUint64(&s.s3InputBytes, uint64(n)) | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Increase outbound output bytes
 | 
					
						
							| 
									
										
										
										
											2021-08-13 22:30:03 +08:00
										 |  |  | func (s *ConnStats) incS3OutputBytes(n int64) { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	atomic.AddUint64(&s.s3OutputBytes, uint64(n)) | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Return outbound input bytes
 | 
					
						
							|  |  |  | func (s *ConnStats) getS3InputBytes() uint64 { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	return atomic.LoadUint64(&s.s3InputBytes) | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Return outbound output bytes
 | 
					
						
							|  |  |  | func (s *ConnStats) getS3OutputBytes() uint64 { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	return atomic.LoadUint64(&s.s3OutputBytes) | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Return connection stats (total input/output bytes and total s3 input/output bytes)
 | 
					
						
							| 
									
										
										
										
											2017-04-21 22:15:53 +08:00
										 |  |  | func (s *ConnStats) toServerConnStats() ServerConnStats { | 
					
						
							|  |  |  | 	return ServerConnStats{ | 
					
						
							| 
									
										
										
										
											2021-01-19 12:35:38 +08:00
										 |  |  | 		TotalInputBytes:  s.getTotalInputBytes(),  // Traffic including reserved bucket
 | 
					
						
							|  |  |  | 		TotalOutputBytes: s.getTotalOutputBytes(), // Traffic including reserved bucket
 | 
					
						
							|  |  |  | 		S3InputBytes:     s.getS3InputBytes(),     // Traffic for client buckets
 | 
					
						
							|  |  |  | 		S3OutputBytes:    s.getS3OutputBytes(),    // Traffic for client buckets
 | 
					
						
							| 
									
										
										
										
											2017-04-21 22:15:53 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | // Prepare new ConnStats structure
 | 
					
						
							|  |  |  | func newConnStats() *ConnStats { | 
					
						
							|  |  |  | 	return &ConnStats{} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | // HTTPAPIStats holds statistics information about
 | 
					
						
							|  |  |  | // a given API in the requests.
 | 
					
						
							|  |  |  | type HTTPAPIStats struct { | 
					
						
							| 
									
										
										
										
											2020-01-16 17:35:30 +08:00
										 |  |  | 	apiStats map[string]int | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 	sync.RWMutex | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | // Inc increments the api stats counter.
 | 
					
						
							|  |  |  | func (stats *HTTPAPIStats) Inc(api string) { | 
					
						
							|  |  |  | 	if stats == nil { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-03-19 07:19:29 +08:00
										 |  |  | 	stats.Lock() | 
					
						
							|  |  |  | 	defer stats.Unlock() | 
					
						
							| 
									
										
										
										
											2020-01-16 17:35:30 +08:00
										 |  |  | 	if stats.apiStats == nil { | 
					
						
							|  |  |  | 		stats.apiStats = make(map[string]int) | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-03-19 07:19:29 +08:00
										 |  |  | 	stats.apiStats[api]++ | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | // Dec increments the api stats counter.
 | 
					
						
							|  |  |  | func (stats *HTTPAPIStats) Dec(api string) { | 
					
						
							|  |  |  | 	if stats == nil { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-03-19 07:19:29 +08:00
										 |  |  | 	stats.Lock() | 
					
						
							|  |  |  | 	defer stats.Unlock() | 
					
						
							| 
									
										
										
										
											2020-01-16 17:35:30 +08:00
										 |  |  | 	if val, ok := stats.apiStats[api]; ok && val > 0 { | 
					
						
							|  |  |  | 		stats.apiStats[api]-- | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | // Load returns the recorded stats.
 | 
					
						
							|  |  |  | func (stats *HTTPAPIStats) Load() map[string]int { | 
					
						
							|  |  |  | 	stats.Lock() | 
					
						
							|  |  |  | 	defer stats.Unlock() | 
					
						
							| 
									
										
										
										
											2022-01-03 01:15:06 +08:00
										 |  |  | 	apiStats := make(map[string]int, len(stats.apiStats)) | 
					
						
							| 
									
										
										
										
											2020-01-16 17:35:30 +08:00
										 |  |  | 	for k, v := range stats.apiStats { | 
					
						
							|  |  |  | 		apiStats[k] = v | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return apiStats | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | // HTTPStats holds statistics information about
 | 
					
						
							|  |  |  | // HTTP requests made by all clients
 | 
					
						
							|  |  |  | type HTTPStats struct { | 
					
						
							| 
									
										
										
										
											2021-06-23 22:15:43 +08:00
										 |  |  | 	rejectedRequestsAuth    uint64 | 
					
						
							|  |  |  | 	rejectedRequestsTime    uint64 | 
					
						
							|  |  |  | 	rejectedRequestsHeader  uint64 | 
					
						
							|  |  |  | 	rejectedRequestsInvalid uint64 | 
					
						
							| 
									
										
										
										
											2021-03-31 14:19:36 +08:00
										 |  |  | 	s3RequestsInQueue       int32 | 
					
						
							|  |  |  | 	currentS3Requests       HTTPAPIStats | 
					
						
							|  |  |  | 	totalS3Requests         HTTPAPIStats | 
					
						
							|  |  |  | 	totalS3Errors           HTTPAPIStats | 
					
						
							|  |  |  | 	totalS3Canceled         HTTPAPIStats | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-20 16:21:55 +08:00
										 |  |  | func (st *HTTPStats) addRequestsInQueue(i int32) { | 
					
						
							|  |  |  | 	atomic.AddInt32(&st.s3RequestsInQueue, i) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | // Converts http stats into struct to be sent back to the client.
 | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | func (st *HTTPStats) toServerHTTPStats() ServerHTTPStats { | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 	serverStats := ServerHTTPStats{} | 
					
						
							| 
									
										
										
										
											2021-02-20 16:21:55 +08:00
										 |  |  | 	serverStats.S3RequestsInQueue = atomic.LoadInt32(&st.s3RequestsInQueue) | 
					
						
							| 
									
										
										
										
											2021-03-31 14:19:36 +08:00
										 |  |  | 	serverStats.TotalS3RejectedAuth = atomic.LoadUint64(&st.rejectedRequestsAuth) | 
					
						
							|  |  |  | 	serverStats.TotalS3RejectedTime = atomic.LoadUint64(&st.rejectedRequestsTime) | 
					
						
							|  |  |  | 	serverStats.TotalS3RejectedHeader = atomic.LoadUint64(&st.rejectedRequestsHeader) | 
					
						
							|  |  |  | 	serverStats.TotalS3RejectedInvalid = atomic.LoadUint64(&st.rejectedRequestsInvalid) | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 	serverStats.CurrentS3Requests = ServerHTTPAPIStats{ | 
					
						
							|  |  |  | 		APIStats: st.currentS3Requests.Load(), | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 	serverStats.TotalS3Requests = ServerHTTPAPIStats{ | 
					
						
							|  |  |  | 		APIStats: st.totalS3Requests.Load(), | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 	serverStats.TotalS3Errors = ServerHTTPAPIStats{ | 
					
						
							|  |  |  | 		APIStats: st.totalS3Errors.Load(), | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-03-25 01:25:27 +08:00
										 |  |  | 	serverStats.TotalS3Canceled = ServerHTTPAPIStats{ | 
					
						
							|  |  |  | 		APIStats: st.totalS3Canceled.Load(), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 	return serverStats | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Update statistics from http request and response data
 | 
					
						
							| 
									
										
										
										
											2020-12-11 15:02:25 +08:00
										 |  |  | func (st *HTTPStats) updateStats(api string, r *http.Request, w *logger.ResponseWriter) { | 
					
						
							| 
									
										
										
										
											2021-11-03 05:12:39 +08:00
										 |  |  | 	// A successful request has a 2xx response code or < 4xx response
 | 
					
						
							|  |  |  | 	successReq := w.StatusCode >= 200 && w.StatusCode < 400 | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-19 12:35:38 +08:00
										 |  |  | 	if !strings.HasSuffix(r.URL.Path, prometheusMetricsPathLegacy) || | 
					
						
							|  |  |  | 		!strings.HasSuffix(r.URL.Path, prometheusMetricsV2ClusterPath) || | 
					
						
							|  |  |  | 		!strings.HasSuffix(r.URL.Path, prometheusMetricsV2NodePath) { | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 		st.totalS3Requests.Inc(api) | 
					
						
							| 
									
										
										
										
											2021-03-25 05:19:52 +08:00
										 |  |  | 		if !successReq { | 
					
						
							|  |  |  | 			switch w.StatusCode { | 
					
						
							|  |  |  | 			case 0: | 
					
						
							|  |  |  | 			case 499: | 
					
						
							| 
									
										
										
										
											2021-11-03 05:12:39 +08:00
										 |  |  | 				// 499 is a good error, shall be counted as canceled.
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:25:27 +08:00
										 |  |  | 				st.totalS3Canceled.Inc(api) | 
					
						
							| 
									
										
										
										
											2021-03-25 05:19:52 +08:00
										 |  |  | 			default: | 
					
						
							|  |  |  | 				st.totalS3Errors.Inc(api) | 
					
						
							| 
									
										
										
										
											2021-03-25 01:25:27 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-11 15:02:25 +08:00
										 |  |  | 	// Increment the prometheus http request response histogram with appropriate label
 | 
					
						
							|  |  |  | 	httpRequestsDuration.With(prometheus.Labels{"api": api}).Observe(w.TimeToFirstByte.Seconds()) | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Prepare new HTTPStats structure
 | 
					
						
							|  |  |  | func newHTTPStats() *HTTPStats { | 
					
						
							|  |  |  | 	return &HTTPStats{} | 
					
						
							|  |  |  | } |