// 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 . package madmin import ( "context" "encoding/json" "net/http" "net/url" "strconv" "time" trace "github.com/minio/minio/pkg/trace" ) // ServiceRestart - restarts the MinIO cluster func (adm *AdminClient) ServiceRestart(ctx context.Context) error { return adm.serviceCallAction(ctx, ServiceActionRestart) } // ServiceStop - stops the MinIO cluster func (adm *AdminClient) ServiceStop(ctx context.Context) error { return adm.serviceCallAction(ctx, ServiceActionStop) } // ServiceAction - type to restrict service-action values type ServiceAction string const ( // ServiceActionRestart represents restart action ServiceActionRestart ServiceAction = "restart" // ServiceActionStop represents stop action ServiceActionStop = "stop" ) // serviceCallAction - call service restart/update/stop API. func (adm *AdminClient) serviceCallAction(ctx context.Context, action ServiceAction) error { queryValues := url.Values{} queryValues.Set("action", string(action)) // Request API to Restart server resp, err := adm.executeMethod(ctx, http.MethodPost, requestData{ relPath: adminAPIPrefix + "/service", queryValues: queryValues, }, ) defer closeResponse(resp) if err != nil { return err } if resp.StatusCode != http.StatusOK { return httpRespToErrorResponse(resp) } return nil } // ServiceTraceInfo holds http trace type ServiceTraceInfo struct { Trace trace.Info Err error `json:"-"` } // ServiceTraceOpts holds tracing options type ServiceTraceOpts struct { All bool // Deprecated S3 bool Internal bool Storage bool OS bool OnlyErrors bool Threshold time.Duration } // ServiceTrace - listen on http trace notifications. func (adm AdminClient) ServiceTrace(ctx context.Context, opts ServiceTraceOpts) <-chan ServiceTraceInfo { traceInfoCh := make(chan ServiceTraceInfo) // Only success, start a routine to start reading line by line. go func(traceInfoCh chan<- ServiceTraceInfo) { defer close(traceInfoCh) for { urlValues := make(url.Values) urlValues.Set("err", strconv.FormatBool(opts.OnlyErrors)) urlValues.Set("threshold", opts.Threshold.String()) if opts.All { // Deprecated flag urlValues.Set("all", "true") } else { urlValues.Set("s3", strconv.FormatBool(opts.S3)) urlValues.Set("internal", strconv.FormatBool(opts.Internal)) urlValues.Set("storage", strconv.FormatBool(opts.Storage)) urlValues.Set("os", strconv.FormatBool(opts.OS)) } reqData := requestData{ relPath: adminAPIPrefix + "/trace", queryValues: urlValues, } // Execute GET to call trace handler resp, err := adm.executeMethod(ctx, http.MethodGet, reqData) if err != nil { closeResponse(resp) traceInfoCh <- ServiceTraceInfo{Err: err} return } if resp.StatusCode != http.StatusOK { traceInfoCh <- ServiceTraceInfo{Err: httpRespToErrorResponse(resp)} return } dec := json.NewDecoder(resp.Body) for { var info trace.Info if err = dec.Decode(&info); err != nil { break } select { case <-ctx.Done(): return case traceInfoCh <- ServiceTraceInfo{Trace: info}: } } } }(traceInfoCh) // Returns the trace info channel, for caller to start reading from. return traceInfoCh }