Created
December 6, 2023 07:21
-
-
Save hughesjj/c0d3fe334ccae646ce1a367b309a208b to your computer and use it in GitHub Desktop.
otel contrib golang basic build
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:bookworm | |
RUN git clone https://github.com/open-telemetry/opentelemetry-collector-contrib.git | |
WORKDIR ./opentelemetry-collector-contrib | |
RUN make install-tools | |
RUN make # as of 2023-12-05 fails first on sigv4 | |
RUN make integration-test # fails on jmx receiver | |
# How about we at least add to docs (README.md? CONTRIBUTING.md?) how to test individual recievers? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh, yes, I definitely have some expired role sessions in my
.aws/credentials
, will try clearing that out and re-running. Thanks Bryan!