We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Supporting logging to Minio would make testing apps that use this logger much easier.
The text was updated successfully, but these errors were encountered:
I was able to log to Minio with the following configuration!
<Log4j2Appender name="${ctx:job_log_path}-cloud" verbose="true" stagingBufferAge="1" s3Bucket="${s3-bucket}" s3Path="job-logging${ctx:job_log_path}" s3SigningRegion="${s3-region}" s3AwsKey="${s3-aws-key}" s3AwsSecret="${s3-aws-secret}" s3ServiceEndpoint="${s3-minio-endpoint}" s3PathStyleAccess="true">
The S3 client builder actually supports Minio if the right configuration is written. We should be able to update the documentation.
Sorry, something went wrong.
If I read that correctly, all it takes is setting the service endpoint and enabling path style access?
yes that is right @vly-ginger !
No branches or pull requests
Supporting logging to Minio would make testing apps that use this logger much easier.
The text was updated successfully, but these errors were encountered: