Closed
Description
Discussed in #32766
Originally posted by dabcoder April 30, 2024
The S3 exporter documentation states that the endpoint
parameter overrides the endpoint used by the exporter instead of constructing it from region
and s3_bucket
.
Yet in the code there is:
if c.S3Uploader.S3Bucket == "" {
errs = multierr.Append(errs, errors.New("bucket is required"))
}
However, when the endpoint
is provided, it should also contain the S3 bucket, thus I would not expect the s3_bucket
to have to be provided and this error to be returned. Am I misunderstanding the config setup here?