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