Skip to content

Commit 22a8b98

Browse files
Add missing double quotes (#2932) (#2938)
(cherry picked from commit 603a7ba) Co-authored-by: Clayton Cornell <[email protected]>
1 parent e8174dc commit 22a8b98

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/sources/collect/opentelemetry-to-lgtm-stack.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ loki.write "grafana_cloud_logs" {
149149
url = "https://logs-prod-us-central1.grafana.net/loki/api/v1/push"
150150
151151
basic_auth {
152-
username = 5252
152+
username = "5252"
153153
password = sys.env("GRAFANA_CLOUD_API_KEY")
154154
}
155155
}
@@ -181,7 +181,7 @@ otelcol.exporter.otlp "grafana_cloud_traces" {
181181
}
182182
183183
otelcol.auth.basic "grafana_cloud_traces" {
184-
username = 4094
184+
username = "4094"
185185
password = sys.env("GRAFANA_CLOUD_API_KEY")
186186
}
187187
```
@@ -217,7 +217,7 @@ prometheus.remote_write "grafana_cloud_metrics" {
217217
url = "https://prometheus-us-central1.grafana.net/api/prom/push"
218218
219219
basic_auth {
220-
username = 12690
220+
username = "12690"
221221
password = sys.env("GRAFANA_CLOUD_API_KEY")
222222
}
223223
}
@@ -262,7 +262,7 @@ otelcol.exporter.otlp "grafana_cloud_traces" {
262262
}
263263
264264
otelcol.auth.basic "grafana_cloud_traces" {
265-
username = 4094
265+
username = "4094"
266266
password = sys.env("GRAFANA_CLOUD_API_KEY")
267267
}
268268
@@ -275,7 +275,7 @@ prometheus.remote_write "grafana_cloud_metrics" {
275275
url = "https://prometheus-us-central1.grafana.net/api/prom/push"
276276
277277
basic_auth {
278-
username = 12690
278+
username = "12690"
279279
password = sys.env("GRAFANA_CLOUD_API_KEY")
280280
}
281281
}
@@ -290,7 +290,7 @@ loki.write "grafana_cloud_logs" {
290290
url = "https://logs-prod-us-central1.grafana.net/loki/api/v1/push"
291291
292292
basic_auth {
293-
username = 5252
293+
username = "5252"
294294
password = sys.env("GRAFANA_CLOUD_API_KEY")
295295
}
296296
}

0 commit comments

Comments
 (0)