Hi folks,
Run into an interesting issue with Prometheus v1.4.1. I have it deployed with docker, supervised by a systemd unit. The configurations and such are mounted into the container using a bind volume mount(s). I've tried the recommended ways of reloading the configuration, but im not sure if what i'm seeing is expected or not: specifically, i see stuff like this in the log:
```
Dec 16 19:17:41 prometheus01 docker[11475]: {"level":"info","msg":"Loading configuration file /etc/prometheus/prometheus.yml","source":"main
```
But when i visit http://$myhost:9090/config the old values still display, and I don't get any change in behaviour, indicating that in-fact, the reload of config did not actually take place. I've tried using:
```
curl -s -XPOST localhost:9090/-/reload
```
Which as mentioned, triggers that log-line. I've also tried:
```
docker exec -it prometheus sh -c 'killall -HUP prometheus'
```
Both result in the aforementioned log-line, but neither seems to effectively reload the configuration. Am I doing something wrong?
Thanks in advance - prometheus has been working really well for us thus far.
-- T