You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add an S3 exporter for logs/trace data as part of the OTEL-Collector pipline
Is your feature request related to a problem?
Optimize Cost/Store for Observability telemetry signals
Describe the solution you'd like:
I'd like to optimize the volume of data being stored in my DB vs in my Object Store
I'd like to have the ability to store most of the data in an Object Store and use it in conjunction with the data stored in the DB
Describe alternatives you've considered.
Which alternative solutions or features have you considered?
Additional Context
Add min-io support in opensearch Dockerfile
FROM opensearchproject/opensearch:2.8.0
ENV MINIO_ACCESS_KEY_ID minioadmin
ENV MINIO_SECRET_ACCESS_KEY minioadmin
ENV MINIO_ENDPOINT minio:9000
ENV MINIO_PROTOCOL http
RUN /usr/share/opensearch/bin/opensearch-plugin install --batch repository-s3
RUN /usr/share/opensearch/bin/opensearch-keystore create
RUN echo $MINIO_ACCESS_KEY_ID | /usr/share/opensearch/bin/opensearch-keystore add --stdin s3.client.default.access_key
RUN echo $MINIO_SECRET_ACCESS_KEY | /usr/share/opensearch/bin/opensearch-keystore add --stdin s3.client.default.secret_key
RUN echo $MINIO_ENDPOINT | /usr/share/opensearch/bin/opensearch-keystore add --stdin s3.client.default.endpoint
RUN echo $MINIO_PROTOCOL | /usr/share/opensearch/bin/opensearch-keystore add --stdin s3.client.default.protocol
Add the next min-io service to the docker-compose :
Feature Request
Add an S3 exporter for logs/trace data as part of the OTEL-Collector pipline
Is your feature request related to a problem?
Optimize Cost/Store for Observability telemetry signals
Describe the solution you'd like:
I'd like to optimize the volume of data being stored in my DB vs in my Object Store
I'd like to have the ability to store most of the data in an Object Store and use it in conjunction with the data stored in the DB
Describe alternatives you've considered.
Which alternative solutions or features have you considered?
Additional Context
Add min-io support in opensearch Dockerfile
Add the next min-io service to the
docker-compose
:```
Add any other context about the feature request here.
The text was updated successfully, but these errors were encountered: