Skip to content

Commit 4651789

Browse files
committed
Fix promtail env expansion
1 parent 280781d commit 4651789

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

shutter/promtail_config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ positions:
88
client:
99
url: https://logs.metrics.shutter.network/insert/loki/api/v1/push
1010
basic_auth:
11-
username: $(PUSHGATEWAY_USERNAME)
12-
password: $(PUSHGATEWAY_PASSWORD)
11+
username: ${PUSHGATEWAY_USERNAME}
12+
password: ${PUSHGATEWAY_PASSWORD}
1313

1414
scrape_configs:
1515
- job_name: configure
@@ -20,7 +20,7 @@ scrape_configs:
2020
- localhost
2121
labels:
2222
job: configure
23-
host: $(HOSTNAME)
23+
host: ${HOSTNAME}
2424
__path__: /tmp/configure.log
2525

2626
- job_name: keyper
@@ -31,7 +31,7 @@ scrape_configs:
3131
- localhost
3232
labels:
3333
job: keyper
34-
host: $(HOSTNAME)
34+
host: ${HOSTNAME}
3535
__path__: /tmp/keyper.log
3636

3737
- job_name: chain
@@ -42,5 +42,5 @@ scrape_configs:
4242
- localhost
4343
labels:
4444
job: chain
45-
host: $(HOSTNAME)
45+
host: ${HOSTNAME}
4646
__path__: /tmp/chain.log

0 commit comments

Comments
 (0)