We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9c1ad3 commit d81cff9Copy full SHA for d81cff9
3 files changed
.dockerignore
@@ -314,3 +314,5 @@ cython_debug/
314
.git
315
.github
316
.gitignore
317
+
318
+*.env
.gitignore
@@ -283,3 +283,4 @@ dmypy.json
283
# Cython debug symbols
284
cython_debug/
285
286
+credentials.env
docker-compose.yaml
@@ -42,6 +42,12 @@ services:
42
43
otel-collector:
44
image: grafana/alloy:latest
45
+ # You can add the Grafana Cloud credentials in this file
46
+ # and push observability directly to the provider.
47
+ # Refer to the config.alloy file to see what credentials we need.
48
+ env_file:
49
+ - path: ./credentials.env
50
+ required: false
51
depends_on:
52
- jaeger
53
ports:
@@ -154,4 +160,3 @@ services:
154
160
command:
155
161
- "make"
156
162
- "test"
157
-
0 commit comments