mirror of
https://github.com/minio/minio.git
synced 2025-04-04 20:00:31 -04:00
gateway/s3: allow tracing requests to backend service (#13189)
fixes #13089 fixes #13133 Co-authored-by: Anis Elleuch <anis@min.io> Co-authored-by: Harshavardhana <harsha@minio.io>
This commit is contained in:
parent
03a2a74697
commit
c2f25b6f62
@ -280,7 +280,6 @@ func StartGateway(ctx *cli.Context, gw Gateway) {
|
|||||||
SecretKey: globalActiveCred.SecretKey,
|
SecretKey: globalActiveCred.SecretKey,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
globalHTTPServer.Shutdown()
|
|
||||||
logger.FatalIf(err, "Unable to initialize gateway backend")
|
logger.FatalIf(err, "Unable to initialize gateway backend")
|
||||||
}
|
}
|
||||||
newObject = NewGatewayLayerWithLocker(newObject)
|
newObject = NewGatewayLayerWithLocker(newObject)
|
||||||
|
@ -23,6 +23,7 @@ import (
|
|||||||
"math/rand"
|
"math/rand"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -34,9 +35,11 @@ import (
|
|||||||
"github.com/minio/minio-go/v7/pkg/s3utils"
|
"github.com/minio/minio-go/v7/pkg/s3utils"
|
||||||
"github.com/minio/minio-go/v7/pkg/tags"
|
"github.com/minio/minio-go/v7/pkg/tags"
|
||||||
minio "github.com/minio/minio/cmd"
|
minio "github.com/minio/minio/cmd"
|
||||||
|
"github.com/minio/minio/internal/config"
|
||||||
xhttp "github.com/minio/minio/internal/http"
|
xhttp "github.com/minio/minio/internal/http"
|
||||||
"github.com/minio/minio/internal/logger"
|
"github.com/minio/minio/internal/logger"
|
||||||
"github.com/minio/pkg/bucket/policy"
|
"github.com/minio/pkg/bucket/policy"
|
||||||
|
"github.com/minio/pkg/env"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
@ -94,12 +97,16 @@ func s3GatewayMain(ctx *cli.Context) {
|
|||||||
logger.FatalIf(minio.ValidateGatewayArguments(serverAddr, args.First()), "Invalid argument")
|
logger.FatalIf(minio.ValidateGatewayArguments(serverAddr, args.First()), "Invalid argument")
|
||||||
|
|
||||||
// Start the gateway..
|
// Start the gateway..
|
||||||
minio.StartGateway(ctx, &S3{args.First()})
|
minio.StartGateway(ctx, &S3{
|
||||||
|
host: args.First(),
|
||||||
|
debug: env.Get("_MINIO_SERVER_DEBUG", config.EnableOff) == config.EnableOn,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// S3 implements Gateway.
|
// S3 implements Gateway.
|
||||||
type S3 struct {
|
type S3 struct {
|
||||||
host string
|
host string
|
||||||
|
debug bool
|
||||||
}
|
}
|
||||||
|
|
||||||
// Name implements Gateway interface.
|
// Name implements Gateway interface.
|
||||||
@ -219,6 +226,10 @@ func (g *S3) NewGatewayLayer(creds madmin.Credentials) (minio.ObjectLayer, error
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if g.debug {
|
||||||
|
clnt.Client.TraceOn(os.Stderr)
|
||||||
|
}
|
||||||
|
|
||||||
probeBucketName := randString(60, rand.NewSource(time.Now().UnixNano()), "probe-bucket-sign-")
|
probeBucketName := randString(60, rand.NewSource(time.Now().UnixNano()), "probe-bucket-sign-")
|
||||||
|
|
||||||
// Check if the provided keys are valid.
|
// Check if the provided keys are valid.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user