Replies: 2 comments 7 replies
-
Please follow document, and system property doesn't support system env variable. |
Beta Was this translation helpful? Give feedback.
5 replies
-
If I understand correctly you are trying to pass your environment variable through system properties, but they are not automatically expanded by magic. So what you passed is a literal string |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
ERROR 2023-01-18 20:07:55:563 SkywalkingAgent-5-GRPCChannelManager-0 GRPCChannelManager : Create channel to ${SKYWALKING_SERVER} fail.
java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1
at org.apache.skywalking.apm.agent.core.remote.GRPCChannelManager.run(GRPCChannelManager.java:133)
at org.apache.skywalking.apm.util.RunnableWithExceptionProtection.run(RunnableWithExceptionProtection.java:33)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
at java.base/java.util.concurrent.FutureTask.runAndReset(Unknown Source)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(Unknown Source)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.base/java.lang.Thread.run(Unknown Source)
I have encountered the same problem as yours, but my skywalking-Dskywalking.collector.backend_ Service=${SKYWALKING_SERVER} I passed it in the form of variables. The agent is in the container. I made the basic image of the docker
Beta Was this translation helpful? Give feedback.
All reactions