Roman Loginov
8efcc957ea
All checks were successful
/ DCO (pull_request) Successful in 1m35s
/ Builds (1.19) (pull_request) Successful in 2m14s
/ Builds (1.20) (pull_request) Successful in 2m9s
/ Vulncheck (pull_request) Successful in 5m39s
/ Lint (pull_request) Successful in 2m49s
/ Tests (1.19) (pull_request) Successful in 7m34s
/ Tests (1.20) (pull_request) Successful in 1m44s
Signed-off-by: Roman Loginov <r.loginov@yadro.com>
39 lines
905 B
Go
39 lines
905 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-s3-gw/internal/logs"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// Service serves metrics.
|
|
type Service struct {
|
|
*http.Server
|
|
enabled bool
|
|
log *zap.Logger
|
|
serviceType string
|
|
}
|
|
|
|
// Start runs http service with the exposed endpoint on the configured port.
|
|
func (ms *Service) Start() {
|
|
if ms.enabled {
|
|
ms.log.Info(logs.ServiceIsRunning, zap.String("endpoint", ms.Addr))
|
|
err := ms.ListenAndServe()
|
|
if err != nil && err != http.ErrServerClosed {
|
|
ms.log.Warn(logs.ServiceCouldntStartOnConfiguredPort)
|
|
}
|
|
} else {
|
|
ms.log.Info(logs.ServiceHasntStartedSinceItsDisabled)
|
|
}
|
|
}
|
|
|
|
// ShutDown stops the service.
|
|
func (ms *Service) ShutDown(ctx context.Context) {
|
|
ms.log.Info(logs.ShuttingDownService, zap.String("endpoint", ms.Addr))
|
|
err := ms.Shutdown(ctx)
|
|
if err != nil {
|
|
ms.log.Panic(logs.CantShutDownService)
|
|
}
|
|
}
|