Skip to content

Commit 587fa40

Browse files
committed
Fix variable expansion
1 parent db820ba commit 587fa40

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

shutter/promtail_config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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: keyper
45-
host: ${HOSTNAME}
45+
host: $(HOSTNAME)
4646
__path__: /tmp/chain.log

0 commit comments

Comments
 (0)