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
able to deploy the container but we see the below error message in the NR logs, tried install few packages to the image but no luck
Steps to Reproduce
Here is the contents of the docker file i used
FROM newrelic/infrastructure:latest
ADD newrelic-infra.yml /etc/newrelic-infra.yml
#add zscaler cert for installing packages/libraries/binaries in the image
ADD ZscalerRootCertificate-2048-SHA256.crt /usr/local/share/ca-certificates/ZscalerRootCertificate-2048-SHA256.crt
RUN cat /usr/local/share/ca-certificates/ZscalerRootCertificate-2048-SHA256.crt >> /etc/ssl/certs/ZscalerRootCertificate-2048-SHA256.crt
RUN apk update
RUN apk upgrade
RUN apk add git
RUN apk upgrade musl
RUN apk add libstdc++
RUN apk add libgcc
#executable needed for the integration, downloaded from github repo
ADD snowflakeintegration-linux /newrelic-snowflake-integration/snowflakeintegration-linux
grant execute access on the file
RUN chmod +x /newrelic-snowflake-integration/snowflakeintegration-linux
#delete the github config file
RUN rm -rf /newrelic-snowflake-integration/config.yaml
#copy the modified wfs credentials config file
ADD config.yaml /newrelic-snowflake-integration/config.yaml
#flex file which calls queries and posts data to new relic
ADD flex-snowflake-linux.yml /etc/newrelic-infra/integrations.d/flex-snowflake-linux.yml
expected the container to send numbers and metric to NR
Relevant Logs / Console output
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: gnu_get_libc_version: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: backtrace_symbols: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: __register_atfork: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: __strdup: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: setcontext: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: makecontext: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: backtrace: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: getcontext: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: __libc_stack_end: symbol not found
Your Environment
ex: Browser name and version:
ex: Operating System and version:
Additional context
The text was updated successfully, but these errors were encountered:
Description
able to deploy the container but we see the below error message in the NR logs, tried install few packages to the image but no luck
Steps to Reproduce
Here is the contents of the docker file i used
FROM newrelic/infrastructure:latest
ADD newrelic-infra.yml /etc/newrelic-infra.yml
#add zscaler cert for installing packages/libraries/binaries in the image
ADD ZscalerRootCertificate-2048-SHA256.crt /usr/local/share/ca-certificates/ZscalerRootCertificate-2048-SHA256.crt
RUN cat /usr/local/share/ca-certificates/ZscalerRootCertificate-2048-SHA256.crt >> /etc/ssl/certs/ZscalerRootCertificate-2048-SHA256.crt
RUN apk update
RUN apk upgrade
RUN apk add git
RUN apk upgrade musl
RUN apk add libstdc++
RUN apk add libgcc
#Clone the git repo from github
RUN git clone https://github.com/newrelic/newrelic-snowflake-integration.git
#executable needed for the integration, downloaded from github repo
ADD snowflakeintegration-linux /newrelic-snowflake-integration/snowflakeintegration-linux
grant execute access on the file
RUN chmod +x /newrelic-snowflake-integration/snowflakeintegration-linux
#delete the github config file
RUN rm -rf /newrelic-snowflake-integration/config.yaml
#copy the modified wfs credentials config file
ADD config.yaml /newrelic-snowflake-integration/config.yaml
#flex file which calls queries and posts data to new relic
ADD flex-snowflake-linux.yml /etc/newrelic-infra/integrations.d/flex-snowflake-linux.yml
#define env variables
ENV NEWRELIC_SNOWFLAKE_HOME=/newrelic-snowflake-integration
ENV LD_LIBRARY_PATH=/lib64
ENV NEWRELIC_SNOWFLAKE_CONFIG_PATH=/newrelic-snowflake-integration/config.yaml
Expected Behavior
expected the container to send numbers and metric to NR
Relevant Logs / Console output
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: gnu_get_libc_version: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: backtrace_symbols: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: __register_atfork: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: __strdup: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: setcontext: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: makecontext: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: backtrace: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: getcontext: symbol not found
Error relocating /newrelic-snowflake-integration/snowflakeintegration-linux: __libc_stack_end: symbol not found
Your Environment
Additional context
The text was updated successfully, but these errors were encountered: