Joe Adams
Joe Adams
Yes with that format you should not be seeing the password. I believe that the format you reference is correct. That said, this should still be resolved in code.
We have #830 open to track improvements to the postmaster collector. The original implementation had some problems so we disabled it while it was so unstable. It is probably close...
The dashboard is something I haven't worked with much, but I did attempt to get it loaded locally. Running a local postgres V15, the master branch of the exporter, and...
Alertmanager will also [reload the configuration ](https://prometheus.io/docs/alerting/latest/configuration/) when asked. That documentation notes that it will validate the configuration and refuse to reload the configuration if it is not valid. I...
According to the config code, the global `slack_api_url` is only used when the url is not defined in the receiver. You should not need the global setting at all. It...
I think something else is going on here. I took your original config but deleted the global section and ran it against v0.28.0 with no errors. You mention kube-prometheus-stack applying...
I don't know that we have had a good example of customizing a collector that has been ported to the collector package either. I remember another request noting that the...
The only scenario that should throw a 500 on the /probe endpoint is if we fail to create the collector. In that case, the error should be in the response...
That stack overflow question is about 5 years old. That doesn't seem to be the case anymore. Alertmanager very explicitly tries to handle TLS for port 465 here: https://github.com/prometheus/alertmanager/blob/main/notify/email/email.go#L133. If...
It is the Go language standard library that is used for SMTP transport. It requires TLS or localhost when using authentication. You could potentially have a remote server that doesn't...