| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * MinIO Cloud Storage, (C) 2019 MinIO, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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 ( | 
					
						
							| 
									
										
										
										
											2019-12-07 13:51:52 +08:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	"sync/atomic" | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-07 13:51:52 +08:00
										 |  |  | // RequestStats - counts for Get and Head requests
 | 
					
						
							|  |  |  | type RequestStats struct { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	Get  uint64 `json:"Get"` | 
					
						
							|  |  |  | 	Head uint64 `json:"Head"` | 
					
						
							|  |  |  | 	Put  uint64 `json:"Put"` | 
					
						
							|  |  |  | 	Post uint64 `json:"Post"` | 
					
						
							| 
									
										
										
										
											2019-12-07 13:51:52 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | // IncBytesReceived - Increase total bytes received from gateway backend
 | 
					
						
							| 
									
										
										
										
											2021-01-19 12:35:38 +08:00
										 |  |  | func (s *BackendMetrics) IncBytesReceived(n uint64) { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	atomic.AddUint64(&s.bytesReceived, n) | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // GetBytesReceived - Get total bytes received from gateway backend
 | 
					
						
							| 
									
										
										
										
											2021-01-19 12:35:38 +08:00
										 |  |  | func (s *BackendMetrics) GetBytesReceived() uint64 { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	return atomic.LoadUint64(&s.bytesReceived) | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // IncBytesSent - Increase total bytes sent to gateway backend
 | 
					
						
							| 
									
										
										
										
											2021-01-19 12:35:38 +08:00
										 |  |  | func (s *BackendMetrics) IncBytesSent(n uint64) { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	atomic.AddUint64(&s.bytesSent, n) | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // GetBytesSent - Get total bytes received from gateway backend
 | 
					
						
							| 
									
										
										
										
											2021-01-19 12:35:38 +08:00
										 |  |  | func (s *BackendMetrics) GetBytesSent() uint64 { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 	return atomic.LoadUint64(&s.bytesSent) | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-07 13:51:52 +08:00
										 |  |  | // IncRequests - Increase request count sent to gateway backend by 1
 | 
					
						
							| 
									
										
										
										
											2021-01-19 12:35:38 +08:00
										 |  |  | func (s *BackendMetrics) IncRequests(method string) { | 
					
						
							| 
									
										
										
										
											2019-12-07 13:51:52 +08:00
										 |  |  | 	// Only increment for Head & Get requests, else no op
 | 
					
						
							|  |  |  | 	if method == http.MethodGet { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 		atomic.AddUint64(&s.requestStats.Get, 1) | 
					
						
							| 
									
										
										
										
											2019-12-07 13:51:52 +08:00
										 |  |  | 	} else if method == http.MethodHead { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 		atomic.AddUint64(&s.requestStats.Head, 1) | 
					
						
							| 
									
										
										
										
											2020-04-02 03:52:31 +08:00
										 |  |  | 	} else if method == http.MethodPut { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 		atomic.AddUint64(&s.requestStats.Put, 1) | 
					
						
							| 
									
										
										
										
											2020-04-02 03:52:31 +08:00
										 |  |  | 	} else if method == http.MethodPost { | 
					
						
							| 
									
										
										
										
											2020-05-04 13:35:40 +08:00
										 |  |  | 		atomic.AddUint64(&s.requestStats.Post, 1) | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-07 13:51:52 +08:00
										 |  |  | // GetRequests - Get total number of Get & Headrequests sent to gateway backend
 | 
					
						
							| 
									
										
										
										
											2021-01-19 12:35:38 +08:00
										 |  |  | func (s *BackendMetrics) GetRequests() RequestStats { | 
					
						
							| 
									
										
										
										
											2019-12-07 13:51:52 +08:00
										 |  |  | 	return s.requestStats | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-19 12:35:38 +08:00
										 |  |  | // NewMetrics - Prepare new BackendMetrics structure
 | 
					
						
							|  |  |  | func NewMetrics() *BackendMetrics { | 
					
						
							|  |  |  | 	return &BackendMetrics{} | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | } |