| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2019-04-10 02:39:42 +08:00
										 |  |  |  * MinIO Cloud Storage, (C) 2017 MinIO, Inc. | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  |  * you may not use this file except in compliance with the License. | 
					
						
							|  |  |  |  * You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  * distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  |  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  * See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  * limitations under the License. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 	"strings" | 
					
						
							|  |  |  | 	"sync" | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-19 07:01:42 +08:00
										 |  |  | 	"github.com/prometheus/client_golang/prometheus" | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 	"go.uber.org/atomic" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ConnStats - Network statistics
 | 
					
						
							|  |  |  | // Count total input/output transferred bytes during
 | 
					
						
							|  |  |  | // the server's life.
 | 
					
						
							|  |  |  | type ConnStats struct { | 
					
						
							| 
									
										
										
										
											2019-02-15 09:53:46 +08:00
										 |  |  | 	totalInputBytes  atomic.Uint64 | 
					
						
							|  |  |  | 	totalOutputBytes atomic.Uint64 | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 	s3InputBytes     atomic.Uint64 | 
					
						
							|  |  |  | 	s3OutputBytes    atomic.Uint64 | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Increase total input bytes
 | 
					
						
							| 
									
										
										
										
											2019-02-15 09:53:46 +08:00
										 |  |  | func (s *ConnStats) incInputBytes(n int) { | 
					
						
							|  |  |  | 	s.totalInputBytes.Add(uint64(n)) | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Increase total output bytes
 | 
					
						
							| 
									
										
										
										
											2019-02-15 09:53:46 +08:00
										 |  |  | func (s *ConnStats) incOutputBytes(n int) { | 
					
						
							|  |  |  | 	s.totalOutputBytes.Add(uint64(n)) | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Return total input bytes
 | 
					
						
							|  |  |  | func (s *ConnStats) getTotalInputBytes() uint64 { | 
					
						
							|  |  |  | 	return s.totalInputBytes.Load() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Return total output bytes
 | 
					
						
							|  |  |  | func (s *ConnStats) getTotalOutputBytes() uint64 { | 
					
						
							|  |  |  | 	return s.totalOutputBytes.Load() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | // Increase outbound input bytes
 | 
					
						
							|  |  |  | func (s *ConnStats) incS3InputBytes(n int) { | 
					
						
							|  |  |  | 	s.s3InputBytes.Add(uint64(n)) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Increase outbound output bytes
 | 
					
						
							|  |  |  | func (s *ConnStats) incS3OutputBytes(n int) { | 
					
						
							|  |  |  | 	s.s3OutputBytes.Add(uint64(n)) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Return outbound input bytes
 | 
					
						
							|  |  |  | func (s *ConnStats) getS3InputBytes() uint64 { | 
					
						
							|  |  |  | 	return s.s3InputBytes.Load() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Return outbound output bytes
 | 
					
						
							|  |  |  | func (s *ConnStats) getS3OutputBytes() uint64 { | 
					
						
							|  |  |  | 	return s.s3OutputBytes.Load() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // 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{ | 
					
						
							|  |  |  | 		TotalInputBytes:  s.getTotalInputBytes(), | 
					
						
							|  |  |  | 		TotalOutputBytes: s.getTotalOutputBytes(), | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 		S3InputBytes:     s.getS3InputBytes(), | 
					
						
							|  |  |  | 		S3OutputBytes:    s.getS3OutputBytes(), | 
					
						
							| 
									
										
										
										
											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() | 
					
						
							| 
									
										
										
										
											2020-01-16 17:35:30 +08:00
										 |  |  | 	var apiStats = make(map[string]int, len(stats.apiStats)) | 
					
						
							|  |  |  | 	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 { | 
					
						
							|  |  |  | 	currentS3Requests HTTPAPIStats | 
					
						
							|  |  |  | 	totalS3Requests   HTTPAPIStats | 
					
						
							|  |  |  | 	totalS3Errors     HTTPAPIStats | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func durationStr(totalDuration, totalCount float64) string { | 
					
						
							|  |  |  | 	return fmt.Sprint(time.Duration(totalDuration/totalCount) * time.Second) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // 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{} | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 	} | 
					
						
							|  |  |  | 	return serverStats | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Update statistics from http request and response data
 | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | func (st *HTTPStats) updateStats(api string, r *http.Request, w *recordAPIStats, durationSecs float64) { | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 	// A successful request has a 2xx response code
 | 
					
						
							|  |  |  | 	successReq := (w.respStatusCode >= 200 && w.respStatusCode < 300) | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if w.isS3Request && !strings.HasSuffix(r.URL.Path, prometheusMetricsPath) { | 
					
						
							|  |  |  | 		st.totalS3Requests.Inc(api) | 
					
						
							|  |  |  | 		if !successReq && w.respStatusCode != 0 { | 
					
						
							|  |  |  | 			st.totalS3Errors.Inc(api) | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if w.isS3Request && r.Method == "GET" { | 
					
						
							|  |  |  | 		// Increment the prometheus http request response histogram with appropriate label
 | 
					
						
							|  |  |  | 		httpRequestsDuration.With(prometheus.Labels{"api": api}).Observe(durationSecs) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-04-07 14:08:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Prepare new HTTPStats structure
 | 
					
						
							|  |  |  | func newHTTPStats() *HTTPStats { | 
					
						
							|  |  |  | 	return &HTTPStats{} | 
					
						
							|  |  |  | } |